commit 0e6c5be01083327a1914153de0fb055f00afde40
parent de322bafa0ad5909f40911d31a17325fe944a1a4
Author: Friedel Schön <[email protected]>
Date:   Mon,  9 Dec 2024 12:22:50 +0100
apply activetagindicator patch
Diffstat:
1 file changed, 4 insertions(+), 3 deletions(-)
diff --git a/dwm.c b/dwm.c
@@ -870,9 +870,10 @@ drawbar(Monitor *m)
 		drw_setscheme(drw, scheme[m->tagset[m->seltags] & 1 << i ? SchemeSel : SchemeNorm]);
 		drw_text(drw, x, 0, w, bh, lrpad / 2, tags[i], urg & 1 << i);
 		if (occ & 1 << i)
-			drw_rect(drw, x + boxs, boxs, boxw, boxw,
-				m == selmon && selmon->sel && selmon->sel->tags & 1 << i,
-				urg & 1 << i);
+			drw_rect(drw, x + boxw, 0, w - ( 2 * boxw + 1), boxw,
+			    m == selmon && selmon->sel && selmon->sel->tags & 1 << i,
+			    urg & 1 << i);
+
 		x += w;
 	}
 	w = TEXTW(m->ltsymbol);