about summary refs log tree commit diff stats
path: root/config.def.h
diff options
context:
space:
mode:
authorAnselm R Garbe <anselm@garbe.us>2009-07-02 20:37:26 +0100
committerAnselm R Garbe <anselm@garbe.us>2009-07-02 20:37:26 +0100
commita9e145fe6d8af4848e6706131ac41e99003cd997 (patch)
tree22406d3f4e1032f93817228436fc6ba8a06a8f6b /config.def.h
parent5dd92c765570caa6d96ab125aa655e30cf82eb20 (diff)
downloaddwm-a9e145fe6d8af4848e6706131ac41e99003cd997.tar.gz
changed focusmon/tagmon to work on prev/next instead (-1/+1), changed shortcuts to Mod1-, Mod1-. and Mod1-Shift-, Mod1-Shift-.
Diffstat (limited to 'config.def.h')
-rw-r--r--config.def.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/config.def.h b/config.def.h
index 34615b2..a729dcd 100644
--- a/config.def.h
+++ b/config.def.h
@@ -71,10 +71,10 @@ static Key keys[] = {
 	{ MODKEY|ShiftMask,             XK_space,  togglefloating, {0} },
 	{ MODKEY,                       XK_0,      view,           {.ui = ~0 } },
 	{ MODKEY|ShiftMask,             XK_0,      tag,            {.ui = ~0 } },
-	{ MODKEY,                       XK_w,      focusmon,       {.ui = 0 } },
-	{ MODKEY,                       XK_e,      focusmon,       {.ui = 1 } },
-	{ MODKEY|ShiftMask,             XK_w,      tagmon,         {.ui = 0 } },
-	{ MODKEY|ShiftMask,             XK_e,      tagmon,         {.ui = 1 } },
+	{ MODKEY,                       XK_comma,  focusmon,       {.i = -1 } },
+	{ MODKEY,                       XK_period, focusmon,       {.i = +1 } },
+	{ MODKEY|ShiftMask,             XK_comma,  tagmon,         {.i = -1 } },
+	{ MODKEY|ShiftMask,             XK_period, tagmon,         {.i = +1 } },
 	TAGKEYS(                        XK_1,                      0)
 	TAGKEYS(                        XK_2,                      1)
 	TAGKEYS(                        XK_3,                      2)