dwm-blocks-blocks/volume.sh
2023-04-29 12:35:05 -07:00

20 lines
294 B
Bash
Executable File

#!/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