blob: 940d0749066f21eb0d1946d624841c743899d11b (
plain)
1
2
3
4
5
6
7
8
|
#!/bin/sh
# You may invoke this like so:
# ./launch_x11vnc -clip 1024x768+0+0
# ./launch_x11vnc -clip xinerama1
export X11VNC_REVERSE_CONNECTION_NO_AUTH=1
exec x11vnc -coe localhost -rfbport 0 -nopw -nocursor -nosel -viewonly -deferupdate none -norc "$@" -geometry 1024x768
|