MyNixOS website logo
option

wayland.windowManager.labwc.rc

Config to configure labwc options. Use "@attributes" for attributes. See https://labwc.github.io/labwc-config.5.html for configuration.

Declarations
Type
XML value
Default
{ }
Example
{
  theme = {
    name = "nord";
    cornerRadius = 8;
    font = {
      "@name" = "FiraCode";
      "@size" = "11";
    };
  };
  keyboard = {
    default = true;
    keybind = [
      # <keybind key="W-Return"><action command="foot" name="Execute"></action></keybind>
      {
        "@key" = "W-Return";
        action = {
          "@name" = "Execute";
          "@command" = "foot";
        };
      }
      # <keybind key="W-Esc"><action command="loot" name="Execute"></action></keybind>
      {
        "@key" = "W-Esc";
        action = {
          "@name" = "Execute";
          "@command" = "loot";
        };
      }
    ];
  };
}
Sign in to create a configuration using this setting.