summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--config.h4
-rw-r--r--dwm.c5
2 files changed, 5 insertions, 4 deletions
diff --git a/config.h b/config.h
index dd19981..82eb33d 100644
--- a/config.h
+++ b/config.h
@@ -56,8 +56,8 @@ static const int refreshrate = 120; /* refresh rate (per second) for client mov
static const Layout layouts[] = {
/* symbol arrange function */
- { "[]=", tile },
- { "[M]", monocle },
+ { "t", tile },
+ { "m", monocle },
/* { "><>", NULL }, no layout function means floating behavior */
};
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);
}