aboutsummaryrefslogtreecommitdiff
path: root/src/config.zig
diff options
context:
space:
mode:
authorIsaac Freund <ifreund@ifreund.xyz>2020-04-15 19:16:55 +0200
committerIsaac Freund <ifreund@ifreund.xyz>2020-04-15 19:16:55 +0200
commit8a326541f6728749dd24b786960dadc2148f0f43 (patch)
treed8b6c16bba96442018730ad8839287f82aa8f9b2 /src/config.zig
parentf33b1fa3e830b677fa5c2f797513b09775984562 (diff)
downloadriver-8a326541f6728749dd24b786960dadc2148f0f43.tar.gz
river-8a326541f6728749dd24b786960dadc2148f0f43.tar.xz
Add keybinds to cycle between outputs
Diffstat (limited to 'src/config.zig')
-rw-r--r--src/config.zig4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/config.zig b/src/config.zig
index cbbdcea..b7be734 100644
--- a/src/config.zig
+++ b/src/config.zig
@@ -96,5 +96,9 @@ pub const Config = struct {
// Mod+Shift+0 to tag focused view with all tags
try self.keybinds.append(Keybind{ .keysym = c.XKB_KEY_0, .modifiers = mod | c.WLR_MODIFIER_SHIFT, .command = command.setFocusedViewTags, .arg = .{ .uint = 0xFFFFFFFF } });
+
+ // Mod+Period and Mod+Comma to focus the next/previous output
+ try self.keybinds.append(Keybind{ .keysym = c.XKB_KEY_period, .modifiers = mod, .command = command.focusNextOutput, .arg = .{ .none = {} } });
+ try self.keybinds.append(Keybind{ .keysym = c.XKB_KEY_comma, .modifiers = mod, .command = command.focusPrevOutput, .arg = .{ .none = {} } });
}
};