summaryrefslogtreecommitdiff
path: root/config.def.h
diff options
context:
space:
mode:
authorEnno Boland (tox) <tox@s01.de>2009-12-15 09:26:01 +0100
committerEnno Boland (tox) <tox@s01.de>2009-12-15 09:26:01 +0100
commitc6be3a7d9f36725fa968383e979d1ce00488bd8b (patch)
tree673ea76ce5a7d543b20c3c54f95440c5caa6e96a /config.def.h
parent22653127836523932e36d19268b134695d13d753 (diff)
tabbed remembers last viewed tab; open new tabs focused/unfocused can be configured now.
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 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 } },