Add colors

This commit is contained in:
flyingscorpio@pinebook-pro 2020-03-03 15:02:25 +01:00
parent dabe8c8da8
commit df425204af
2 changed files with 14 additions and 0 deletions

View file

@ -3,6 +3,12 @@
## This script clones all the different repos ## This script clones all the different repos
RED=$(tput setaf 1)
GREEN=$(tput setaf 2)
ORANGE=$(tput setaf 3)
NC=$(tput sgr0)
################## ##################
# REPOS ON LIME2 # # REPOS ON LIME2 #
################## ##################

View file

@ -3,6 +3,12 @@
## Script to automate the setting up of my working environment. ## Script to automate the setting up of my working environment.
RED=$(tput setaf 1)
GREEN=$(tput setaf 2)
ORANGE=$(tput setaf 3)
NC=$(tput sgr0)
############# #############
# DEFINE OS # # DEFINE OS #
############# #############
@ -121,6 +127,8 @@ echo "Cloning projects..."
# Configure ProtonVPN # # Configure ProtonVPN #
####################### #######################
echo "Configuring ProtonVPN..."
if sudo protonvpn init; then if sudo protonvpn init; then
sudo protonvpn c --cc NL sudo protonvpn c --cc NL
else else