commit 4180b9dae0c2d9f6f6e6b56fb44dab2c8c562a21
parent afcb7ba45599362b25101beb38ab8eb9e7abb7ae
Author: joten <joten@freenet.de>
Date: Tue, 1 Jun 2010 15:00:47 +0200
updated the 'flextile' patch and a link under 'related projects' (joten <joten@freenet.de>)
Diffstat:
2 files changed, 10 insertions(+), 5 deletions(-)
diff --git a/dwm.suckless.org/patches/flextile.md b/dwm.suckless.org/patches/flextile.md
@@ -23,21 +23,26 @@ The patch incorporates and expands the following patches:
## Configuration ##
(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 */
+
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_j, shiftmastersplit, {.i = -1} }, /* reduce the number of tiled clients in the master area */
+ { MODKEY|ControlMask, XK_k, shiftmastersplit, {.i = +1} }, /* increase the number of tiled clients in the master area */
## Usage ##
@@ -48,8 +53,8 @@ The original tile layout is only available by setting the above parameters, but
## Download ##
- * [flextile-5.8-100510.diff][1] (13k) (20100510)
+ * [flextile-5.8.1.diff][1] (14k) (20100531, joten <joten (at) freenet (dot) de>)
-[1]: http://dwm.suckless.org/patches/flextile-5.8-100510.diff
+[1]: http://dwm.suckless.org/patches/flextile-5.8.1.diff
diff --git a/dwm.suckless.org/patches/index.md b/dwm.suckless.org/patches/index.md
@@ -35,7 +35,7 @@ related projects
* [awm](http://www.freaknet.org/alpt/src/alpt-wm/readme) -- (old) modified dwm with workspaces and /proc like interface
* [bwm](http://lists.suckless.org/dwm/0708/3085.html) -- (old) modified dwm with extensive mouse support
* [cons-wm](http://github.com/dharmatech/psilab/tree/master/cons-wm) -- minimalist wm in scheme (not tiled)
-* [bug.n](http://freenet-homepage.de/bug.n/) -- dwm for windows written in AutoHotkey
+* [bug.n](http://www.autohotkey.net./~joten/) -- dwm for windows written in AutoHotkey
* [dvtm](http://www.brain-dump.org/projects/dvtm/) -- virtual terminal manager (dwm on the console)
* [dwm-gtx](http://s01.de/~gottox/index.cgi/proj_dwm) -- dwm branch with Xinerama support, pointer movement, different layout
* [dwm-sprinkles](http://0mark.unserver.de/dwm-sprinkles/) -- dwm with colorfull bar, transparency, pre-configured pertag and more