diff --git a/ubuntu_setup.sh b/ubuntu_setup.sh index 49bf228..52e444e 100755 --- a/ubuntu_setup.sh +++ b/ubuntu_setup.sh @@ -1,6 +1,7 @@ #!/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 install wget @@ -8,16 +9,53 @@ yes | sudo apt install wget ###Install Proton Mail and VPN ####### #### Mail #### +echo "Installing Proton Mail" 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 - +rm ProtonMail-desktop-beta.deb +# Clean up +echo "Cleaning up" #### VPN #### yes | sudo apt install proton-vpn-cli #### 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 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/' +