1
0
Fork 0
mirror of https://github.com/davatorium/rofi.git synced 2024-10-20 05:22:08 -04:00
rofi/test/run_issue_256.sh
2015-10-31 18:04:55 +01:00

22 lines
271 B
Bash
Executable file

#!/usr/bin/env bash
rofi -show window -modi window &
RPID=$!
# send enter.
sleep 5;
xdotool key 't'
sleep 0.4
xdotool key 'r'
sleep 0.4
xdotool key 'u'
sleep 0.4
xdotool key 'e'
sleep 0.4
xdotool key Return
# Get result, kill xvfb
wait ${RPID}
RETV=$?
exit ${RETV}