labwc/docs/rc.xml
Johan Malm 2e4f931469 rcxml: allow <theme><font> without place="" attribute
The construct below will set the font for all supported places. Currently
that's only ActiveWindow, but is likely to include InactiveWindow,
MenuHeader, MenuItem and OnScreenDisplay at some point.

<theme>
  <font>
    <name></name>
    <size></size>
  </font>
</theme>
2021-07-19 20:46:32 +01:00

37 lines
1,003 B
XML

<?xml version="1.0"?>
<labwc_config>
<core>
<decoration>server</decoration>
</core>
<theme>
<name></name>
<cornerRadius>8</cornerRadius>
<font><name>Sans</name><size>12</size></font>
</theme>
<focus>
<followMouse>no</followMouse>
<raiseOnFocus>no</raiseOnFocus>
</focus>
<!--
Keybind actions are specified in more detail in labwc-actions(5)
The following keybind modifiers are supported:
W - window/super/logo
A - alt
C - ctrl
S - shift
-->
<keyboard>
<keybind key="A-Escape"><action name="Exit" /></keybind>
<keybind key="A-Tab"><action name="NextWindow" /></keybind>
<keybind key="A-Return"><action name="Execute"><command>sakura</command></action></keybind>
<keybind key="A-F3"><action name="Execute"><command>bemenu-run</command></action></keybind>
<keybind key="A-F4"><action name="Close" /></keybind>
<keybind key="W-a"><action name="ToggleMaximize" /></keybind>
</keyboard>
</labwc_config>