mirror of
https://github.com/SinTan1729/random.git
synced 2025-04-04 02:18:04 -05:00
13 lines
231 B
Bash
13 lines
231 B
Bash
#!/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
|