Alex Pilon wrote:

Isn't that just scheme[SchemeNorm] in either case?

Whoops, fixed. Thank you.

Cág
diff --git a/dwm.c b/dwm.c
index 421bf27..7fca393 100644
--- a/dwm.c
+++ b/dwm.c
@@ -743,7 +743,7 @@ drawbar(Monitor *m)
 
 	if ((w = m->ww - sw - x) > bh) {
 		if (m->sel) {
-			drw_setscheme(drw, scheme[m == selmon ? SchemeSel : SchemeNorm]);
+			drw_setscheme(drw, scheme[SchemeNorm]);
 			drw_text(drw, x, 0, w, bh, lrpad / 2, m->sel->name, 0);
 			if (m->sel->isfloating)
 				drw_rect(drw, x + boxs, boxs, boxw, boxw, m->sel->isfixed, 0);

Reply via email to