1
0
Fork 0
mirror of https://github.com/davatorium/rofi.git synced 2024-10-27 05:23:18 -04:00
rofi/test/run_dmenu_empty.sh
2019-02-02 12:35:37 +01:00

16 lines
185 B
Bash
Executable file

#!/usr/bin/env bash
rofi -dmenu & < /dev/null
RPID=$!
sleep 4
xdotool key Return
# Get result, kill xvfb
wait ${RPID}
RETV=$?
if [ ${RETV} -eq 0 ]
then
exit 0
else
exit 1
fi