infrastructure/hosts/thalassa/null/home/eww/scripts/volume.sh
2024-01-03 17:01:29 +01:00

15 lines
287 B
Bash
Executable file

#!/bin/sh
per="$(pamixer --get-volume)"
if pamixer --get-mute | rg -q true; then
icon="婢"
elif [ "$per" -gt 66 ]; then
icon="墳" # high
elif [ "$per" -gt 33 ]; then
icon="奔" # med
else
icon="奄" #low
fi
printf "{\"icon\": \"${icon}\", \"percent\": \"${per}\"}"