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 b2d785e..6824ba1 100644 --- a/config.def.h +++ b/config.def.h @@ -6,6 +6,7 @@ static const char *selfgcolor = "#ffffff"; static const char *before = "<"; static const char *after = ">"; static const int tabwidth = 200; +static const Bool foreground = False; #define MODKEY ControlMask static Key keys[] = { \ @@ -13,6 +14,7 @@ static Key keys[] = { \ { MODKEY|ShiftMask, XK_Return, spawn, { .v = (char*[]){ "surf", "-e", winid, NULL} } }, { MODKEY|ShiftMask, XK_l, rotate, { .i = +1 } }, { MODKEY|ShiftMask, XK_h, rotate, { .i = -1 } }, + { MODKEY, XK_Tab, rotate, { .i = 0 } }, { MODKEY, XK_1, move, { .i = 0 } }, { MODKEY, XK_2, move, { .i = 1 } }, { MODKEY, XK_3, move, { .i = 2 } }, |