dotfiles/eggs/waybar/bar/scripts/notification_status.sh
Katzenkralle 4e9be09c10 Init
2025-05-10 19:23:48 +02:00

11 lines
393 B
Bash
Executable File

#!/usr/bin/env bash
if [ "$(dunstctl is-paused)" = "false" ]; then
echo "{\"text\": \"󰂜\"}"
#echo "{\"text\": \"󱏨\", \"alt\": \"\", \"tooltip\": \"\", \"class\": \"notification\", \"percentage\": 0 }"
exit 0
else
echo "{\"text\": \"󱏨\"}"
#echo "{\"text\": \"󰂜\", \"alt\": \"\", \"tooltip\": \"\", \"class\": \"notification\", \"percentage\": 0 }"
exit 0
fi