12 lines
190 B
Bash
Executable File
12 lines
190 B
Bash
Executable File
#!/bin/bash
|
|
|
|
default_loc="$HOME/.cache/pactl-default-source"
|
|
|
|
if [ ! -f "$default_loc" ] ; then
|
|
set-default-source
|
|
fi
|
|
|
|
default=$(<"$default_loc")
|
|
|
|
pactl set-source-volume "$default" +5%
|