ede/ede-notify-daemon/test-notifications.sh
2012-05-09 15:56:06 +00:00

11 lines
246 B
Bash
Executable File

#!/bin/sh
# simple script that will fire set of events so daemon window positioning (and other) can be tested
N_EVENTS=5
notify_cmd="notify-send --expire-time=10000"
for((i=0;i<$N_EVENTS;i++)) do
$notify_cmd "title $i" "this is content"
done