diff --git a/install.sh b/install.sh index 9c51ed1..cc8cb85 100644 --- a/install.sh +++ b/install.sh @@ -87,12 +87,23 @@ questions=("Do you want to install Kitty terminal or use XTerm" \ "Install XRDP Remote desktop" \ "Install Thunar file manager" \ "Install Google Chrome" \ +"Install SMB/CIFS Storage Client" \ +"Install NFS Storage Client" \ +"Install Ceph Storage Client" \ +"Install Neovim Text Editor" \ +"Install VS Code Editor" \ ) + commands=("sudo apt install -y kitty" \ "sudo apt install -y tlp tlp-rdw" \ "sudo apt install -y xrdp && sudo systemctl restart xrdp.service" \ "sudo apt install -y thunar" \ "cd /tmp/ && wget https://dl.google.com/linux/direct/google-chrome-stable_current_amd64.deb && sudo apt install -y /tmp/google-chrome-stable_current_amd64.deb && rm google-chrome-stable_current_amd64.deb" \ +"sudo apt install -y smbclient" \ +"sudo apt install -y nfs-common" \ +"sudo apt install -y ceph-commen" \ +"sudo apt install -y neovim" \ +"cd /tmp/ && wget -O vscode_amd64.deb 'https://code.visualstudio.com/sha/download?build=stable&os=linux-deb-x64' && sudo apt install -y /tmp/vscode_amd64.deb && rm vscode_amd64.deb && cd ~" \ ) # Array to store install user choices