aboutsummaryrefslogtreecommitdiff
path: root/.local/bin/toggle-dunst-notifications
diff options
context:
space:
mode:
authorkj_sh6042025-11-10 08:37:05 -0500
committerkj_sh6042025-11-10 08:37:05 -0500
commit0812ea28c4add18ef4ee9d8f21fabcae84dd351f (patch)
treea9ed9470ac5f82098b7548cce4220114b6afa448 /.local/bin/toggle-dunst-notifications
parentac5e3fb377492af21ceb5234b5c7b5d3f12e0b6a (diff)
revert-to: 77949a068755ee72d7b5eaf5570cd2cd34a8d222 with changes
Diffstat (limited to '.local/bin/toggle-dunst-notifications')
-rwxr-xr-x.local/bin/toggle-dunst-notifications9
1 files changed, 0 insertions, 9 deletions
diff --git a/.local/bin/toggle-dunst-notifications b/.local/bin/toggle-dunst-notifications
deleted file mode 100755
index 12ad4ab..0000000
--- a/.local/bin/toggle-dunst-notifications
+++ /dev/null
@@ -1,9 +0,0 @@
-#!/bin/sh
-
-current_state=$(dunstctl is-paused)
-
-if [ "$current_state" = "false" ]; then
- dunstctl set-paused true
-else
- dunstctl set-paused false
-fi