blob: 4910ee0bf194f57e3fb84b9e6038d4bfdcc750d2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
#!/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
# Alternatively start in listen mode: and use econproxy -v localhost
#exec x11vnc -nopw -nocursor -nosel -viewonly -deferupdate none -norc -forever "$@" -geometry 1024x768
|