From a934c6b7d286bce15d361674159a43d299db4a95 Mon Sep 17 00:00:00 2001 From: AChavali Date: Sun, 9 Feb 2020 13:06:28 +0000 Subject: ~directory structure Instead of having a really distributed and sparse code structure over the /home/user directory, I've put all code in the code directory. The directory structure is now like this. ~/Programming -> ~/Code/Learning ~/Projects -> ~/Code/Projects; ~/Projects/Templates -> ~/Code/Templates; --- install.sh | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/install.sh b/install.sh index 8fbfb73..32ab803 100644 --- a/install.sh +++ b/install.sh @@ -11,9 +11,10 @@ done # Generate folders mkdir ~/Text; -mkdir ~/Programming; -mkdir ~/Projects; -mkdir ~/Projects/Templates; +mkdir ~/Code; +mkdir ~/Code/Learning; +mkdir ~/Code/Projects; +mkdir ~/Code/Templates; mkdir ~/School; touch ~/Text/notes.org; @@ -23,7 +24,7 @@ touch ~/Text/calendar.org; # get templates declare -a templates=("CTemplate" "CPPTemplate" "PythonTemplate" "NodeTemplate" "ArduinoTemplate"); for template in ${templates[@]}; do - git clone https://github.com/Oreodave/$template ~/Projects/Templates/$template; + git clone https://github.com/Oreodave/$template ~/Code/Templates/$template; done # get doom emacs -- cgit v1.2.3-13-gbd6f