From a2508fb0a9fc1b06a38a3eb368e3fa2ef3e3d336 Mon Sep 17 00:00:00 2001 From: Michel Jung Date: Wed, 4 Dec 2019 10:32:39 +0100 Subject: [PATCH] Recommend `xvfb-run -d` instead of `xvfb-run -a` Fixes #270 --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index a2eee34b..fafdb704 100644 --- a/README.md +++ b/README.md @@ -167,7 +167,7 @@ script that runs the orca AppImage executable using the `xvfb-run` command. ``` #!/bin/bash -xvfb-run -a /path/to/orca-X.Y.Z-x86_64.AppImage "$@" +xvfb-run -d /path/to/orca-X.Y.Z-x86_64.AppImage "$@" ``` Name this shell script `orca` and place it somewhere on your system `PATH`.