diff options
Diffstat (limited to 'x11vnc/misc/Xdummy')
-rwxr-xr-x | x11vnc/misc/Xdummy | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/x11vnc/misc/Xdummy b/x11vnc/misc/Xdummy index 452eb4d..03fc44b 100755 --- a/x11vnc/misc/Xdummy +++ b/x11vnc/misc/Xdummy @@ -196,6 +196,9 @@ Options: config file. Use this to have a smaller geometry than the one in the system config file. + The option -geometry can be used instead of -geom; + x11vnc calls Xdummy and Xvfb this way. + -depth n Use pixel color depth n (e.g. 8, 16, or 24). This makes sure the X config file has a Screen.Display subsection of this depth. Note this option is @@ -432,7 +435,9 @@ do "-uid") XDUMMY_UID="$2"; shift export XDUMMY_UID ;; - "-geom") geom="$2"; shift + "-geom") geom="$2"; shift + ;; + "-geometry") geom="$2"; shift ;; "-depth") depth="$2"; args="$args -depth $2"; shift |