mirror of
https://github.com/avinal/dotfiles.git
synced 2026-07-04 15:30:08 +05:30
c946a5f4cf
Signed-off-by: Avinal Kumar <avinal.xlvii@gmail.com>
7 lines
206 B
Bash
Executable File
7 lines
206 B
Bash
Executable File
#!/bin/bash
|
|
|
|
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 |