Files
setup_script/ubuntu_setup.sh
nick 65fb4871f2 added update for vscode installation, steam and
added download and install messages for proton mail and steam
2025-12-10 22:15:04 -08:00

62 lines
1.5 KiB
Bash
Executable File

#!/bin/bash
ECHO This is a startus script for Ubuntu
yes | sudo apt update && sudo apt upgrade && sudo apt install git
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/'