This commit is contained in:
daniel 2026-04-14 23:54:02 +07:00 committed by GitHub
commit 0105624647
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
4 changed files with 10 additions and 10 deletions

View file

@ -88,21 +88,21 @@ static struct key_combos {
.action = "Execute",
.attributes[0] = {
.name = "command",
.value = "amixer sset Master 5%-",
.value = "pactl set-sink-volume @DEFAULT_SINK@ -5%",
},
}, {
.binding = "XF86AudioRaiseVolume",
.action = "Execute",
.attributes[0] = {
.name = "command",
.value = "amixer sset Master 5%+",
.value = "pactl set-sink-volume @DEFAULT_SINK@ +5%",
},
}, {
.binding = "XF86AudioMute",
.action = "Execute",
.attributes[0] = {
.name = "command",
.value = "amixer sset Master toggle",
.value = "pactl set-sink-mute @DEFAULT_SINK@ toggle",
},
}, {
.binding = "XF86MonBrightnessUp",