aboutsummaryrefslogtreecommitdiff
path: root/install.sh
diff options
context:
space:
mode:
Diffstat (limited to 'install.sh')
-rw-r--r--install.sh24
1 files changed, 0 insertions, 24 deletions
diff --git a/install.sh b/install.sh
deleted file mode 100644
index 52a7940..0000000
--- a/install.sh
+++ /dev/null
@@ -1,24 +0,0 @@
-#!/bin/bash
-
-folders=`find . -maxdepth 1 -type 'd' -not -name '.git' -not -name '.'`;
-
-# Symlink profiles
-for pkg in $folders; do
- echo "Stowing " $pkg;
- stow $pkg
-done
-
-# Generate folders
-mkdir ~/Text;
-mkdir ~/Code;
-mkdir ~/Code/Learning;
-mkdir ~/Code/Projects;
-mkdir ~/Code/Templates;
-mkdir ~/School;
-
-# get templates
-declare -a templates=("CTemplate" "CPPTemplate" "PythonTemplate"
- "NodeTemplate" "ArduinoTemplate");
-for template in ${templates[@]}; do
- git clone https://github.com/odavep/$template ~/Code/Templates/$template;
-done