4 lines
175 B
Bash
Executable file
4 lines
175 B
Bash
Executable file
#!/bin/bash
|
|
|
|
SINK="$(pactl list sinks short | grep RUNNING | grep -v 'easyeffects' | cut -d ' ' -f 1)"
|
|
pactl set-sink-mute "$SINK" false ; pactl set-sink-volume "$SINK" "$1%"
|