eww-config/scripts/scroll_volume
2024-03-30 09:30:52 -05:00

10 lines
123 B
Bash
Executable File

#!/bin/sh
if [ "$1" = up ];then
pamixer -i 5
elif [ "$1" = down ];then
pamixer -d 5
else
pamixer --set-volume $1
fi