scripts

Various scripts for UNIX-like systems
git clone https://git.tronto.net/scripts
Download | Log | Files | Refs | README

dunst-toggle (346B)


      1 #!/bin/sh
      2 
      3 # Toggle "do not disturbe" mode with dunst
      4 # Requires: dunst, notify-send
      5 
      6 if [ "$(dunstctl is-paused)" = "false" ]; then
      7 	notify-send -t 3000 "Notifications: OFF" "Notifications will be hidden"
      8 	sleep 3
      9 	dunstctl set-paused true
     10 else
     11 	dunstctl set-paused false
     12 	notify-send -t 3000 "Notifications: ON" "Notifications reactivated"
     13 fi
     14