commit 45eae1abcdab73cda8e0b5339e06294edcf1aaa9
parent 95bc62fa2ef64f4b3b19b40296a87a041abcded0
Author: mehdi-norouzi <mehdeenoroozi@gmail.com>
Date: Mon, 18 Nov 2024 14:12:54 +0330
dwm: make active tag indicator smaller
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/suckless/.local/src/dwm/dwm.c b/suckless/.local/src/dwm/dwm.c
@@ -917,7 +917,7 @@ drawbar(Monitor *m)
drw_text(drw, x, 0, w, bh, lrpad / 2, tags[i], urg & 1 << i);
// if (occ & 1 << i)
if (m == selmon && selmon->sel && selmon->sel->tags & 1 << i)
- drw_rect(drw, x, bh - boxw*0.7, w, boxw*0.7, 1, urg & 1 << i);
+ drw_rect(drw, x + 4*boxs, bh - boxw*0.7, w - 8*boxs, boxw*0.7, 1, urg & 1 << i);
x += w;
}
w = TEXTW(m->ltsymbol);