FollieHiyuki-dotfiles/home/.local/bin/info/pulse

15 lines
303 B
Plaintext
Raw Normal View History

2021-02-13 11:28:59 -05:00
#!/bin/sh
mute=$(pulsemixer --get-mute)
if [ "$mute" -eq 1 ] || [ "$mute" = "true" ]
then
echo "婢 muted"
else
volume=$(pulsemixer --get-volume)
left=$(echo "$volume" | cut -d' ' -f1)
right=$(echo "$volume" | cut -d' ' -f2)
average=$(((left+right)/2))
echo "墳 $average%"
fi