nicks-nix-config/modules/ewwbar/eww-config/scripts/volume

13 lines
260 B
Text
Raw Normal View History

2023-10-30 18:12:43 -07:00
#!/bin/sh
case $1 in
"*") command="";;
2023-10-30 21:17:26 -07:00
"up") command="change +4%";;
"down") command="change -4%";;
2023-10-30 18:12:43 -07:00
"toggle") command="mute toggle";;
esac
[ -n "$command" ] && pw-volume $command
2023-10-30 21:17:26 -07:00
$2 update volume=$(pw-volume status | jq '.percentage // 10')