wayland.windowManager.labwc.rc

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

Type
open submodule of (XML value)
Default
{ }
Example
{
  theme = {
    name = "nord";
    cornerRadius = 8;
    font = {
      "@name" = "FiraCode";
      "@size" = "11";
    };
  };
  keyboard = {
    default = true;
    keybind = [
      # <keybind key="W-Return"><action name="Execute" command="foot"/></keybind>
      {
        "@key" = "W-Return";
        action = {
          "@name" = "Execute";
          "@command" = "foot";
        };
      }
      # <keybind key="W-Esc"><action name="Execute" command="loot"/></keybind>
      {
        "@key" = "W-Esc";
        action = {
          "@name" = "Execute";
          "@command" = "loot";
        };
      }
    ];
  };
}
Declared
<home-manager/modules/services/window-managers/labwc>