summaryrefslogtreecommitdiff
path: root/dwm.c
diff options
context:
space:
mode:
authorMikkel Thestrup <mikkel@mithe.dk>2026-01-29 00:00:15 +0100
committerMikkel Thestrup <mikkel@mithe.dk>2026-01-29 00:00:15 +0100
commit621ecadf6290e5af580455be4a6113250d835070 (patch)
tree144bbae455273caebeb3f8c0d58ad9ea7f8da39f /dwm.c
parentb632178f8cff6cf90a1147d6ed5c675f2a522d13 (diff)
downloaddwm-621ecadf6290e5af580455be4a6113250d835070.tar.gz
dwm-621ecadf6290e5af580455be4a6113250d835070.zip
Fix(dwmbar): Fix background color not being colored to the right of tags
Diffstat (limited to 'dwm.c')
-rw-r--r--dwm.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/dwm.c b/dwm.c
index 46d31db..e34fd09 100644
--- a/dwm.c
+++ b/dwm.c
@@ -745,6 +745,9 @@ drawbar(Monitor *m)
if (!m->showbar)
return;
+ drw_setscheme(drw, scheme[SchemeNorm]);
+ drw_rect(drw, 0, 0, m->ww, bh, 1, 1);
+
/* Draw layout symbol on the left */
w = TEXTW(m->ltsymbol);
drw_setscheme(drw, scheme[SchemeNorm]);