diff options
| author | ProsperousPotato <114923153+ProsperousPotato@users.noreply.github.com> | 2024-06-21 23:23:26 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-06-21 23:23:26 +0100 |
| commit | 39aa575a37aab32fa386bc6c20841b222298f922 (patch) | |
| tree | 0c740e45060c2eda87bf8209bf15f19b72e3972c /dwm.c | |
| parent | b1a9aeacdf05fd9040c5c73783337070a5a5df58 (diff) | |
Add files via upload
Diffstat (limited to 'dwm.c')
| -rw-r--r-- | dwm.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -722,10 +722,10 @@ drawbar(Monitor *m) x = 0; for (i = 0; i < LENGTH(tags); i++) { w = TEXTW(tags[i]); - if (!(m->tagset[m->seltags] & 1 << i || occ & 1 <<i)) continue; + if (!(m->tagset[m->seltags] & 1 << i || occ & 1 <<i)) continue; /*Only displays tags occupied by a window*/ drw_setscheme(drw, scheme[m->tagset[m->seltags] & 1 << i ? SchemeSel : SchemeNorm]); drw_text(drw, x, 0, w, bh, lrpad / 2, tags[i], urg & 1 << i); - // if (occ & 1 << i) + // if (occ & 1 << i) /*Doesn't draw the rectangle to indicate an occupied tag*/ // drw_rect(drw, x + boxs, boxs, boxw, boxw, // m == selmon && selmon->sel && selmon->sel->tags & 1 << i, // urg & 1 << i); |
