2022-12-20 00:15:21 +00:00
|
|
|
#!/bin/bash
|
|
|
|
# Prints the current volume or 🔇 if muted.
|
2023-06-24 21:25:21 +00:00
|
|
|
[ "$(pamixer --get-mute)" = true ] && echo " " && 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
|
2023-06-24 21:25:21 +00:00
|
|
|
echo " " && exit
|
2023-05-26 06:32:03 +00:00
|
|
|
fi
|
|
|
|
echo -e " $icon $vol% "
|