aboutsummaryrefslogtreecommitdiff
path: root/install.sh
diff options
context:
space:
mode:
authorAChavali <aryadevchavali1@gmail.com>2020-02-09 13:06:28 +0000
committerAChavali <aryadevchavali1@gmail.com>2020-02-09 13:06:28 +0000
commita934c6b7d286bce15d361674159a43d299db4a95 (patch)
treeb2f134b15162d118c937db4c3cdc41786c64d711 /install.sh
parentdd1c4c727e880f8a854a47e00cfdda64feb9b33a (diff)
downloaddotfiles-a934c6b7d286bce15d361674159a43d299db4a95.tar.gz
dotfiles-a934c6b7d286bce15d361674159a43d299db4a95.tar.bz2
dotfiles-a934c6b7d286bce15d361674159a43d299db4a95.zip
~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;
Diffstat (limited to 'install.sh')
-rw-r--r--install.sh9
1 files 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