commit 792f76945340defdb708a36ba7a8dcbde2482e5e
parent b5410ec2c2a4150a3bfe5122ccdde4ad9920979a
Author: joten <joten@freenet.de>
Date: Mon, 10 May 2010 22:24:29 +0200
Geändert dwm.suckless.org/patches/flextile.md
Diffstat:
1 file changed, 12 insertions(+), 12 deletions(-)
diff --git a/dwm.suckless.org/patches/flextile.md b/dwm.suckless.org/patches/flextile.md
@@ -22,19 +22,19 @@ The patch incorporates and expands the following patches:
(1) Download the patch and apply it according to the [general instructions](.).
(2) Transfer the changes made by the patch in 'config.def.h' to your 'config.h', if needed.
In the 'layout(s)' section:
- static const int layoutaxis[] = {
- 1, /* layout axis: 1 = x, 2 = y; negative values mirror the layout, setting the master area to the right / bottom instead of left / top */
- 2, /* master axis: 1 = x (from left to right), 2 = y (from top to bottom), 3 = z (monocle) */
- 2, /* stack axis: 1 = x (from left to right), 2 = y (from top to bottom), 3 = z (monocle) */
- };
- static const unsigned int mastersplit = 1; /* number of tiled clients in the master area */
+ static const int layoutaxis[] = {
+ 1, /* layout axis: 1 = x, 2 = y; negative values mirror the layout, setting the master area to the right / bottom instead of left / top */
+ 2, /* master axis: 1 = x (from left to right), 2 = y (from top to bottom), 3 = z (monocle) */
+ 2, /* stack axis: 1 = x (from left to right), 2 = y (from top to bottom), 3 = z (monocle) */
+ };
+ static const unsigned int mastersplit = 1; /* number of tiled clients in the master area */
In the 'keys' array:
- { MODKEY|ControlMask, XK_t, rotatelayoutaxis, {.i = 0} }, /* 0 = layout axis */
- { MODKEY|ControlMask, XK_Tab, rotatelayoutaxis, {.i = 1} }, /* 1 = master axis */
- { MODKEY|ControlMask|ShiftMask, XK_Tab, rotatelayoutaxis, {.i = 2} }, /* 2 = stack axis */
- { MODKEY|ControlMask, XK_Return, mirrorlayout, {0} },
- { MODKEY|ControlMask, XK_j, shiftmastersplit, {.i = -1} },
- { MODKEY|ControlMask, XK_k, shiftmastersplit, {.i = +1} },
+ { MODKEY|ControlMask, XK_t, rotatelayoutaxis, {.i = 0} }, /* 0 = layout axis */
+ { MODKEY|ControlMask, XK_Tab, rotatelayoutaxis, {.i = 1} }, /* 1 = master axis */
+ { MODKEY|ControlMask|ShiftMask, XK_Tab, rotatelayoutaxis, {.i = 2} }, /* 2 = stack axis */
+ { MODKEY|ControlMask, XK_Return, mirrorlayout, {0} },
+ { MODKEY|ControlMask, XK_j, shiftmastersplit, {.i = -1} },
+ { MODKEY|ControlMask, XK_k, shiftmastersplit, {.i = +1} },
## Usage ##