mirror of
https://github.com/avinal/dotfiles.git
synced 2026-07-03 23:20:07 +05:30
7 lines
206 B
Bash
7 lines
206 B
Bash
|
|
#!/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
|