Now the config

This commit is contained in:
Out Of Ideas 2024-02-05 13:00:56 -06:00
parent 53d2926e71
commit 8496d4ef2e

69
Config/labwc/rc.xml Normal file
View 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>