diff options
Diffstat (limited to 'config.def.h')
-rw-r--r-- | config.def.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/config.def.h b/config.def.h index b8f0908..1de3c06 100644 --- a/config.def.h +++ b/config.def.h @@ -59,6 +59,7 @@ static const char *termcmd[] = { "st", NULL }; #include <X11/XF86keysym.h> #include "movestack.c" +#include "focusurgent.c" static const Key keys[] = { /* modifier key function argument */ { MODKEY, XK_space, spawn, {.v = dmenucmd } }, @@ -124,6 +125,8 @@ static const Key keys[] = { { MODKEY|ShiftMask, XK_k, movestack, {.i = -1 } }, { MODKEY|ShiftMask, XK_Down, movestack, {.i = +1 } }, /* arrow keys */ { MODKEY|ShiftMask, XK_Up, movestack, {.i = -1 } }, + /* focusurgent patch */ + { MODKEY, XK_a, focusurgent, {0} }, }; /* button definitions */ |