diff options
author | runge <runge@karlrunge.com> | 2010-01-02 21:22:56 -0500 |
---|---|---|
committer | runge <runge@karlrunge.com> | 2010-01-02 21:22:56 -0500 |
commit | b6d5983560f1229ec39392d7d5489737cc1c4b64 (patch) | |
tree | c596f7959df45e8fab8c1522876fb4365feccd35 /x11vnc/misc/Xdummy | |
parent | 69cd710dd2e2962420803f6629f74368e889a5ee (diff) | |
download | libtdevnc-b6d5983560f1229ec39392d7d5489737cc1c4b64.tar.gz libtdevnc-b6d5983560f1229ec39392d7d5489737cc1c4b64.zip |
x11vnc: small tweaks to Xdummy, rx11vnc*. Apply SMALL_FOOTPRINT to -appshare text. Copyright year change.
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 |