12 lines
211 B
Bash
Executable File
12 lines
211 B
Bash
Executable File
#!/bin/bash
|
|
pausa=$(dunstctl is-paused)
|
|
if [ $pausa == 'false' ]
|
|
then
|
|
dunstctl close-all
|
|
dunstctl set-paused true
|
|
else
|
|
dunstctl close-all
|
|
dunstctl set-paused false
|
|
notify-send "Notificaciones activadas"
|
|
fi
|