From bdbec5ea5f9cc87c522007a53076cf5a598f61e3 Mon Sep 17 00:00:00 2001 From: AChavali Date: Mon, 30 Dec 2019 13:05:47 +0000 Subject: +comments to install script --- install.sh | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'install.sh') diff --git a/install.sh b/install.sh index 8e3d177..9f55f24 100644 --- a/install.sh +++ b/install.sh @@ -3,12 +3,13 @@ dir=~/Dotfiles; files=`cat $dir/files`; +# Symlink profiles for file in $files; do echo "Creating symlink for " + $file; ln -s $dir/$file ~/.$file; done -# Other folders +# Generate folders mkdir ~/Text; mkdir ~/Programming; mkdir ~/Projects; @@ -19,6 +20,7 @@ touch ~/Text/notes.org; touch ~/Text/todo.org; 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; -- cgit v1.2.3-13-gbd6f