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

24 lines
340 B
Bash
Raw Normal View History

2014-08-29 16:24:39 +02:00
#!/usr/bin/env bash
# wait till it is up, run rofi with error message
2016-01-07 21:27:20 +01:00
sleep 1 && rofi -show run -modi run &
2014-08-29 16:24:39 +02:00
RPID=$!
# send enter.
sleep 5;
xdotool key 'shift+slash'
2014-08-29 16:24:39 +02:00
sleep 0.4
xdotool key 'shift+slash'
2014-08-29 16:24:39 +02:00
sleep 0.4
xdotool key 'shift+slash'
2014-08-29 16:24:39 +02:00
sleep 0.4
xdotool key Escape
2014-08-29 16:24:39 +02:00
# Get result, kill xvfb
wait ${RPID}
RETV=$?
2014-08-29 16:39:11 +02:00
sleep 1
2014-08-29 16:24:39 +02:00
exit ${RETV}