This repository has been archived on 2022-06-22. You can view files and clone it, but cannot push or open issues or pull requests.
Plasma-in-Arch-in-Docker/start.sh
2020-05-13 20:34:15 -07:00

18 lines
453 B
Bash
Executable file

#!/bin/bash
umask 0077 # use safe default permissions
mkdir -p "$HOME/.vnc" # create config directory
chmod go-rwx "$HOME/.vnc" # enforce safe permissions
# Start TigerVNC
if [ ! -z $VNC_PASSWD ]; then
vncpasswd -f <<< "$VNC_PASSWD" > "$HOME/.vnc/passwd"
vncserver -rfbport 5900
else
vncpasswd -f <<< "" > "$HOME/.vnc/passwd"
vncserver -rfbport 5900 -SecurityTypes None
fi
# Start noVNC
/noVNC-${noVNC_version}/utils/launch.sh