rofi/test/run_dmenu_custom_test.sh

39 lines
538 B
Bash
Raw Normal View History

2014-08-29 15:31:46 +00:00
#!/usr/bin/env bash
2016-07-18 22:16:49 +00:00
echo -e -n "aap\nnoot\nmies" | rofi -width -30 -dmenu -multi-select > output.txt &
2014-08-29 15:31:46 +00:00
RPID=$!
# send enter.
sleep 5;
xdotool key 'c'
2014-08-29 15:31:46 +00:00
sleep 0.2
xdotool key 'o'
2014-08-29 15:31:46 +00:00
sleep 0.2
xdotool key 'f'
2014-08-29 15:31:46 +00:00
sleep 0.2
xdotool key 'f'
2014-08-29 15:31:46 +00:00
sleep 0.2
xdotool key 'e'
2014-08-29 15:31:46 +00:00
sleep 0.2
xdotool key 'e'
2014-08-29 15:31:46 +00:00
sleep 0.2
xdotool key Return
2014-08-29 15:31:46 +00:00
2014-08-29 15:31:46 +00:00
# Get result, kill xvfb
wait ${RPID}
RETV=$?
OUTPUT=$(cat output.txt | tr '\n' ' ')
if [ "${OUTPUT}" != 'coffee ' ]
2014-08-29 15:31:46 +00:00
then
exit 1
fi
OUTPUT=$(rofi -dump-xresources)
if [ -z "${OUTPUT}" ]
then
exit 1
fi
2014-08-29 15:31:46 +00:00
exit ${RETV}