dotfiles/_suckless/_scripts/sb-volume

11 lines
412 B
Plaintext
Raw Normal View History

2021-06-19 15:50:04 +02:00
#!/bin/sh
2021-07-21 21:36:28 +02:00
if [ "$1" != "mic" ]; then
vol="$(pamixer --get-volume)"
[ $(echo $vol | wc -c) -lt 4 ] && svol=" ${vol}%" || svol="${vol}%"
[ $(pamixer --get-mute) = true ] && echo "🔇 ^c#161616^^b#fd4285^mute^d^" || echo "🔊 ${svol}"
else
device=$(pamixer --list-sources | awk '/Raven/ {print $1}')
[ $(pamixer --source $device --get-mute) = true ] && echo "^c#161616^^b#fd4285^MM^d^" || echo "on"
fi