This repository has been archived on 2026-01-04. You can view files and clone it, but cannot push or open issues or pull requests.
Files
dotfiles-inist/polybar/scripts/dunst.sh
2023-10-09 14:35:45 +02:00

14 lines
249 B
Bash
Executable File

#!/bin/bash
status=$(dunstctl history | jq '.data[0] | length' || echo '?')
# todo clear
if [ "$status" = '?' ]; then
echo "$status"
elif [ "$status" -gt 0 ]; then
echo "%{F#4B8783}%{F-} $status"
else
echo "%{F#4B8783}%{F-}"
fi