eww-config/scripts/scroll_volume

10 lines
125 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