noctalia-shell/Bin/test-notifications.sh
Erin van der Veen 95a646b3a9 Change shebangs to the more portable /usr/bin/env bash
This resolves issues on systems where bash is not in /bin/bash (e.g.
NixOS).
2025-08-20 10:17:41 +02:00

11 lines
243 B
Bash
Executable file

#!/usr/bin/env bash
echo "Sending 8 test notifications..."
# Send 8 notifications with numbers
for i in {1..8}; do
notify-send "Notification $i" "This is test notification number $i of 8"
sleep 1
done
echo "All notifications sent!"