config: migrate from amixer to pactl

This commit is contained in:
daniel 2026-04-01 06:49:47 -03:00
parent 7be58fbaba
commit 7b63ab0165
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 = "XF86_AudioRaiseVolume",
.action = "Execute",
.attributes[0] = {
.name = "command",
.value = "amixer sset Master 5%+",
.value = "pactl set-sink-volume @DEFAULT_SINK@ +5%",
},
}, {
.binding = "XF86_AudioMute",
.action = "Execute",
.attributes[0] = {
.name = "command",
.value = "amixer sset Master toggle",
.value = "pactl set-sink-mute @DEFAULT_SINK@ toggle",
},
}, {
.binding = "XF86_MonBrightnessUp",