From 2eb1f07e6031a84650e93c5292a16ca20fa22d61 Mon Sep 17 00:00:00 2001 From: kj_sh604 Date: Sun, 9 Nov 2025 00:40:17 -0500 Subject: feat: return back to awesomeWM --- .local/bin/toggle-dunst-notifications | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100755 .local/bin/toggle-dunst-notifications (limited to '.local/bin/toggle-dunst-notifications') diff --git a/.local/bin/toggle-dunst-notifications b/.local/bin/toggle-dunst-notifications new file mode 100755 index 0000000..12ad4ab --- /dev/null +++ b/.local/bin/toggle-dunst-notifications @@ -0,0 +1,9 @@ +#!/bin/sh + +current_state=$(dunstctl is-paused) + +if [ "$current_state" = "false" ]; then + dunstctl set-paused true +else + dunstctl set-paused false +fi -- cgit v1.2.3