summaryrefslogtreecommitdiff
path: root/dwm.c
diff options
context:
space:
mode:
authorLignum Crucis2026-04-09 23:46:57 -0300
committerLignum Crucis2026-04-09 23:46:57 -0300
commitc800e7ec3c881c9d1c0cfdc283b084091cfb90d1 (patch)
tree0911c9d17f16b53f8e42d5aca3d2211bc5c4a978 /dwm.c
parentfc9c95bb6ed4b24b15f782d5757b829f06acfe35 (diff)
conf: changed layout icons
i sincerely edited dwm.c to do it
Diffstat (limited to 'dwm.c')
-rw-r--r--dwm.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/dwm.c b/dwm.c
index 68b3014..f59b538 100644
--- a/dwm.c
+++ b/dwm.c
@@ -1223,8 +1223,9 @@ monocle(Monitor *m)
for (c = m->clients; c; c = c->next)
if (ISVISIBLE(c))
n++;
- if (n > 0) /* override layout symbol */
- snprintf(m->ltsymbol, sizeof m->ltsymbol, "[%d]", n);
+ // remove override monocle symbol
+ /* if (n > 0)
+ snprintf(m->ltsymbol, sizeof m->ltsymbol, "[%d]", n); */
for (c = nexttiled(m->clients); c; c = nexttiled(c->next))
resize(c, m->wx, m->wy, m->ww, m->wh, 0, 0);
}