about summary refs log tree commit diff stats
path: root/home-manager/config/yambar/scripts/amixer-monitor
blob: 9e75acface11d2635f523f2a1d2b15f7e7a0c9da (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
#!/bin/sh
# An improved amixer script that actually detects volume beyond 100%


SLEEPTIME=1


while true; do

    volume=$(pactl get-sink-volume 0 | awk 'BEGIN { FS="/"} {print $2 }' | tr -d "%" | tr -d ' ')
 
    if [ "$volume" -eq 0 ]; then
        echo "muted|bool|true"

    else
        # Read sink volume in percentages
        echo "volume|string|$volume"
        echo "muted|bool|false"
    fi

    echo ""
    sleep "$SLEEPTIME"

done