24 lines
529 B
Bash
Executable File
24 lines
529 B
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 ####
|
|
wget https://proton.me/download/mail/linux/ProtonMail-desktop-beta.deb
|
|
yes | sudo apt install ./ProtonMail-desktop-beta.deb
|
|
|
|
#### VPN ####
|
|
yes | sudo apt install proton-vpn-cli
|
|
|
|
|
|
|
|
#### Install 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
|
|
|
|
|