1
0
Fork 0
mirror of https://github.com/davatorium/rofi.git synced 2024-10-27 05:23:18 -04:00
rofi/test/run_switchdialog_test.sh
2015-02-15 21:34:13 +01:00

23 lines
344 B
Bash
Executable file

#!/usr/bin/env bash
# wait till it is up, run rofi with error message
sleep 1 && rofi -show run -display :201 &
RPID=$!
# send enter.
sleep 5;
xdotool key 'shift+slash'
sleep 0.4
xdotool key 'shift+slash'
sleep 0.4
xdotool key 'shift+slash'
sleep 0.4
xdotool key Escape
# Get result, kill xvfb
wait ${RPID}
RETV=$?
sleep 1
exit ${RETV}