diff --git a/install.sh b/install.sh index 420f3fc..eae2dad 100644 --- a/install.sh +++ b/install.sh @@ -112,12 +112,14 @@ PROGRAMS=$(whiptail --title "The Install selection" --checklist --separate-outpu "3" "Install XRDP Remote desktop" OFF \ "4" "Install Thunar file manager" ON \ "5" "Install Google Chrome Webbrowser" ON \ -"6" "Install Neovim Text Editor" ON \ -"7" "Install VS Code Editor" OFF \ -"8" "Install SMB/CIFS Storage Client" ON \ -"9" "Install NFS Storage Client" OFF \ -"10" "Install Ceph Storage Client" OFF \ -"11" "Install Firefox Webbrowser" OFF 3>&1 1>&2 2>&3) +"6" "Install Firefox Webbrowser" OFF \ +"7" "Install Neovim Text Editor" ON \ +"8" "Install VS Code Editor" OFF \ +"9" "Install SMB/CIFS Storage Client" ON \ +"10" "Install NFS Storage Client" OFF \ +"11" "Install Ceph Storage Client" OFF \ +"12" "Install Discord" OFF \ +"13" "Install Steam" OFF 3>&1 1>&2 2>&3) # See the actual installation below - Install selection choose what to install End @@ -1462,24 +1464,29 @@ do 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 ;; "6") - sudo apt install -y neovim - ;; - "7") - 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 ~ - ;; - "8") - sudo apt install -y smbclient - ;; - "9") - sudo apt install -y nfs-common - ;; - "10") - sudo apt install -y ceph-commen - ;; - "11") sudo apt install -y firefox-esr ;; - + "7") + sudo apt install -y neovim + ;; + "8") + 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 ~ + ;; + "9") + sudo apt install -y smbclient + ;; + "10") + sudo apt install -y nfs-common + ;; + "11") + sudo apt install -y ceph-commen + ;; + "12") + cd /tmp/ && wget -O discord.deb https://discord.com/api/download?platform=linux&format=deb && sudo apt install -y /tmp/discord.deb && rm discord.deb && cd ~ + ;; + "13") + cd /tmp/ && wget https://cdn.akamai.steamstatic.com/client/installer/steam.deb && sudo apt install -y /tmp/steam.deb && rm steam.deb && cd ~ + ;; esac done