MyNixOS website logo
option

xsession.windowManager.i3.config.modes

An attribute set that defines binding modes and keybindings inside them

Only basic keybinding is supported (bindsym keycomb action), for more advanced setup use 'i3.extraConfig'.

Declarations
Type
attribute set of attribute set of string
Default
{
  resize = {
    Down = "resize grow height 10 px or 10 ppt";
    Escape = "mode default";
    Left = "resize shrink width 10 px or 10 ppt";
    Return = "mode default";
    Right = "resize grow width 10 px or 10 ppt";
    Up = "resize shrink height 10 px or 10 ppt";
  };
}