commit ac111df503e7ef6f4eb4c6bad05152cab3deb6de parent c8ab6a9f0c3df8ec1766f91348eee99a9730288c Author: Antoine Amarilli <a3nm@a3nm.net> Date: Tue, 27 Feb 2018 10:35:35 +0100 set volume handling Diffstat:
pavol | | | 4 | +++- |
1 file changed, 3 insertions(+), 1 deletion(-)
diff --git a/pavol b/pavol @@ -1,4 +1,6 @@ #!/bin/bash -pactl set-sink-volume `pagas | cut -d ' ' -f1` "$1" +pagas | cut -d ' ' -f1 | while read s; do + pactl set-sink-volume $s "$1" +done