summaryrefslogtreecommitdiff
path: root/dot
diff options
context:
space:
mode:
authorAndrew Cady <d@jerkface.net>2019-10-13 20:44:12 -0400
committerAndrew Cady <d@jerkface.net>2019-10-13 21:10:38 -0400
commitefda41ee6705200aa2dfd76542a55de53f0f0a33 (patch)
tree748121cde116c803b68ef315aafcb6775e9334fb /dot
parentb8c8de6d5105966695ae5ec64f0aae35f5473672 (diff)
xvnc bugfix
Diffstat (limited to 'dot')
-rwxr-xr-xdot/local/bin/xvnc16
1 files changed, 10 insertions, 6 deletions
diff --git a/dot/local/bin/xvnc b/dot/local/bin/xvnc
index 7c0159c..9378254 100755
--- a/dot/local/bin/xvnc
+++ b/dot/local/bin/xvnc
@@ -5,7 +5,7 @@ direct_connection()
5 port=$((5900 + local_display)) 5 port=$((5900 + local_display))
6 ssh -o ControlPath=none -n \ 6 ssh -o ControlPath=none -n \
7 -L $port:localhost:$port \ 7 -L $port:localhost:$port \
8 ${remote_port+-p $remote_port} \ 8 ${remote_port:+-p $remote_port} \
9 "$remote_host" \ 9 "$remote_host" \
10 "x11vnc -nopw -ncache -ncache_cr -localhost -display ${remote_display}" & 10 "x11vnc -nopw -ncache -ncache_cr -localhost -display ${remote_display}" &
11 pid=$! 11 pid=$!
@@ -26,7 +26,7 @@ reverse_connection()
26 pid=$! 26 pid=$!
27 quietly ssh -o ControlPath=none \ 27 quietly ssh -o ControlPath=none \
28 -R $port:localhost:$port \ 28 -R $port:localhost:$port \
29 ${remote_port+-p $remote_port} \ 29 ${remote_port:+-p $remote_port} \
30 "$remote_host" \ 30 "$remote_host" \
31 "x11vnc -q -nopw -localhost -display ${remote_display} -coe localhost:$port -rfbport 0" 31 "x11vnc -q -nopw -localhost -display ${remote_display} -coe localhost:$port -rfbport 0"
32 kill $pid 32 kill $pid
@@ -41,7 +41,7 @@ share_display()
41 -o ExitOnForwardFailure=yes \ 41 -o ExitOnForwardFailure=yes \
42 -f \ 42 -f \
43 -L $port:localhost:$port \ 43 -L $port:localhost:$port \
44 ${remote_port+-p $remote_port} \ 44 ${remote_port:+-p $remote_port} \
45 "$remote_host" \ 45 "$remote_host" \
46 "fuser -vk $port/tcp; DISPLAY=${remote_display} xvncviewer -fullscreen -encodings 'copyrect tight zrle hextile' -listen" 46 "fuser -vk $port/tcp; DISPLAY=${remote_display} xvncviewer -fullscreen -encodings 'copyrect tight zrle hextile' -listen"
47 trap "fuser -vk $port/tcp" INT 47 trap "fuser -vk $port/tcp" INT
@@ -59,9 +59,13 @@ fi
59 59
60remote_host=${1:-blackboard} 60remote_host=${1:-blackboard}
61 61
62remote_port=${remote_host##*:} 62case "$remote_host" in
63remote_host=${remote_host%:*} 63 *:*) remote_port=${remote_host##*:}
64 64 remote_host=${remote_host%:*}
65 ;;
66 *) remote_port=
67 ;;
68esac
65remote_display=${2:-:0} 69remote_display=${2:-:0}
66local_display=${3:-:0} 70local_display=${3:-:0}
67 71