Added toggle layout functionality.

This commit is contained in:
sheldonmlee 2021-05-23 14:00:10 +08:00
parent 1560fd35ca
commit 07279cd4d3

13
dwm.c
View File

@ -237,6 +237,7 @@ static int xerrorstart(Display *dpy, XErrorEvent *ee);
static void zoom(const Arg *arg);
static void centeredmaster(Monitor *m);
static void centeredfloatingmaster(Monitor *m);
static void togglelayout(const Arg *arg);
/* variables */
static const char broken[] = "broken";
@ -2263,3 +2264,15 @@ centeredfloatingmaster(Monitor *m)
tx += WIDTH(c);
}
}
void
togglelayout(const Arg* arg)
{
int on;
if (!arg) return;
Layout* to = (Layout*)arg->v;
on = to->arrange == selmon->lt[selmon->sellt]->arrange; // check if arrange function is the same
if (!on) setlayout(arg);
else setlayout(NULL);
}