aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--install.sh5
1 files changed, 5 insertions, 0 deletions
diff --git a/install.sh b/install.sh
index 79180fe..8e3d177 100644
--- a/install.sh
+++ b/install.sh
@@ -18,3 +18,8 @@ mkdir ~/School;
touch ~/Text/notes.org;
touch ~/Text/todo.org;
touch ~/Text/calendar.org;
+
+declare -a templates=("CTemplate" "CPPTemplate" "PythonTemplate" "NodeTemplate" "ArduinoTemplate");
+for template in ${templates[@]}; do
+ git clone https://github.com/Oreodave/$template ~/Projects/Templates/$template;
+done