summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrew Guschin <saintruler@gmail.com>2021-04-18 14:41:26 +0400
committerAndrew Guschin <saintruler@gmail.com>2021-04-18 14:41:26 +0400
commita9cc23d70e09a2ddd583465b018c0e96239c873f (patch)
tree63052229c5ce676ab5b96e8771385b2b9e7cf73e
parent4d50ed9a9c17e2d9105f4e04b5b9f8409539cdb7 (diff)
Changed rotating and moving mask to control
-rw-r--r--config.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/config.h b/config.h
index 9b06cf4..9787344 100644
--- a/config.h
+++ b/config.h
@@ -34,10 +34,10 @@ static Key keys[] = { \
{ MODKEY, XK_Return, spawn, { 0 } },
{ MODKEY, XK_t, spawn, SETPROP("_TABBED_SELECT_TAB") },
- { MODKEY|ShiftMask, XK_l, rotate, { .i = +1 } },
- { MODKEY|ShiftMask, XK_h, rotate, { .i = -1 } },
- { MODKEY|ShiftMask, XK_j, movetab, { .i = -1 } },
- { MODKEY|ShiftMask, XK_k, movetab, { .i = +1 } },
+ { ControlMask|ShiftMask, XK_l, rotate, { .i = +1 } },
+ { ControlMask|ShiftMask, XK_h, rotate, { .i = -1 } },
+ { ControlMask|ShiftMask, XK_j, movetab, { .i = -1 } },
+ { ControlMask|ShiftMask, XK_k, movetab, { .i = +1 } },
{ MODKEY, XK_Tab, rotate, { .i = 0 } },
{ MODKEY, XK_1, move, { .i = 0 } },