diff --git a/SetupCockpit/clone_projects.sh b/SetupCockpit/clone_projects.sh index 9532bfd..1caa404 100644 --- a/SetupCockpit/clone_projects.sh +++ b/SetupCockpit/clone_projects.sh @@ -30,7 +30,7 @@ else echo "Cloning new VimConf..." cd && git clone ssh://flyingscorpio@2px.info.tm/~/repos/VimConf.git fi -cd ~/VimConf && /bin/bash ~/VimConf/update.sh +cd ~/VimConf && /bin/bash ~/VimConf/update.sh "$OS" echo "Setting up Lessons..." if [ -e ~/Lessons ]; then diff --git a/SetupCockpit/separator.sh b/SetupCockpit/separator.sh index 92938ab..d92fe71 100644 --- a/SetupCockpit/separator.sh +++ b/SetupCockpit/separator.sh @@ -3,16 +3,6 @@ ## This script is used to visually separate commands in the other scripts -RED=$(tput setaf 1) -GREEN=$(tput setaf 2) -ORANGE=$(tput setaf 3) -NC=$(tput sgr0) - -export RED -export GREEN -export ORANGE -export NC - if [ $? -eq 0 ]; then echo -n "${GREEN}" else diff --git a/SetupCockpit/setup_cockpit.sh b/SetupCockpit/setup_cockpit.sh index 04c475b..7a8bb1e 100755 --- a/SetupCockpit/setup_cockpit.sh +++ b/SetupCockpit/setup_cockpit.sh @@ -8,6 +8,11 @@ GREEN=$(tput setaf 2) ORANGE=$(tput setaf 3) NC=$(tput sgr0) +export RED +export GREEN +export ORANGE +export NC + ############# # DEFINE OS # @@ -129,10 +134,6 @@ echo "Cloning projects..." echo "Configuring ProtonVPN..." -if sudo protonvpn init; then - sudo protonvpn c --cc NL -else - echo "${RED}There was a problem with protonvpn init${NC}" -fi +sudo protonvpn init && sudo protonvpn c --cc NL /bin/bash ~/PersonnalScripts/SetupCockpit/separator.sh