nicks-nix-config/modules/ewwbar/eww-config/scripts/volume
2024-08-10 16:12:42 -07:00

12 lines
261 B
Bash
Executable file

#!/bin/sh
case $1 in
"*") command="";;
"up") command="change +4%";;
"down") command="change -4%";;
"toggle") command="mute toggle";;
esac
[ -n "$command" ] && pw-volume $command
$2 update volume=$(pw-volume status | jaq '.percentage // 10')