Now the config
This commit is contained in:
parent
53d2926e71
commit
8496d4ef2e
1 changed files with 69 additions and 0 deletions
69
Config/labwc/rc.xml
Normal file
69
Config/labwc/rc.xml
Normal file
|
@ -0,0 +1,69 @@
|
|||
<?xml version="1.0"?>
|
||||
|
||||
<labwc_config>
|
||||
|
||||
<core>
|
||||
<gap>10</gap>
|
||||
</core>
|
||||
|
||||
<theme>
|
||||
<name></name>
|
||||
<cornerRadius>8</cornerRadius>
|
||||
<font name="sans" size="10" />
|
||||
</theme>
|
||||
|
||||
<keyboard>
|
||||
<default />
|
||||
<!--
|
||||
Use the foot terminal emulator
|
||||
Ctrl + Alt + t
|
||||
-->
|
||||
<keybind key="C-A-t">
|
||||
<action name="Execute" command="foot" />
|
||||
</keybind>
|
||||
<!-- Bind volume keys to change volume -->
|
||||
<keybind key="XF86_AudioLowerVolume">
|
||||
<action name="Execute" command="amixer sset Master 5%-" />
|
||||
</keybind>
|
||||
<keybind key="XF86_AudioRaiseVolume">
|
||||
<action name="Execute" command="amixer sset Master 5%+" />
|
||||
</keybind>
|
||||
<keybind key="XF86_AudioMute">
|
||||
<action name="Execute" command="amixer sset Master toggle" />
|
||||
</keybind>
|
||||
<!-- Bind brightness keys to change volume -->
|
||||
<keybind key="XF86_MonBrightnessUp">
|
||||
<action name="Execute" command="brightnessctl set +10%" />
|
||||
</keybind>
|
||||
<keybind key="XF86_MonBrightnessDown">
|
||||
<action name="Execute" command="brightnessctl set 10%-" />
|
||||
</keybind>
|
||||
<!-- Unbind Alt + Direction keys -->
|
||||
<keybind key="A-Left">
|
||||
<action name="None" />
|
||||
</keybind>
|
||||
<keybind key="A-Right">
|
||||
<action name="None" />
|
||||
</keybind>
|
||||
<keybind key="A-Up">
|
||||
<action name="None" />
|
||||
</keybind>
|
||||
<keybind key="A-Down">
|
||||
<action name="None" />
|
||||
</keybind>
|
||||
</keyboard>
|
||||
|
||||
<mouse>
|
||||
<default />
|
||||
<!-- Do not show a custom menu on desktop click -->
|
||||
<context name="Root">
|
||||
<mousebind button="Right" action="Press">
|
||||
<action name="None" />
|
||||
</mousebind>
|
||||
<mousebind button="Left" action="Press">
|
||||
<action name="None" />
|
||||
</mousebind>
|
||||
</context>
|
||||
</mouse>
|
||||
|
||||
</labwc_config>
|
Loading…
Reference in a new issue