diff options
| author | Rick Console <rick@rickconsole.com> | 2025-06-05 19:10:15 -0400 |
|---|---|---|
| committer | Rick Console <rick@rickconsole.com> | 2025-06-05 19:10:15 -0400 |
| commit | 787416e6a3cead68472619a42385c58b23b51d81 (patch) | |
| tree | 7cad4e55bfaad08ee5c753da510c3859f48ec2f4 /src/config.h | |
| parent | 443a8ca4581b3e93a2d4a96f4acf7a4f9c5afa18 (diff) | |
added monitor switching
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 +}; |
