MyNixOS website logo
option

wayland.windowManager.hyprland.submaps

Attribute set of Hyprland submaps.

See https://wiki.hypr.land/Configuring/Binds#submaps to learn about submaps.

Declarations
Type
attribute set of (submodule)
Default
{ }
Example
{
  # submap to change window focus with vim keys
  move_focus = {
    settings = {
      bind = [
        ", h, movefocus, l"
        ", j, movefocus, d"
        ", k, movefocus, u"
        ", l, movefocus, r"

        ", escape, submap, reset"
      ];
    };
  };

  other_submap = {
    settings = {
      # ...
    };
  };
}