aboutsummaryrefslogtreecommitdiff
path: root/.local/bin/toggle-dunst-notifications
blob: 12ad4ab54e650bdd8f10f4d63bdbaec4aeaabe2b (plain)
1
2
3
4
5
6
7
8
9
#!/bin/sh

current_state=$(dunstctl is-paused)

if [ "$current_state" = "false" ]; then
  dunstctl set-paused true
else
  dunstctl set-paused false
fi