mirror of
https://github.com/SinTan1729/random.git
synced 2025-02-05 06:02:36 -06:00
13 lines
231 B
Bash
Executable file
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
|