8 lines
115 B
Bash
Executable File
8 lines
115 B
Bash
Executable File
#!/usr/bin/env bash
|
|
set -e
|
|
|
|
# Start Xvfb
|
|
Xvfb -ac -screen scrn 1280x2000x24 :99.0 &
|
|
export DISPLAY=:99.0
|
|
|
|
exec "$@" |