aboutsummaryrefslogtreecommitdiffstats
path: root/src/config/config.h
diff options
context:
space:
mode:
authorFilip Wandzio <contact@philw.dev>2025-09-08 19:09:10 +0200
committerFilip Wandzio <contact@philw.dev>2025-09-08 19:09:10 +0200
commitf33c70176cd078c6e1c189b9c2a61089422129c9 (patch)
treeeaf3d27a81566d5118b0736ba32f5189963e4d1c /src/config/config.h
parentbd019ee25b380d32ccf900f5afa0dab9f9d541b8 (diff)
downloaddwm-f33c70176cd078c6e1c189b9c2a61089422129c9.tar.gz
dwm-f33c70176cd078c6e1c189b9c2a61089422129c9.zip
Enforce code style, reformat project
Signed-off-by: Filip Wandzio <contact@philw.dev>
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";