summaryrefslogtreecommitdiff
path: root/src/config.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/config.h')
-rw-r--r--src/config.h7
1 files changed, 6 insertions, 1 deletions
diff --git a/src/config.h b/src/config.h
index 7c42764..3c0f0bc 100644
--- a/src/config.h
+++ b/src/config.h
@@ -13,6 +13,11 @@ const Binding binds[] = {
{Mod4Mask, XK_j, {.fn = focus_next}, TYPE_FUNC},
{Mod4Mask, XK_k, {.fn = focus_prev}, TYPE_FUNC},
+ {Mod4Mask, XK_comma, {.fn = focus_prev_mon}, TYPE_FUNC},
+ {Mod4Mask, XK_period, {.fn = focus_next_mon}, TYPE_FUNC},
+ {Mod4Mask | ShiftMask, XK_comma, {.fn = move_prev_mon}, TYPE_FUNC},
+ {Mod4Mask | ShiftMask, XK_period, {.fn = move_next_mon}, TYPE_FUNC},
+
{Mod4Mask | ShiftMask, XK_j, {.fn = move_master_next}, TYPE_FUNC},
{Mod4Mask | ShiftMask, XK_k, {.fn = move_master_prev}, TYPE_FUNC},
@@ -53,4 +58,4 @@ const Binding binds[] = {
{Mod4Mask | ShiftMask, XK_8, {.ws = 7}, TYPE_MWKSP},
{Mod4Mask, XK_9, {.ws = 8}, TYPE_CWKSP},
{Mod4Mask | ShiftMask, XK_9, {.ws = 8}, TYPE_MWKSP},
-}; \ No newline at end of file
+};