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