aboutsummarylogtreecommitdiffstats
path: root/config.default.h
diff options
context:
space:
mode:
authorAnselm R. Garbe2007-08-05 12:47:52 +0200
committerAnselm R. Garbe2007-08-05 12:47:52 +0200
commitd6bcad24361e32b803cdbeef088f3c20a9a76545 (patch)
treea9db8fd70f3c1528bcbc4ff2433ed606108da03b /config.default.h
parentf3d5cffa0e53d5613259f5401deff1183a24df2d (diff)
downloadaur-d6bcad24361e32b803cdbeef088f3c20a9a76545.tar.gz
changed shortcuts as described on the mailinglist, added sanity checks for ratios during tile (fallback to wah if clients would get too small), documented that new stuff/shortcuts in dwm(1)
Diffstat (limited to 'config.default.h')
-rw-r--r--config.default.h10
1 files changed, 6 insertions, 4 deletions
diff --git a/config.default.h b/config.default.h
index 9ea02a9c52a1..eaba9fb663ac 100644
--- a/config.default.h
+++ b/config.default.h
@@ -45,12 +45,14 @@ static Key key[] = { \
{ MODKEY, XK_p, spawn, "exe=`dmenu_path | dmenu` && exec $exe" }, \
{ MODKEY, XK_space, setlayout, NULL }, \
{ MODKEY, XK_b, togglebar, NULL }, \
- { MODKEY, XK_h, incvratio, ".1" }, \
- { MODKEY, XK_l, incvratio, "-.1" }, \
- { MODKEY|ShiftMask, XK_j, incnmaster, "1" }, \
- { MODKEY|ShiftMask, XK_k, incnmaster, "-1" }, \
+ { MODKEY, XK_h, incnmaster, "1" }, \
+ { MODKEY, XK_l, incnmaster, "-1" }, \
{ MODKEY, XK_j, focusclient, "1" }, \
{ MODKEY, XK_k, focusclient, "-1" }, \
+ { MODKEY|ShiftMask, XK_h, inchratio, ".1" }, \
+ { MODKEY|ShiftMask, XK_l, inchratio, "-.1" }, \
+ { MODKEY|ShiftMask, XK_j, incvratio, "-.1" }, \
+ { MODKEY|ShiftMask, XK_k, incvratio, ".1" }, \
{ MODKEY, XK_m, togglemax, NULL }, \
{ MODKEY, XK_Return, zoom, NULL }, \
{ MODKEY|ShiftMask, XK_space, togglefloating, NULL }, \