eww-config/scripts/scroll_volume

10 lines
123 B
Plaintext
Raw 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
pamixer --set-volume $1
fi