Archive of an old project to create tools for 8-bit development.
This has been superseded
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
#!/bin/bash |
|
Xvfb :99 -ac -screen 0 "$XVFB_RES" -nolisten tcp $XVFB_ARGS & |
|
XVFB_PROC=$! |
|
sleep 1 |
|
export DISPLAY=:99 |
|
"$@" |
|
kill $XVFB_PROC
|
|
|