From 4f9ffdf2db6bbfd33dc47ac907fbfb2a68a33332 Mon Sep 17 00:00:00 2001 From: flying-scorpio Date: Tue, 7 Jan 2020 12:37:37 +0100 Subject: [PATCH] Add alias for protonvpn --- setup_cockpit.sh | 26 ++++++++++++++------------ 1 file changed, 14 insertions(+), 12 deletions(-) mode change 100644 => 100755 setup_cockpit.sh diff --git a/setup_cockpit.sh b/setup_cockpit.sh old mode 100644 new mode 100755 index 3e5403d..dee4f76 --- a/setup_cockpit.sh +++ b/setup_cockpit.sh @@ -2,6 +2,7 @@ # Script to automate the setting up of my working environment. # First make sure the keepass Database.kdbx is in a folder. +# Open keepass in a separate window. The script will prompt for passwords. #################### @@ -11,6 +12,19 @@ echo "alias ll='ls -lArth'" >> ~/.bash_aliases echo "alias lime2connect='ssh flyingscorpio@2px.info.tm'" >> ~/.bash_aliases echo "alias gccstd='gcc -O2 -Wall -Wextra -Wno-unused-result -std=gnu99'" >> ~/.bash_aliases +echo "alias protonvpn='sudo protonvpn'" >> ~/.bash_aliases + + +##################### +# Install ProtonVPN # +##################### + +sudo apt install -y openvpn dialog python3-pip python3-setuptools +sudo pip3 install protonvpn-cli +sudo protonvpn init + +# Connect to ProtonVPN fastest server +sudo protonvpn c -f #################### @@ -33,18 +47,6 @@ git config --global alias.st "status" git config --global alias.br "branch" -##################### -# Install ProtonVPN # -##################### - -sudo apt install -y openvpn dialog python3-pip python3-setuptools -sudo pip3 install protonvpn-cli -sudo protonvpn init - -# Connect to ProtonVPN fastest server -sudo protonvpn c -f - - ######################## # Install SublimeText3 # ########################