neodotfiles/user/.config/suckless/dwmblocks/scripts/block_volume

15 lines
342 B
Text
Raw Normal View History

2022-12-20 00:15:21 +00:00
#!/bin/bash
# Prints the current volume or 🔇 if muted.
2023-05-26 06:32:03 +00:00
[ "$(pamixer --get-mute)" = true ] && echo "󰕿x" && exit
2022-12-20 00:15:21 +00:00
vol="$(pamixer --get-volume)"
2023-05-26 06:32:03 +00:00
if [ "$vol" -gt "50" ]; then
icon="󰕾"
elif [ "$vol" -gt "10" ]; then
icon="󰖀"
elif [ "$vol" -gt "0" ]; then
icon="󰕿"
else
echo "󰕿x" && exit
fi
echo -e " $icon $vol% "