blob: 7f22c36f25f77805845f0a6c16989823fff3d4f3 (
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 "$@" -geometry 1024x768
|