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

12 lines
142 B
Bash
Raw 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
else
/home/sintan/.local/bin/personal/DND.py &
fi