You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
434 B
28 lines
434 B
#!/bin/bash
|
|
|
|
changevol() {
|
|
howmuch=$1
|
|
for i in $(pacmd list-sinks | grep index | sed -e 's/.*index: \(.*\)/\1/g')
|
|
do
|
|
pacmd set-sink-volume $i ${howmuch}%
|
|
done
|
|
for i in $(pacmd list-sink-inputs | grep index | sed -e 's/.*index: \(.*\)/\1/g')
|
|
do
|
|
pactl set-sink-input-volume $i ${howmuch}%
|
|
done
|
|
}
|
|
|
|
case $1 in
|
|
plus)
|
|
changevol +$2
|
|
;;
|
|
minus)
|
|
changevol -$2
|
|
;;
|
|
mute)
|
|
mute
|
|
;;
|
|
*)
|
|
echo "i do nort understand"
|
|
esac
|