summaryrefslogtreecommitdiffhomepage
path: root/config.def.h
diff options
context:
space:
mode:
authormatt <[email protected]>2020-06-19 23:18:50 +0200
committermatt <[email protected]>2020-06-19 23:18:50 +0200
commit6aca08966183c9ec6bce8a6f346b48a79b30fc1e (patch)
tree8ebcc31c606fbb6ec54ba8f164a5118ee6c56573 /config.def.h
parent5e0a9c49f8d4f70616282b50bead1efcbcc20e94 (diff)
downloaddwm-flexipatch-6aca08966183c9ec6bce8a6f346b48a79b30fc1e.tar.gz
dwm-flexipatch-6aca08966183c9ec6bce8a6f346b48a79b30fc1e.zip
Adding tagothermonitor patch
Diffstat (limited to 'config.def.h')
-rw-r--r--config.def.h11
1 files changed, 11 insertions, 0 deletions
diff --git a/config.def.h b/config.def.h
index 6392e2c..f693266 100644
--- a/config.def.h
+++ b/config.def.h
@@ -511,6 +511,10 @@ static Signal signals[] = {
#if XRDB_PATCH && !VTCOLORS_PATCH
{ "xrdb", xrdb },
#endif // XRDB_PATCH
+ #if TAGOTHERMONITOR_PATCH
+ { "tagnextmonex", tagnextmonex },
+ { "tagprevmonex", tagprevmonex },
+ #endif // TAGOTHERMONITOR_PATCH
{ "quit", quit },
{ "setlayout", setlayout },
{ "setlayoutex", setlayoutex },
@@ -683,6 +687,13 @@ static const Layout layouts[] = {
{ MODKEY|ControlMask|ShiftMask, KEY, toggletag, {.ui = 1 << TAG} },
#endif // COMBO_PATCH / SWAPTAGS_PATCH
+#if TAGOTHERMONITOR_PATCH
+/* TODO: Choose keybindings for TAGOTHERMONITOR_PATCH
+ { MODKEY|Mod4Mask, KEY, tagnextmon, {.ui = 1 << TAG} }, \
+ { MODKEY|Mod4Mask|ShiftMask, KEY, tagprevmon, {.ui = 1 << TAG} }, \
+*/
+#endif // TAGOTHERMONITOR_PATCH
+
#if STACKER_PATCH
#define STACKKEYS(MOD,ACTION) \
{ MOD, XK_j, ACTION##stack, {.i = INC(+1) } }, \