commit a3d377694f406d7f99d52c88ad50684b984a2413
parent bf171c8266facb1fdb4d438bc21b1111670fe229
Author: Claudio M. Alessi <smoppy@gmail.com>
Date: Tue, 28 Feb 2012 15:24:27 +0100
Add the Jan patch (previously removed from the moveresize page)
Diffstat:
1 file changed, 29 insertions(+), 0 deletions(-)
diff --git a/dwm.suckless.org/patches/maximize.md b/dwm.suckless.org/patches/maximize.md
@@ -0,0 +1,29 @@
+MOVERESIZE
+==========
+
+Description
+-----------
+
+These patch provide helper functions for maximizing, horizontally and
+vertically, floating windows using keybindings.
+
+Usage
+-----
+Insert the bindings into the keys list. Here is an example:
+
+ { MODKEY|ControlMask|ShiftMask, XK_h, togglehorizontalmax, NULL },
+ { MODKEY|ControlMask|ShiftMask, XK_l, togglehorizontalmax, NULL },
+ { MODKEY|ControlMask|ShiftMask, XK_j, toggleverticalmax, NULL },
+ { MODKEY|ControlMask|ShiftMask, XK_k, toggleverticalmax, NULL },
+ { MODKEY|ControlMask, XK_m, togglemaximize, {0} },
+
+Download
+--------
+* [dwm-6.0-moveresize.diff][0]
+
+[0]: dwm-6.0-moveresize.diff
+
+Author
+------
+
+ * Jan Christoph Ebersbach - <jceb@e-jc.de>