diff --git a/dwm b/dwm index 4a9775f..98df876 100755 Binary files a/dwm and b/dwm differ diff --git a/dwm.c b/dwm.c index dc2d6b3..8b4e58e 100644 --- a/dwm.c +++ b/dwm.c @@ -904,7 +904,9 @@ drawbar(Monitor *m) } w = blw = TEXTW(m->ltsymbol); drw_setscheme(drw, scheme[SchemeTagsNorm]); - x = drw_text(drw, x, 0, w, bh, lrpad / 2, m->ltsymbol, 0); + char str[24]; + sprintf(str, "%s%d", m->ltsymbol, selmon->nmaster); + x = drw_text(drw, x, 0, w, bh, lrpad / 2, /*m->ltsymbol strcat(str, m->ltsymbol)*/ str, 0); if ((w = m->ww - sw - stw - x) > bh) { drw_setscheme(drw, scheme[m == selmon ? SchemeInfoSel : SchemeInfoNorm]); diff --git a/dwm.o b/dwm.o index 6b0025e..2bd3741 100644 Binary files a/dwm.o and b/dwm.o differ