Files
hyprland/waybar/scripts/dunst.sh
2025-04-27 08:51:03 -04:00

10 lines
211 B
Bash
Executable File

#!/usr/bin/env bash
isPaused=$(dunstctl is-paused)
notificationCount=$(dunstctl count history)
if [[ "$isPaused" == "true" ]]; then
echo "󰂛 $notificationCount"
else
echo "󰂚 $notificationCount"
fi