i3: support for workspace_layout option

(cherry picked from commit 15bca92b2c)
This commit is contained in:
dsx 2018-11-30 18:19:03 -05:00 committed by Robert Helgesson
parent 4a574ca544
commit 0686063f62
No known key found for this signature in database
GPG key ID: 36BDAA14C2797E89

View file

@ -400,6 +400,16 @@ let
example = "Mod4"; example = "Mod4";
}; };
workspaceLayout = mkOption {
type = types.enum [ "default" "stacked" "tabbed" ];
default = "default";
example = "tabbed";
description = ''
The mode in which new containers on workspace level will
start.
'';
};
keybindings = mkOption { keybindings = mkOption {
type = types.attrs; type = types.attrs;
default = { default = {
@ -734,6 +744,7 @@ let
focus_follows_mouse ${if focus.followMouse then "yes" else "no"} focus_follows_mouse ${if focus.followMouse then "yes" else "no"}
focus_on_window_activation ${focus.newWindow} focus_on_window_activation ${focus.newWindow}
mouse_warping ${if focus.mouseWarping then "output" else "none"} mouse_warping ${if focus.mouseWarping then "output" else "none"}
workspace_layout ${workspaceLayout}
client.focused ${colorSetStr colors.focused} client.focused ${colorSetStr colors.focused}
client.focused_inactive ${colorSetStr colors.focusedInactive} client.focused_inactive ${colorSetStr colors.focusedInactive}