diff options
Diffstat (limited to 'src/config.h')
| -rw-r--r-- | src/config.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/config.h b/src/config.h index 7c42764..b67b771 100644 --- a/src/config.h +++ b/src/config.h @@ -13,6 +13,9 @@ 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_monitor}, TYPE_FUNC}, + {Mod4Mask, XK_period, {.fn = focus_next_monitor}, TYPE_FUNC}, + {Mod4Mask | ShiftMask, XK_j, {.fn = move_master_next}, TYPE_FUNC}, {Mod4Mask | ShiftMask, XK_k, {.fn = move_master_prev}, TYPE_FUNC}, @@ -53,4 +56,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 +}; |
