commit 0014fc70c2c5f327f16719a3b06fcb9ff9cf5063
parent 5a284907dc4aa7cab26c83921b08ae38e3c58b31
Author: Anselm R Garbe <anselm@garbe.us>
Date: Tue, 14 Jul 2009 19:15:32 +0100
new dwm 5.6 release
Diffstat:
2 files changed, 33 insertions(+), 1 deletion(-)
diff --git a/dwm.suckless.org/patches/movestack.md b/dwm.suckless.org/patches/movestack.md
@@ -0,0 +1,32 @@
+# MOVESTACK
+
+## Description
+
+This plugin allows you to move clients around in the stack and swap them with
+the master. It emulates the behavior off mod+shift+j and mod+shift+k in Xmonad.
+movestack(+1) will swap the client with the current focus with the next client.
+movestack(-1) will swap the client with the current focus with the previous client.
+
+## Usage
+
+ 1. Download the patch and apply according to the [general instructions](.).
+ 2. Include the `movestack.c` source file and add keys that call movestack.
+ Example from `config.default.h`:
+
+ #include "movestack.c"
+ static Key keys[] = {
+ /* modifier key function argument */
+ ...
+ { MODKEY|ShiftMask, XK_j, movestack, {.i = +1 } },
+ { MODKEY|ShiftMask, XK_k, movestack, {.i = -1 } },
+ ...
+
+## Download
+
+ * [dwm-5.2-movestack.diff][1] (1.9k) (20081003)
+
+## Author
+
+ * Niki Yoshiuchi - <aplusbi@gmail.com>
+
+[1]: http://www.aplusbi.com/dwm/dwm-5.2-movestack.diff
diff --git a/wmii.suckless.org/index.md b/wmii.suckless.org/index.md
@@ -18,7 +18,7 @@ Links
-----
* Latest release: [wmii-3.6](http://code.suckless.org/dl/wmii/wmii-3.6.tar.gz) (Note that it requires [dmenu](http://tools.suckless.org/dmenu) and [libixp-0.4](/libs/libixp.html), [p9p](http://plan9.us/) recommended)
-* Latest snapshot: [wmii+ixp-20090512](http://code.suckless.org/dl/wmii/wmii+ixp-20090512.tgz)
+* Latest snapshot: [wmii+ixp-20090703](http://code.suckless.org/dl/wmii/wmii+ixp-snap20090703.tgz)
* Latest devel tip: <code>hg clone [http://code.suckless.org/hg/wmii](http://code.suckless.org/hg/wmii)</code>
* Bugs: [Google Code issue tracker](http://code.google.com/p/wmii/issues)
* Mailing List: `dev+subscribe@suckless.org` ([Archives](http://lists.suckless.org/dev/)) ([Old Archives](http://lists.suckless.org/wmii/)) (see [community](http://suckless.org/common/community/) for details)