aboutsummaryrefslogtreecommitdiffstats
path: root/src/config/config.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/config/config.h')
-rw-r--r--src/config/config.h11
1 files changed, 7 insertions, 4 deletions
diff --git a/src/config/config.h b/src/config/config.h
index 55fb083..3135869 100644
--- a/src/config/config.h
+++ b/src/config/config.h
@@ -65,10 +65,13 @@ static const Layout layouts[] = {
65/* key definitions */ 65/* key definitions */
66#define MODKEY Mod4Mask 66#define MODKEY Mod4Mask
67#define TAGKEYS(KEY, TAG) \ 67#define TAGKEYS(KEY, TAG) \
68 {MODKEY, KEY, view, {.ui = 1 << TAG}}, \ 68 {MODKEY, KEY, view, {.ui = 1 << TAG}}, \
69 {MODKEY | ControlMask, KEY, toggleview, {.ui = 1 << TAG}}, \ 69 {MODKEY | ControlMask, KEY, toggleview, {.ui = 1 << TAG}}, \
70 {MODKEY | ShiftMask, KEY, tag, {.ui = 1 << TAG}}, \ 70 {MODKEY | ShiftMask, KEY, tag, {.ui = 1 << TAG}}, \
71 {MODKEY | ControlMask | ShiftMask, KEY, toggletag, {.ui = 1 << TAG}}, 71 {MODKEY | ControlMask | ShiftMask, \
72 KEY, \
73 toggletag, \
74 {.ui = 1 << TAG}},
72 75
73/* commands */ 76/* commands */
74static char dmenumon[2] = "0"; 77static char dmenumon[2] = "0";