diff options
Diffstat (limited to 'config.def.h')
| -rw-r--r-- | config.def.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/config.def.h b/config.def.h index 55bec4c..41f39c3 100644 --- a/config.def.h +++ b/config.def.h @@ -12,6 +12,7 @@ static const char before[] = "<"; static const char after[] = ">"; static const int tabwidth = 200; static const Bool foreground = True; +static Bool urgentswitch = False; /* * Where to place a new tab when it is opened. When npisrelative is True, @@ -56,6 +57,7 @@ static Key keys[] = { \ { MODKEY, XK_q, killclient, { 0 } }, { MODKEY, XK_u, focusurgent, { .v = NULL } }, + { MODKEY|ShiftMask, XK_u, toggle, { .v = (void*) &urgentswitch } }, { 0, XK_F11, fullscreen, { 0 } }, }; |