Files
colorshell/eww/scripts/notification-history.sh
T
2024-12-07 16:42:49 -03:00

11 lines
237 B
Bash

#!/usr/bin/env bash
prev_history=$(dunstctl history)
while true; do
if ! [[ $prev_history == $(dunstctl history) ]]; then
prev_history=$(dunstctl history)
echo "$(echo $prev_history | jq -c '.data.[]')"
fi
done