summaryrefslogtreecommitdiff
path: root/scripts/old/dunst-toggle
diff options
context:
space:
mode:
Diffstat (limited to '')
-rwxr-xr-xscripts/old/dunst-toggle14
1 files changed, 0 insertions, 14 deletions
diff --git a/scripts/old/dunst-toggle b/scripts/old/dunst-toggle
deleted file mode 100755
index 2de2343..0000000
--- a/scripts/old/dunst-toggle
+++ /dev/null
@@ -1,14 +0,0 @@
1#!/bin/sh
2
3# Toggle "do not disturbe" mode with dunst
4# Requires: dunst, notify-send
5
6if [ "$(dunstctl is-paused)" = "false" ]; then
7 notify-send -t 3000 "Notifications: OFF" "Notifications will be hidden"
8 sleep 3
9 dunstctl set-paused true
10else
11 dunstctl set-paused false
12 notify-send -t 3000 "Notifications: ON" "Notifications reactivated"
13fi
14

Generated with cgit - Back to sebastiano.tronto.net