1
0
Fork 0
mirror of https://github.com/davatorium/rofi.git synced 2024-11-11 13:50:48 -05:00
rofi/test/run_dmenu_empty.sh

17 lines
187 B
Bash
Raw Normal View History

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