1
0
Fork 0
mirror of https://github.com/SinTan1729/random.git synced 2025-02-05 14:12:38 -06:00
random/DNDToggle.sh
2025-01-16 15:46:01 -06:00

13 lines
231 B
Bash
Executable file

#!/usr/bin/env bash
# Toggles DND
dnd=$(pgrep DND.py)
if [[ $dnd ]];
then
kill $dnd
pactl set-sink-mute @DEFAULT_SINK@ false
else
/home/sintan/.local/bin/personal/DND.py &
pactl set-sink-mute @DEFAULT_SINK@ true
fi