aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJozanLeClerc <bousset.rudy@gmail.com>2022-04-18 18:04:53 +0200
committerJozanLeClerc <bousset.rudy@gmail.com>2022-04-18 18:04:53 +0200
commit5d87f3fc0fca920075f997eba92d3f8a2801e6cb (patch)
tree65599769c9902d9ff1ebbbc43e46795ba209241e
parentfix (diff)
downloaddwm-5d87f3fc0fca920075f997eba92d3f8a2801e6cb.tar.gz
dwm-5d87f3fc0fca920075f997eba92d3f8a2801e6cb.tar.bz2
dwm-5d87f3fc0fca920075f997eba92d3f8a2801e6cb.tar.xz
dwm-5d87f3fc0fca920075f997eba92d3f8a2801e6cb.tar.zst
dwm-5d87f3fc0fca920075f997eba92d3f8a2801e6cb.zip
fix
-rw-r--r--config.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/config.h b/config.h
index 3c5ad12..4140ca9 100644
--- a/config.h
+++ b/config.h
@@ -67,8 +67,8 @@ static const Layout layouts[] = {
#define TAGKEYS(KEY,TAG) \
{ MODKEY, KEY, view, {.ui = 1 << TAG} }, \
{ MODKEY|ShiftMask, KEY, tag, {.ui = 1 << TAG} }, \
- { MODKEY|ControlMask, KEY, tagnextmon, {.ui = 1 << TAG} }, \
- { MODKEY|ControlMask|ShiftMask, KEY, tagprevmon, {.ui = 1 << TAG} }, \
+ { MODKEY|ControlMask, KEY, tagprevmon, {.ui = 1 << TAG} }, \
+ { MODKEY|ControlMask|ShiftMask, KEY, tagnextmon, {.ui = 1 << TAG} }, \
{ MODKEY|METAKEY, KEY, toggletag, {.ui = 1 << TAG} }, \
{ MODKEY|METAKEY|ControlMask, KEY, toggleview, {.ui = 1 << TAG} },