dwmbar/modules/volume

22 lines
568 B
Text
Raw Normal View History

2019-10-21 19:09:02 +00:00
#!/bin/bash
# Prints out the volume percentage
VOLUME_ON_ICON=''
VOLUME_MUTED_ICON=''
get_volume(){
active_sink=$(pactl list short sinks | sed -e 's,^\([0-9][0-9]*\)[^0-9].*,\1,' | head -n 1)
curStatus=$(pactl get-sink-mute $active_sink)
volume=$(pactl get-sink-volume $active_sink | tail -n 2 | sed -e 's,.* \([0-9][0-9]*\)%.*,\1,' | head -n 1)
2019-10-21 19:09:02 +00:00
if [ "${curStatus}" = 'Mute: yes' ]
2019-10-21 19:09:02 +00:00
then
2019-10-28 14:20:01 +00:00
echo "$VOLUME_MUTED_ICON $volume%"
2019-10-21 19:09:02 +00:00
else
2019-10-28 14:20:01 +00:00
echo "$VOLUME_ON_ICON $volume%"
2019-10-21 19:09:02 +00:00
fi
}
get_volume