From 80b4c81b618d4e75b301ac1dd5adfb47f91deca7 Mon Sep 17 00:00:00 2001 From: Syndamia Date: Thu, 4 Aug 2022 17:41:27 +0300 Subject: Moved a lot of stuff to a new folder called .a --- scripts/dunst-toggler-applet.sh | 26 -------------------------- 1 file changed, 26 deletions(-) delete mode 100755 scripts/dunst-toggler-applet.sh (limited to 'scripts/dunst-toggler-applet.sh') diff --git a/scripts/dunst-toggler-applet.sh b/scripts/dunst-toggler-applet.sh deleted file mode 100755 index e9f253e..0000000 --- a/scripts/dunst-toggler-applet.sh +++ /dev/null @@ -1,26 +0,0 @@ -#!/bin/bash - -function update { - while :; do - curr_status=$(dunstctl is-paused) - - if [[ "$curr_status" != "$prev_status" ]]; then - prev_status=$curr_status - - if [[ "$curr_status" == "true" ]]; then - echo icon:/usr/share/icons/tabler-icon-bell-off.png - echo tooltip:Notifications OFF - else - echo icon:/usr/share/icons/tabler-icon-bell.png - echo tooltip:Notifications ON - fi - fi - - sleep 0.2 - done -} - -update | \ -yad --notification \ - --listen \ - --command="dunstctl set-paused toggle" -- cgit v1.2.3