Post History
My keyboard has keys for mute, volume up, volume down. In i3wm, I used to have these bound with: bindsym XF86AudioRaiseVolume exec --no-startup-id pulsemixer --change-volume +10 --max-volume 100 ...
#1: Initial revision
How do I make media keys work with PipeWire?
My keyboard has keys for mute, volume up, volume down. In i3wm, I used to have these bound with: ``` bindsym XF86AudioRaiseVolume exec --no-startup-id pulsemixer --change-volume +10 --max-volume 100 bindsym XF86AudioLowerVolume exec --no-startup-id pulsemixer --change-volume -10 --max-volume 100 bindsym XF86AudioMute exec --no-startup-id pulsemixer --toggle-mute ``` It was working in PulseAudio, but after switching to PipeWire, they don't. Can it be fixed?