mirror of
https://codeberg.org/dwl/dwl-patches.git
synced 2025-09-09 12:45:00 +00:00
129 lines
4.5 KiB
Diff
129 lines
4.5 KiB
Diff
From 1589ba9e16216e13dcc77e08b638f86ba41d47eb Mon Sep 17 00:00:00 2001
|
|
From: sewn <sewn@disroot.org>
|
|
Date: Mon, 10 Jun 2024 14:59:12 +0300
|
|
Subject: [PATCH] add border to bar
|
|
|
|
---
|
|
config.def.h | 3 ++-
|
|
dwl.c | 27 ++++++++++++++++-----------
|
|
2 files changed, 18 insertions(+), 12 deletions(-)
|
|
|
|
diff --git a/config.def.h b/config.def.h
|
|
index d0bb5bc..9387dea 100644
|
|
--- a/config.def.h
|
|
+++ b/config.def.h
|
|
@@ -6,7 +6,7 @@
|
|
/* appearance */
|
|
static const int sloppyfocus = 1; /* focus follows mouse */
|
|
static const int bypass_surface_visibility = 0; /* 1 means idle inhibitors will disable idle tracking even if it's surface isn't visible */
|
|
-static const unsigned int borderpx = 1; /* border pixel of windows */
|
|
+static const unsigned int borderpx = 1; /* border pixel of windows & bar */
|
|
static const float rootcolor[] = COLOR(0x000000ff);
|
|
static const float bordercolor[] = COLOR(0x444444ff);
|
|
static const float focuscolor[] = COLOR(0x005577ff);
|
|
@@ -18,6 +18,7 @@ static const float fullscreen_bg[] = {0.1f, 0.1f, 0.1f, 1.0f}; /* You ca
|
|
static const int showbar = 1; /* 0 means no bar */
|
|
static const int topbar = 1; /* 0 means bottom bar */
|
|
static const char *fonts[] = {"monospace:size=10"};
|
|
+static pixman_color_t borderbar = { 0x5555, 0x7777, 0x0000, 0xffff };
|
|
static pixman_color_t normbarfg = { 0xbbbb, 0xbbbb, 0xbbbb, 0xffff };
|
|
static pixman_color_t normbarbg = { 0x2222, 0x2222, 0x2222, 0xffff };
|
|
static pixman_color_t selbarfg = { 0xeeee, 0xeeee, 0xeeee, 0xffff };
|
|
diff --git a/dwl.c b/dwl.c
|
|
index cd484bd..679409f 100644
|
|
--- a/dwl.c
|
|
+++ b/dwl.c
|
|
@@ -1349,7 +1349,8 @@ dirtomon(enum wlr_direction dir)
|
|
void
|
|
drawbar(Monitor *m)
|
|
{
|
|
- int x, w, tw = 0;
|
|
+ int x, y = borderpx, w, tw = 0;
|
|
+ int mh, mw;
|
|
int sel;
|
|
int boxs = m->font->height / 9;
|
|
int boxw = m->font->height / 6 + 2;
|
|
@@ -1362,6 +1363,8 @@ drawbar(Monitor *m)
|
|
if (!m->showbar)
|
|
return;
|
|
|
|
+ mh = m->b.height - borderpx * 2;
|
|
+ mw = m->b.width - borderpx * 2;
|
|
stride = m->b.width * 4;
|
|
size = stride * m->b.height;
|
|
|
|
@@ -1372,12 +1375,14 @@ drawbar(Monitor *m)
|
|
pix = pixman_image_create_bits(
|
|
PIXMAN_a8r8g8b8, m->b.width, m->b.height, buf->data, stride);
|
|
|
|
+ drwl_rect(pix, 0, 0, m->b.width, m->b.height, 1, &borderbar);
|
|
+
|
|
/* draw status first so it can be overdrawn by tags later */
|
|
if (m == selmon) {
|
|
if (stext[0] == '\0')
|
|
strncpy(stext, "dwl-"VERSION, sizeof(stext));
|
|
tw = TEXTW(m, stext) - m->lrpad;
|
|
- drwl_text(pix, m->font, m->b.width - tw, 0, tw, m->b.height, 0,
|
|
+ drwl_text(pix, m->font, borderpx + mw - tw, y, tw, mh, 0,
|
|
stext, &normbarfg, &normbarbg);
|
|
}
|
|
|
|
@@ -1388,37 +1393,37 @@ drawbar(Monitor *m)
|
|
if (c->isurgent)
|
|
urg |= c->tags;
|
|
}
|
|
- x = 0;
|
|
+ x = borderpx;
|
|
for (i = 0; i < LENGTH(tags); i++) {
|
|
w = TEXTW(m, tags[i]);
|
|
sel = m->tagset[m->seltags] & 1 << i;
|
|
|
|
- drwl_text(pix, m->font, x, 0, w, m->b.height, m->lrpad / 2, tags[i],
|
|
+ drwl_text(pix, m->font, x, y, w, mh, m->lrpad / 2, tags[i],
|
|
urg & 1 << i ? &selbarbg : (sel ? &selbarfg : &normbarfg),
|
|
urg & 1 << i ? &selbarfg : (sel ? &selbarbg : &normbarbg));
|
|
|
|
if (occ & 1 << i)
|
|
- drwl_rect(pix, x + boxs, boxs, boxw, boxw, sel,
|
|
+ drwl_rect(pix, x + boxs, y + boxs, boxw, boxw, sel,
|
|
urg & 1 << i ? &selbarbg : (sel ? &selbarfg : &normbarfg));
|
|
|
|
x += w;
|
|
}
|
|
|
|
w = TEXTW(m, m->ltsymbol);
|
|
- x = drwl_text(pix, m->font, x, 0, w, m->b.height, m->lrpad / 2,
|
|
+ x = drwl_text(pix, m->font, x, y, w, mh, m->lrpad / 2,
|
|
m->ltsymbol, &normbarfg, &normbarbg);
|
|
|
|
- if ((w = m->b.width - tw - x) > m->b.height) {
|
|
+ if ((w = mw - tw - x + borderpx) > mh) {
|
|
if ((c = focustop(m)) != NULL) {
|
|
- drwl_text(pix, m->font, x, 0, w, m->b.height, m->lrpad / 2,
|
|
+ drwl_text(pix, m->font, x, y, w, mh, m->lrpad / 2,
|
|
client_get_title(c),
|
|
m == selmon ? &selbarfg : &normbarfg,
|
|
(m == selmon && c) ? &selbarbg : &normbarbg);
|
|
if (c && c->isfloating)
|
|
- drwl_rect(pix, x + boxs, boxs, boxw, boxw, 0,
|
|
+ drwl_rect(pix, x + boxs, y + boxs, boxw, boxw, 0,
|
|
m == selmon ? &selbarfg : &normbarfg);
|
|
} else
|
|
- drwl_rect(pix, x, 0, w, m->b.height, 1, &normbarbg);
|
|
+ drwl_rect(pix, x, y, w, mh, 1, &normbarbg);
|
|
}
|
|
|
|
pixman_image_unref(pix);
|
|
@@ -3020,7 +3025,7 @@ updatebar(Monitor *m)
|
|
|
|
m->b.scale = m->wlr_output->scale;
|
|
m->lrpad = m->font->height;
|
|
- m->b.height = m->font->height + 2;
|
|
+ m->b.height = m->font->height + 2 + borderpx * 2;
|
|
m->b.real_height = (int)((float)m->b.height / m->wlr_output->scale);
|
|
}
|
|
|
|
--
|
|
2.45.0
|
|
|