- #!/bin/bash
- if [ -x "$(command -v notify-send)" ]; then
- for i in {1..20}
- do
- notify-send "Notification $i" "This is some test details for notification $i that can be descriptive of what the notification is about."
- done
- else
- echo 'notify-send package is not install. Please install and try again.'
- fi
|