1
0
Fork 0
mirror of https://github.com/davatorium/rofi.git synced 2024-11-03 04:23:42 -05:00
rofi/test/run_switchdialog_test.sh

24 lines
340 B
Bash
Raw Normal View History

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