aboutsummaryrefslogtreecommitdiff
path: root/eww/scripts/getvol
blob: 4e4275d8dccc127e93f3579af6625a859f707526 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#!/bin/sh

if command -v pamixer &>/dev/null; then
    if [ true == $(pamixer --get-mute) ]; then
        echo 0
        exit
    else
        pamixer --get-volume
    fi
else
    amixer -D pulse sget Master | awk -F '[^0-9]+' '/Left:/{print $3}'
fi