From ba8bee883beddb1dcb509ab70366d68212996147 Mon Sep 17 00:00:00 2001 From: "flyingscorpio@ubuntu-desktop" Date: Mon, 17 Feb 2020 16:42:17 +0100 Subject: [PATCH] Add clone projects --- SetupCockpit/clone_projects.sh | 49 +++++++++++++++++++ .../setup_cockpit.sh | 14 +++--- 2 files changed, 56 insertions(+), 7 deletions(-) create mode 100644 SetupCockpit/clone_projects.sh rename setup_cockpit.sh => SetupCockpit/setup_cockpit.sh (100%) diff --git a/SetupCockpit/clone_projects.sh b/SetupCockpit/clone_projects.sh new file mode 100644 index 0000000..3441869 --- /dev/null +++ b/SetupCockpit/clone_projects.sh @@ -0,0 +1,49 @@ +#!/bin/sh + +# This script clones all the different repos + +os='none' +while [ $os != 'debian' ] && [ $os != 'arch' ] +do + read -p "Which OS do you use? " os +done + + +################## +# REPOS ON LIME2 # +################## + +cd + +# VimConf.git +git clone ssh://flyingscorpio@2px.info.tm/~/repos/VimConf.git +# Lessons.git +git clone ssh://flyingscorpio@2px.info.tm/~/repos/Lessons.git +# RootMe.git +git clone ssh://flyingscorpio@2px.info.tm/~/repos/RootMe.git + + +################### +# REPOS ON GITLAB # +################### + +if [ ! -e ~/SRC ]; then + mkdir ~/SRC +fi + +cd ~/src + +git clone https://gitlab.com/e2li/depydoc.git +git clone https://gitlab.com/flyingscorpio/2px.git +git clone https://gitlab.com/flyingscorpio/BlurMySearches.git +git clone https://gitlab.com/flyingscorpio/JsonToPython.git +git clone https://gitlab.com/flyingscorpio/LVEL-website.git +git clone https://gitlab.com/flyingscorpio/MarioSokoban.git +git clone https://gitlab.com/flyingscorpio/PythonLocalBlockchain.git +git clone https://gitlab.com/flyingscorpio/Roboc-GUI.git +git clone https://gitlab.com/flyingscorpio/Roboc-console +git clone https://gitlab.com/flyingscorpio/SudokuSolver.git +git clone https://gitlab.com/flyingscorpio/TicTacToe.git +git clone https://gitlab.com/flyingscorpio/WhitespaceInterpreter.git +git clone https://gitlab.com/flyingscorpio/WikipediaAcronymScraper.git + diff --git a/setup_cockpit.sh b/SetupCockpit/setup_cockpit.sh similarity index 100% rename from setup_cockpit.sh rename to SetupCockpit/setup_cockpit.sh index 9aefce7..003f9ad 100755 --- a/setup_cockpit.sh +++ b/SetupCockpit/setup_cockpit.sh @@ -5,6 +5,13 @@ # Open keepass in a separate window. The script will prompt for passwords. +#################### +# Install KeePass2 # +#################### + +sudo apt install keepass2 + + #################### # Set some aliases # #################### @@ -27,13 +34,6 @@ sudo protonvpn init sudo protonvpn c --cc NL -#################### -# Install KeePass2 # -#################### - -sudo apt install keepass2 - - ############################# # Install and configure Git # #############################