#!/bin/bash echo "Updating Your System" sudo apt update echo "Installing the required packages in order for the script to work properly" sudo apt install -y wget novnc websockify tigervnc-standalone-server tar openbox kdialog zenity tilix apt-utils kdevelop cd ~/ git clone https://github.com/gitxpresso/linux-novnc ~/linux-novnc read -p "do you want to add a password to the novnc server? (yes/no) " yesorno if [[ "$yesorno" = "yes" ]]; then vncpasswd tigervncserver -SecurityTypes none --I-KNOW-THIS-IS-INSECURE -xstartup /usr/bin/openbox -geometry 1366x768 -localhost no :0 websockify -D --web=/usr/share/novnc/ --cert=~/linux-novnc/novnc.pem 6080 localhost:5900 export DISPLAY=:0 kdevelop elif [[ "$yesorno" = "no" ]]; then tigervncserver -SecurityTypes none --I-KNOW-THIS-IS-INSECURE -xstartup /usr/bin/openbox -geometry 1366x768 -localhost no :0 websockify -D --web=/usr/share/novnc/ --cert=~/linux-novnc/novnc.pem 6080 localhost:5900 export DISPLAY=:0 kdevelop else