mirror of
https://github.com/servo/servo.git
synced 2025-07-12 01:43:43 +01:00
4 lines
165 B
Bash
4 lines
165 B
Bash
function xvfb_start() {
|
|
GEOMETRY="$SCREEN_WIDTH""x""$SCREEN_HEIGHT""x""$SCREEN_DEPTH"
|
|
xvfb-run --server-args="-screen 0 $GEOMETRY -ac +extension RANDR" $@
|
|
}
|