rofi/test/run_switchdialog_test.sh

24 lines
340 B
Bash
Raw Normal View History

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