mirror of
https://github.com/davatorium/rofi.git
synced 2024-10-27 05:23:18 -04:00
229bb6931b
* delete an invalid memmove in textbox
13 lines
231 B
Bash
Executable file
13 lines
231 B
Bash
Executable file
#!/usr/bin/env bash
|
|
|
|
# wait till it is up, run rofi with error message
|
|
sleep 1 && rofi -e "Printing error message" &
|
|
RPID=$!
|
|
|
|
# send enter.
|
|
sleep 5 && xdotool key Return
|
|
|
|
# Get result, kill xvfb
|
|
wait ${RPID}
|
|
RETV=$?
|
|
exit ${RETV}
|