1
0
Fork 0
mirror of https://github.com/davatorium/rofi.git synced 2025-01-27 15:25:24 -05:00
rofi/test/run_run_test.sh

23 lines
257 B
Bash
Raw Normal View History

2014-08-29 17:26:47 +02:00
#!/usr/bin/env bash
2015-02-15 21:34:13 +01:00
rofi -show run &
2014-08-29 17:26:47 +02:00
RPID=$!
# send enter.
sleep 5;
xdotool key 't'
2014-08-29 17:26:47 +02:00
sleep 0.4
xdotool key 'r'
2014-08-29 17:26:47 +02:00
sleep 0.4
xdotool key 'u'
2014-08-29 17:26:47 +02:00
sleep 0.4
xdotool key 'e'
2014-08-29 17:26:47 +02:00
sleep 0.4
xdotool key Return
2014-08-29 17:26:47 +02:00
# Get result, kill xvfb
wait ${RPID}
RETV=$?
exit ${RETV}