summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--config.h5
-rw-r--r--dwm.c16
2 files changed, 2 insertions, 19 deletions
diff --git a/config.h b/config.h
index 3ce8afd..485e481 100644
--- a/config.h
+++ b/config.h
@@ -49,7 +49,6 @@ static const Layout layouts[] = {
/* symbol arrange function */
{ "[]=", tile }, /* first entry is default */
{ "><>", NULL }, /* no layout function means floating behavior */
- { "[M]", monocle },
{ "|M|", centeredmaster },
{ ">M>", centeredfloatingmaster },
{ "[@]", spiral },
@@ -123,11 +122,11 @@ static Key keys[] = {
/* { MODKEY|ShiftMask, XK_t, spawn, SHCMD("") }, */
/* { MODKEY, XK_y, spawn, SHCMD("") }, */
/* { MODKEY|ShiftMask, XK_y, spawn, SHCMD("") }, */
- { MODKEY, XK_u, setlayout, {.v = &layouts[3]} },
+ { MODKEY, XK_u, setlayout, {.v = &layouts[2]} },
/* { MODKEY|ShiftMask, XK_u, spawn, SHCMD("") }, */
{ MODKEY, XK_i, incnmaster, {.i = +1 } },
{ MODKEY|ShiftMask, XK_i, incnmaster, {.i = -1 } },
- { MODKEY, XK_o, setlayout, {.v = &layouts[4]} },
+ { MODKEY, XK_o, setlayout, {.v = &layouts[3]} },
/* { MODKEY|ShiftMask, XK_o, spawn, SHCMD("") }, */
{ MODKEY, XK_p, spawn, SHCMD("mpc toggle") },
{ MODKEY|ShiftMask, XK_p, spawn, SHCMD("mpc pause ; pauseallmpv") },
diff --git a/dwm.c b/dwm.c
index 11f9e95..d748a68 100644
--- a/dwm.c
+++ b/dwm.c
@@ -213,7 +213,6 @@ static void loadxrdb(void);
static void manage(Window w, XWindowAttributes *wa);
static void mappingnotify(XEvent *e);
static void maprequest(XEvent *e);
-static void monocle(Monitor *m);
static void motionnotify(XEvent *e);
static void movemouse(const Arg *arg);
static Client *nexttiled(Client *c);
@@ -1232,21 +1231,6 @@ maprequest(XEvent *e)
}
void
-monocle(Monitor *m)
-{
- unsigned int n = 0;
- Client *c;
-
- 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);
- for (c = nexttiled(m->clients); c; c = nexttiled(c->next))
- resize(c, m->wx, m->wy, m->ww - 2 * c->bw, m->wh - 2 * c->bw, 0);
-}
-
-void
motionnotify(XEvent *e)
{
static Monitor *mon = NULL;