From: Silvio Rhatto Date: Sun, 28 Jun 2020 16:57:36 +0000 (-0300) Subject: VNC: instructions X-Git-Url: https://gitweb.fluxo.info/?a=commitdiff_plain;h=3311f24e9ccb74944e2a74e15aeaaeed9edef81f;p=scripts.git VNC: instructions --- diff --git a/vnc b/vnc index 2b190f7..94ce3d6 100755 --- a/vnc +++ b/vnc @@ -15,13 +15,39 @@ REMOTEPORT="${3:-5901}" # This is probably a bug on xtigervncviewer VIEWER_OPTS="-AcceptClipboard=off -SendClipboard=off -SetPrimary=off -SendPrimary=off" +function usage { + echo "usage: $BASENAME [localport] [remoteport]" + cat <:~/.vnc/passwd ~/.vnc/.passwd # copy the secret + $BASENAME # use our magic script to do everything else + +EOF + + exit 1 +} + +# Usage +if [ "$1" == "--help" ]; then + usage +fi + # Check if [ -z "$SERVER" ]; then if [ -h "$HOME/.vnc/default.passwd" ]; then SERVER="$(basename `readlink $HOME/.vnc/default.passwd` .passwd)" else - echo "usage: $BASENAME [localport] [remoteport]" - exit 1 + usage fi fi