mirror of
https://github.com/avinal/dotfiles.git
synced 2026-07-03 23:20:07 +05:30
feat: major update to all configs
- move older config to archive Signed-off-by: Avinal Kumar <avinal.xlvii@gmail.com>
This commit is contained in:
Executable
+17
@@ -0,0 +1,17 @@
|
||||
#!/bin/bash
|
||||
|
||||
COUNT=$(dunstctl count waiting)
|
||||
status=""
|
||||
class=""
|
||||
tooltip="Notifications are "
|
||||
if dunstctl is-paused | grep -q "false" ; then
|
||||
status="NOT"
|
||||
tooltip+="active"
|
||||
else
|
||||
status="DND"
|
||||
class="dnd"
|
||||
tooltip+="paused"
|
||||
fi
|
||||
|
||||
if [ "$COUNT" != 0 ]; then status+=":$COUNT"; fi
|
||||
printf '{"text":"%s","tooltip":"%s","class":"%s"}' "$status" "$tooltip" "$class" | jq --unbuffered --compact-output
|
||||
Reference in New Issue
Block a user