infrastructure/nixos/hosts/thalassa/null/home/eww/scripts/volume.sh
2022-09-26 17:17:27 +02: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}\"}"