mirror of
https://github.com/zoriya/noctalia-shell.git
synced 2026-08-06 06:16:29 +00:00
11 lines
235 B
Bash
Executable File
11 lines
235 B
Bash
Executable File
#!/bin/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!" |