From 3a3e0dbeb3331a14bbcbd8a4f00d01841efa1d9f Mon Sep 17 00:00:00 2001 From: dx Date: Sun, 17 May 2020 09:06:45 +0100 Subject: ~install.sh -> Install.org An org file is better suited for this kinda job: literate, modular and easy to explain my decisions. Furthermore, I can make components for this installation easily just by making sections --- install.sh | 24 ------------------------ 1 file changed, 24 deletions(-) delete mode 100644 install.sh (limited to 'install.sh') 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 -- cgit v1.2.3-13-gbd6f