Applet name and maintainer
sound150@claudiux @claudiux
What would you like to see?
I have this script which unmutes my input+output plus set volume levels
#!/bin/bash
pactl set-sink-mute @DEFAULT_SINK@ 0
pactl set-sink-volume @DEFAULT_SINK@ 18%
pactl set-source-mute @DEFAULT_SOURCE@ 0
pactl set-source-volume @DEFAULT_SOURCE@ 100%
It uses the pactl command to that (something used to manipulate pulseaudio, but also works with pipewire). It would be cool to have this applet detect the pactl command and show the OSD on screen accordingly when the volume changes. Currently, volume is changed, but no OSD is shown.
Thanks.