[PATCH] Function to cycle through available layouts.
MOD-CTRL-, and MOD-CTRL-. cycle backwards and forwards through available layouts. Probably only useful if you have a lot of additional layouts. The NULL, NULL layout should always be the last layout in your list, in order to guarantee consistent behavior.
This commit is contained in:
parent
73a7246f2f
commit
bd79444b3c
@ -49,6 +49,7 @@ static const Layout layouts[] = {
|
|||||||
{ "><>", NULL }, /* no layout function means floating behavior */
|
{ "><>", NULL }, /* no layout function means floating behavior */
|
||||||
{ "[M]", monocle },
|
{ "[M]", monocle },
|
||||||
{ "|||", col },
|
{ "|||", col },
|
||||||
|
{ NULL, NULL },
|
||||||
};
|
};
|
||||||
|
|
||||||
/* key definitions */
|
/* key definitions */
|
||||||
@ -87,6 +88,8 @@ static const Key keys[] = {
|
|||||||
{ MODKEY, XK_f, setlayout, {.v = &layouts[1]} },
|
{ MODKEY, XK_f, setlayout, {.v = &layouts[1]} },
|
||||||
{ MODKEY, XK_m, setlayout, {.v = &layouts[2]} },
|
{ MODKEY, XK_m, setlayout, {.v = &layouts[2]} },
|
||||||
{ MODKEY, XK_c, setlayout, {.v = &layouts[3]} },
|
{ MODKEY, XK_c, setlayout, {.v = &layouts[3]} },
|
||||||
|
{ MODKEY|ControlMask, XK_comma, cyclelayout, {.i = -1 } },
|
||||||
|
{ MODKEY|ControlMask, XK_period, cyclelayout, {.i = +1 } },
|
||||||
{ MODKEY|ShiftMask, XK_f, fullscreen, {0} },
|
{ MODKEY|ShiftMask, XK_f, fullscreen, {0} },
|
||||||
{ MODKEY, XK_space, setlayout, {0} },
|
{ MODKEY, XK_space, setlayout, {0} },
|
||||||
{ MODKEY|ShiftMask, XK_space, togglefloating, {0} },
|
{ MODKEY|ShiftMask, XK_space, togglefloating, {0} },
|
||||||
|
6
dwm.1
6
dwm.1
@ -92,6 +92,12 @@ Sets monocle layout.
|
|||||||
.B Mod1\-space
|
.B Mod1\-space
|
||||||
Toggles between current and previous layout.
|
Toggles between current and previous layout.
|
||||||
.TP
|
.TP
|
||||||
|
.B Mod1\-Control\-,
|
||||||
|
Cycles backwards in layout list.
|
||||||
|
.TP
|
||||||
|
.B Mod1\-Control\-.
|
||||||
|
Cycles forwards in layout list.
|
||||||
|
.TP
|
||||||
.B Mod1\-j
|
.B Mod1\-j
|
||||||
Focus next window.
|
Focus next window.
|
||||||
.TP
|
.TP
|
||||||
|
18
dwm.c
18
dwm.c
@ -196,6 +196,7 @@ static void configure(Client *c);
|
|||||||
static void configurenotify(XEvent *e);
|
static void configurenotify(XEvent *e);
|
||||||
static void configurerequest(XEvent *e);
|
static void configurerequest(XEvent *e);
|
||||||
static Monitor *createmon(void);
|
static Monitor *createmon(void);
|
||||||
|
static void cyclelayout(const Arg *arg);
|
||||||
static void destroynotify(XEvent *e);
|
static void destroynotify(XEvent *e);
|
||||||
static void detach(Client *c);
|
static void detach(Client *c);
|
||||||
static void detachstack(Client *c);
|
static void detachstack(Client *c);
|
||||||
@ -832,6 +833,23 @@ createmon(void)
|
|||||||
return m;
|
return m;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
void
|
||||||
|
cyclelayout(const Arg *arg) {
|
||||||
|
Layout *l;
|
||||||
|
for(l = (Layout *)layouts; l != selmon->lt[selmon->sellt]; l++);
|
||||||
|
if(arg->i > 0) {
|
||||||
|
if(l->symbol && (l + 1)->symbol)
|
||||||
|
setlayout(&((Arg) { .v = (l + 1) }));
|
||||||
|
else
|
||||||
|
setlayout(&((Arg) { .v = layouts }));
|
||||||
|
} else {
|
||||||
|
if(l != layouts && (l - 1)->symbol)
|
||||||
|
setlayout(&((Arg) { .v = (l - 1) }));
|
||||||
|
else
|
||||||
|
setlayout(&((Arg) { .v = &layouts[LENGTH(layouts) - 2] }));
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
void
|
void
|
||||||
destroynotify(XEvent *e)
|
destroynotify(XEvent *e)
|
||||||
{
|
{
|
||||||
|
Loading…
Reference in New Issue
Block a user