aboutsummaryrefslogtreecommitdiff
path: root/config.def.h
diff options
context:
space:
mode:
authorAnselm R Garbe <garbeam@gmail.com>2008-05-11 14:40:37 +0100
committerAnselm R Garbe <garbeam@gmail.com>2008-05-11 14:40:37 +0100
commit5602f44b29b5c9a9b66b012b34f5749929c5cd31 (patch)
tree18cd47f98c6acce2a1a32bc098fbc71e9389c497 /config.def.h
parentb848f4bda8861115c04aecd9fd87baf928d931de (diff)
implemented exact focus next, if arg != NULL to focus{next,prev}
Diffstat (limited to 'config.def.h')
-rw-r--r--config.def.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/config.def.h b/config.def.h
index ed3f624..d7824e3 100644
--- a/config.def.h
+++ b/config.def.h
@@ -53,7 +53,9 @@ Key keys[] = {
"exec dmenu_run -fn '"FONT"' -nb '"NORMBGCOLOR"' -nf '"NORMFGCOLOR"' -sb '"SELBGCOLOR"' -sf '"SELFGCOLOR"'" },
{ MODKEY|ShiftMask, XK_Return, spawn, "exec uxterm" },
{ MODKEY, XK_j, focusnext, NULL },
+ { MODKEY|ShiftMask, XK_j, focusnext, "exact" },
{ MODKEY, XK_k, focusprev, NULL },
+ { MODKEY|ShiftMask, XK_k, focusprev, "exact" },
{ MODKEY, XK_r, reapply, NULL },
{ MODKEY, XK_h, setmfact, "-0.05" },
{ MODKEY, XK_l, setmfact, "+0.05" },