dwm-blocks-blocks/volume.sh

20 lines
294 B
Bash
Raw Normal View History

2023-04-29 19:35:05 +00:00
#!/bin/sh
muted="$(pamixer --get-mute)"
if [ $muted != "false" ]
then
printf "ﱝ "
else
volume="$(pamixer --get-volume)"
if [ $volume -gt 30 ]
then
printf "$volume%%\n"
elif [ $volume -gt 10 ]
then
printf "奔 $volume%%\n"
else
printf "$volume%%\n"
fi
fi