sisyphus/scripts/dnd.sh

23 lines
531 B
Bash
Raw Normal View History

2022-06-02 11:47:06 +02:00
#!/usr/bin/env bash
# Script to toggle Do not disturb mode for mako and dunst
2022-06-02 11:47:06 +02:00
# Permanent memory
saved_state=0
# Toggle
if [[ ${saved_state} -eq 0 ]] ; then
2022-06-02 11:47:06 +02:00
~/.scripts/notify.sh 'Hiding notifications'
sleep 5
2022-06-02 11:47:06 +02:00
makoctl set-mode do-not-disturb
dunstctl set-paused true
2022-06-02 11:47:06 +02:00
else
makoctl set-mode default
dunstctl set-paused false
2022-06-02 11:47:06 +02:00
~/.scripts/notify.sh 'Showing notifications'
fi
# Update status in file
new_state=$(( (${saved_state} + 1) % 2 ))
sed -i "s/^saved_state=.*$/saved_state=${new_state}/" "${0}"
2022-06-02 11:47:06 +02:00