scripts/waybar/waybar-audio.sh

10 lines
134 B
Bash
Executable File

#!/bin/bash
RUNNING=$(pgrep pavucontrol)
if [ "$RUNNING" ]; then
kill $RUNNING 2&>1 /dev/null
else
/usr/bin/pavucontrol
fi