infrastructure/hosts/thalassa/aoife/home/eww/scripts/volume.sh
2024-04-02 17:54:13 +02:00

15 lines
266 B
Bash
Executable file

#!/bin/sh
per="???"
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}\"}"