eww-config/scripts/scroll_volume

10 lines
125 B
Plaintext
Raw Permalink Normal View History

2024-03-30 14:30:52 +00:00
#!/bin/sh
if [ "$1" = up ];then
pamixer -i 5
elif [ "$1" = down ];then
pamixer -d 5
else
2024-03-30 21:04:44 +00:00
pamixer --set-volume "$1"
2024-03-30 14:30:52 +00:00
fi