commit a6013f20be88855a055a56c4b439525658efc20f
parent 585901bf9a7f948fa8b9ba68ccb9a86d10c12ce8
Author: miksa <milutin@popovic.xyz>
Date: Sun, 29 Oct 2023 10:34:02 +0000
fix draw bar
Diffstat:
3 files changed, 5 insertions(+), 3 deletions(-)
diff --git a/dwm b/dwm
Binary files differ.
diff --git a/dwm.c b/dwm.c
@@ -906,10 +906,12 @@ drawbar(Monitor *m)
if ((w = m->ww - sw - x) > bh) {
if (m->sel) {
- drw_setscheme(drw, scheme[m == selmon ? SchemeSel : SchemeNorm]);
- //drw_text(drw, x, 0, w, bh, lrpad / 2, m->sel->name, 0);
+ //drw_setscheme(drw, scheme[m == selmon ? SchemeSel : SchemeNorm]);
+ //drw_text(drw, x, 0, w, bh, lrpad / 2, "", 0);
+ drw_setscheme(drw, scheme[SchemeNorm]);
+ drw_rect(drw, x, 0, w, bh, 1, 1);
if (m->sel->isfloating)
- drw_rect(drw, x + boxs, boxs, boxw, boxw, m->sel->isfixed, 0);
+ drw_rect(drw, x + boxs, boxs, boxw, boxw, m->sel->isfixed, 0);
} else {
drw_setscheme(drw, scheme[SchemeNorm]);
drw_rect(drw, x, 0, w, bh, 1, 1);
diff --git a/dwm.o b/dwm.o
Binary files differ.