Finalized revamps to dwm build

This commit is contained in:
Alex Selimov 2021-04-14 22:49:17 -04:00
parent 082c9fa90a
commit 09776c4ce7
2 changed files with 12 additions and 2 deletions

2
dwm.c
View file

@ -777,7 +777,7 @@ drawbar(Monitor *m)
if ((w = m->ww - tw - x) > bh) {
if (m->sel) {
// drw_setscheme(drw, scheme[m == selmon ? SchemeInfoSel : SchemeInfoNorm]);
// drw_text(drw, x, 0, w, bh, lrpad / 2, m->sel->name, 0);
drw_text(drw, x, 0, w, bh, lrpad / 2, " ", 0);
if (m->sel->isfloating)
drw_rect(drw, x + boxs, boxs, boxw, boxw, m->sel->isfixed, 0);
} else {