1
0
Fork 0
mirror of https://github.com/SinTan1729/random.git synced 2025-02-05 06:02:36 -06:00
random/DNDToggle.sh

14 lines
231 B
Bash
Raw Permalink Normal View History

2025-01-16 14:36:10 -06:00
#!/usr/bin/env bash
# Toggles DND
dnd=$(pgrep DND.py)
if [[ $dnd ]];
then
kill $dnd
2025-01-16 15:46:01 -06:00
pactl set-sink-mute @DEFAULT_SINK@ false
2025-01-16 14:36:10 -06:00
else
/home/sintan/.local/bin/personal/DND.py &
2025-01-16 15:46:01 -06:00
pactl set-sink-mute @DEFAULT_SINK@ true
2025-01-16 14:36:10 -06:00
fi