mirror of
https://github.com/davatorium/rofi.git
synced 2024-10-27 05:23:18 -04:00
26 lines
499 B
Bash
Executable file
26 lines
499 B
Bash
Executable file
#!/usr/bin/env bash
|
|
|
|
# wait till it is up, run rofi with error message
|
|
sleep 1;
|
|
echo -e -n "aap\nnoot\nmies" | rofi -dmenu -multi-select > output.txt &
|
|
RPID=$!
|
|
|
|
# send enter.
|
|
sleep 5;
|
|
xdotool key 'Down'
|
|
sleep 0.4
|
|
xdotool key Shift+Return
|
|
xdotool key Shift+Return
|
|
xdotool key Return
|
|
|
|
# Get result, kill xvfb
|
|
wait ${RPID}
|
|
RETV=$?
|
|
OUTPUT=$( tr '\n' ' ' < output.txt )
|
|
if [ "${OUTPUT}" != 'noot mies ' ]
|
|
then
|
|
echo "Got: '${OUTPUT}' expected 'noot mies '"
|
|
exit 1
|
|
fi
|
|
echo ${RETV}
|
|
exit ${RETV}
|