From 2508e0744169c19bb15bb41e07c5bffb2b480c0d Mon Sep 17 00:00:00 2001 From: Daniil Tsivinsky Date: Tue, 7 Dec 2021 22:25:12 +0300 Subject: [PATCH] Delete dnd script --- bin/dnd | 8 -------- 1 file changed, 8 deletions(-) delete mode 100755 bin/dnd diff --git a/bin/dnd b/bin/dnd deleted file mode 100755 index c5482b4..0000000 --- a/bin/dnd +++ /dev/null @@ -1,8 +0,0 @@ -#! /bin/bash -# Copied from https://github.com/Alexays/Waybar/wiki/Module:-Custom#dunst - -COUNT=$(dunstctl count waiting) -ENABLED= -DISABLED= -if [ $COUNT != 0 ]; then DISABLED=" $COUNT"; fi -if dunstctl is-paused | grep -q "false" ; then echo $ENABLED; else echo $DISABLED; fi