mirror of
https://github.com/edeproject/ede.git
synced 2023-08-10 21:13:03 +03:00
11 lines
246 B
Bash
11 lines
246 B
Bash
|
#!/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
|