mirror of
https://github.com/SinTan1729/random.git
synced 2025-02-05 14:12:38 -06:00
12 lines
142 B
Bash
12 lines
142 B
Bash
|
#!/usr/bin/env bash
|
||
|
|
||
|
# Toggles DND
|
||
|
|
||
|
dnd=$(pgrep DND.py)
|
||
|
if [[ $dnd ]];
|
||
|
then
|
||
|
kill $dnd
|
||
|
else
|
||
|
/home/sintan/.local/bin/personal/DND.py &
|
||
|
fi
|