summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrew Cady <d@jerkface.net>2022-02-24 12:20:15 -0500
committerAndrew Cady <d@jerkface.net>2022-02-24 12:20:15 -0500
commit1175ca0d70c2e0e828869ea38414bb4454178689 (patch)
tree25362c01063c6ff3e7105a522601454ca732e55b
parent44e506b3b4c1c3356f3f8c84eafe6b4e41b265e7 (diff)
switch to tiger vnc viewer
-rwxr-xr-xdot/local/bin/xvnc7
1 files changed, 6 insertions, 1 deletions
diff --git a/dot/local/bin/xvnc b/dot/local/bin/xvnc
index 7eba3f2..3265a38 100755
--- a/dot/local/bin/xvnc
+++ b/dot/local/bin/xvnc
@@ -23,7 +23,12 @@ direct_connection()
23 "x11vnc -noxrecord -nopw -ncache -ncache_cr -localhost -display ${remote_display}" & 23 "x11vnc -noxrecord -nopw -ncache -ncache_cr -localhost -display ${remote_display}" &
24 pid=$! 24 pid=$!
25 sleep 1 # surrender race 25 sleep 1 # surrender race
26 xvncviewer -encodings "copyrect tight zrle hextile" localhost:0 26 if [ "$NOTIGER" ]
27 then
28 xtightvncviewer -encodings "copyrect tight zrle hextile" localhost:0
29 else
30 xtigervncviewer localhost:0
31 fi
27 kill $pid 32 kill $pid
28} 33}
29 34