summaryrefslogtreecommitdiff
path: root/adjust-audio
blob: 25243ff13ee7f155bbf2d5c9c20225b22fc9977c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
#!/bin/sh

if [ "$1" == "m" ] 
then
    $(pulsemixer --set-volume 0)
elif [ "$1" == "+" ] 
then
    $(pulsemixer --change-volume "$2")
else
    $(pulsemixer --change-volume -"$2")
fi

exit 0