diff options
author | Benjamin Franzke <benjaminfranzke@googlemail.com> | 2013-03-11 17:20:23 +0100 |
---|---|---|
committer | Benjamin Franzke <benjaminfranzke@googlemail.com> | 2013-03-11 17:21:20 +0100 |
commit | 648d0be1b5613bb9862785af0a9a76d18fca3587 (patch) | |
tree | a405060a8cd64d36fba87c1a31d98cebb9a31e57 /launch_x11vnc | |
parent | fdf9cbbd6e5da39e8134afed79b2b731c9dd7094 (diff) | |
download | econ-648d0be1b5613bb9862785af0a9a76d18fca3587.tar.gz econ-648d0be1b5613bb9862785af0a9a76d18fca3587.tar.bz2 econ-648d0be1b5613bb9862785af0a9a76d18fca3587.zip |
launch_x11vnc: Do not specify the clip, but force a geometry
Diffstat (limited to 'launch_x11vnc')
-rwxr-xr-x | launch_x11vnc | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/launch_x11vnc b/launch_x11vnc index 8098423..6e6034d 100755 --- a/launch_x11vnc +++ b/launch_x11vnc @@ -1,3 +1,7 @@ #!/bin/sh -exec x11vnc -coe localhost -rfbport 0 -nopw -nocursor -nosel -viewonly -deferupdate none -clip 1024x768+0+0 +# You may invoke this like so: +# ./launch_x11vnc -clip 1024x768+0+0 +# ./launch_x11vnc -clip xinerama1 + +exec x11vnc -coe localhost -rfbport 0 -nopw -nocursor -nosel -viewonly -deferupdate none "$@" -geometry 1024x768 |