mirror of
https://github.com/davatorium/rofi.git
synced 2024-10-27 05:23:18 -04:00
17 lines
189 B
Bash
17 lines
189 B
Bash
|
#!/usr/bin/env bash
|
||
|
|
||
|
cat /dev/null | rofi -dmenu &
|
||
|
RPID=$!
|
||
|
sleep 4
|
||
|
xdotool key Return
|
||
|
# Get result, kill xvfb
|
||
|
wait ${RPID}
|
||
|
RETV=$?
|
||
|
|
||
|
if [ ${RETV} -eq 1 ]
|
||
|
then
|
||
|
exit 0
|
||
|
else
|
||
|
exit 1
|
||
|
fi
|