12 lines
188 B
Bash
Executable File
12 lines
188 B
Bash
Executable File
#!/bin/bash
|
|
|
|
default_loc="$HOME/.cache/pactl-default-sink"
|
|
|
|
if [ ! -f "$default_loc" ] ; then
|
|
set-default-sink
|
|
fi
|
|
|
|
default=$(cat "$default_loc")
|
|
|
|
pactl set-sink-mute "$default" toggle
|