summaryrefslogtreecommitdiff
path: root/.config/waybar/getvolume.sh
blob: 03c28fb9c017cd00a4f88ce88910ccf476885a6e (plain)
1
2
3
4
5
6
7
8
9
10
11
#!/bin/sh

sink=$(pactl list sinks |sed '/^Sink #./!d;s/^Sink #\(.\)/\1/' |tail -n1)

if test "Mute: yes" = "$(pactl get-sink-mute $sink)"
then
    echo 
    exit
fi

echo  $(pactl get-sink-volume $sink |sed -E '/balance/d;s/.*([0-9 ][0-9 ][0-9]%).*/\1/' |tr -d " ")