config: remove the underline from the XF86 keys

to match the actual key names in xkbcommon-keysyms.h
This commit is contained in:
daniel 2026-04-08 05:37:35 -03:00 committed by GitHub
parent 90c38e2681
commit afaed4af63
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
3 changed files with 15 additions and 15 deletions

View file

@ -217,11 +217,11 @@ If you have not created an rc.xml config file, default bindings will be:
| `super`-`mouse-right` | resize window | `super`-`mouse-right` | resize window
| `super`-`arrow` | resize window to fill half the output | `super`-`arrow` | resize window to fill half the output
| `alt`-`space` | show the window menu | `alt`-`space` | show the window menu
| `XF86_AudioLowerVolume` | amixer sset Master 5%- | `XF86AudioLowerVolume` | amixer sset Master 5%-
| `XF86_AudioRaiseVolume` | amixer sset Master 5%+ | `XF86AudioRaiseVolume` | amixer sset Master 5%+
| `XF86_AudioMute` | amixer sset Master toggle | `XF86AudioMute` | amixer sset Master toggle
| `XF86_MonBrightnessUp` | brightnessctl set +10% | `XF86MonBrightnessUp` | brightnessctl set +10%
| `XF86_MonBrightnessDown` | brightnessctl set 10%- | `XF86MonBrightnessDown` | brightnessctl set 10%-
A root-menu can be opened by clicking on the desktop. A root-menu can be opened by clicking on the desktop.

View file

@ -291,19 +291,19 @@
<keybind key="A-Space"> <keybind key="A-Space">
<action name="ShowMenu" menu="client-menu" atCursor="no" /> <action name="ShowMenu" menu="client-menu" atCursor="no" />
</keybind> </keybind>
<keybind key="XF86_AudioLowerVolume"> <keybind key="XF86AudioLowerVolume">
<action name="Execute" command="amixer sset Master 5%-" /> <action name="Execute" command="amixer sset Master 5%-" />
</keybind> </keybind>
<keybind key="XF86_AudioRaiseVolume"> <keybind key="XF86AudioRaiseVolume">
<action name="Execute" command="amixer sset Master 5%+" /> <action name="Execute" command="amixer sset Master 5%+" />
</keybind> </keybind>
<keybind key="XF86_AudioMute"> <keybind key="XF86AudioMute">
<action name="Execute" command="amixer sset Master toggle" /> <action name="Execute" command="amixer sset Master toggle" />
</keybind> </keybind>
<keybind key="XF86_MonBrightnessUp"> <keybind key="XF86MonBrightnessUp">
<action name="Execute" command="brightnessctl set +10%" /> <action name="Execute" command="brightnessctl set +10%" />
</keybind> </keybind>
<keybind key="XF86_MonBrightnessDown"> <keybind key="XF86MonBrightnessDown">
<action name="Execute" command="brightnessctl set 10%-" /> <action name="Execute" command="brightnessctl set 10%-" />
</keybind> </keybind>
<!-- SnapToRegion via W-Numpad --> <!-- SnapToRegion via W-Numpad -->

View file

@ -84,35 +84,35 @@ static struct key_combos {
.value = "no", .value = "no",
}, },
}, { }, {
.binding = "XF86_AudioLowerVolume", .binding = "XF86AudioLowerVolume",
.action = "Execute", .action = "Execute",
.attributes[0] = { .attributes[0] = {
.name = "command", .name = "command",
.value = "amixer sset Master 5%-", .value = "amixer sset Master 5%-",
}, },
}, { }, {
.binding = "XF86_AudioRaiseVolume", .binding = "XF86AudioRaiseVolume",
.action = "Execute", .action = "Execute",
.attributes[0] = { .attributes[0] = {
.name = "command", .name = "command",
.value = "amixer sset Master 5%+", .value = "amixer sset Master 5%+",
}, },
}, { }, {
.binding = "XF86_AudioMute", .binding = "XF86AudioMute",
.action = "Execute", .action = "Execute",
.attributes[0] = { .attributes[0] = {
.name = "command", .name = "command",
.value = "amixer sset Master toggle", .value = "amixer sset Master toggle",
}, },
}, { }, {
.binding = "XF86_MonBrightnessUp", .binding = "XF86MonBrightnessUp",
.action = "Execute", .action = "Execute",
.attributes[0] = { .attributes[0] = {
.name = "command", .name = "command",
.value = "brightnessctl set +10%", .value = "brightnessctl set +10%",
}, },
}, { }, {
.binding = "XF86_MonBrightnessDown", .binding = "XF86MonBrightnessDown",
.action = "Execute", .action = "Execute",
.attributes[0] = { .attributes[0] = {
.name = "command", .name = "command",