diff options
-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 |