mirror of
https://github.com/davatorium/rofi.git
synced 2024-11-11 13:50:48 -05:00
27 lines
444 B
Bash
27 lines
444 B
Bash
|
#!/usr/bin/env bash
|
||
|
|
||
|
SP=$(readlink -f "$0")
|
||
|
DIR=$(dirname "$SP")
|
||
|
echo "$DIR/test_script.sh"
|
||
|
# wait till it is up, run rofi with error message
|
||
|
sleep 1;
|
||
|
rofi -modi "custom:$DIR/test_script.sh" -show custom &
|
||
|
RPID=$!
|
||
|
|
||
|
# send enter.
|
||
|
sleep 5;
|
||
|
xdotool key 'z'
|
||
|
sleep 0.4
|
||
|
xdotool key Return
|
||
|
|
||
|
# Get result, kill xvfb
|
||
|
wait ${RPID}
|
||
|
RETV=$?
|
||
|
OUTPUT=$( tr '\n' ' ' < output.txt )
|
||
|
echo ${OUTPUT}
|
||
|
if [ "${OUTPUT}" != 'mies ' ]
|
||
|
then
|
||
|
exit 1
|
||
|
fi
|
||
|
exit ${RETV}
|