added update for vscode installation, steam and

added download and install messages for proton mail and steam
This commit is contained in:
2025-12-10 22:15:04 -08:00
parent 5b3ef0b136
commit 65fb4871f2

View File

@@ -1,6 +1,7 @@
#!/bin/bash #!/bin/bash
ECHO This is a startus script for Ubuntu ECHO This is a startus script for Ubuntu
yes | sudo apt update && sudo apt upgrade && sudo apt install git yes | sudo apt update && sudo apt upgrade && sudo apt install git
yes | sudo apt install wget yes | sudo apt install wget
@@ -8,16 +9,53 @@ yes | sudo apt install wget
###Install Proton Mail and VPN ####### ###Install Proton Mail and VPN #######
#### Mail #### #### Mail ####
echo "Installing Proton Mail"
wget https://proton.me/download/mail/linux/ProtonMail-desktop-beta.deb wget https://proton.me/download/mail/linux/ProtonMail-desktop-beta.deb
echo "Proton Mail downloaded"
echo "Installing Proton Mail"
yes | sudo apt install ./ProtonMail-desktop-beta.deb yes | sudo apt install ./ProtonMail-desktop-beta.deb
rm ProtonMail-desktop-beta.deb
# Clean up
echo "Cleaning up"
#### VPN #### #### VPN ####
yes | sudo apt install proton-vpn-cli yes | sudo apt install proton-vpn-cli
#### Install Discord #### #### Install Discord ####
echo "Installing Discord"
# Download Discord
echo "Downloading Discord"
wget https://dl.discordapp.net/apps/linux/0.0.15/discord-0.0.15.deb wget https://dl.discordapp.net/apps/linux/0.0.15/discord-0.0.15.deb
yes | sudo apt install ./discord-0.0.15.deb yes | sudo apt install ./discord-0.0.15.deb
echo "Discord installed"
# Clean up
echo "Cleaning up"
rm discord-0.0.15.deb
# Download Steam
ECHO "Downloading Steam"
wget https://steamcdn-a.akamaihd.net/client/installer/steam.deb
echo "Steam downloaded"
echo "Installing Steam"
# Install Steam
yes | sudo apt install steam.deb
rm steam.deb
ECHO "Steam installed"
# Install VS Code
ECHO "Installing VS Code"
# Download VS Code
wget -O code-latest.deb 'https://code.visualstudio.com/sha/download?build=stable&os=linux-deb-x64'
# Install VS Code
echo "Installing VS Code"
sudo apt install ./code-latest.deb
ECHO "VS Code installed"
# Clean up
echo "Cleaning up"
rm code-latest.deb
##Open Dashlane website to download the firefox extension
firefox 'https://addons.mozilla.org/en-US/firefox/addon/dashlane/'