diff options
author | AChavali <aryadevchavali1@gmail.com> | 2019-12-30 13:05:47 +0000 |
---|---|---|
committer | AChavali <aryadevchavali1@gmail.com> | 2019-12-30 13:05:47 +0000 |
commit | bdbec5ea5f9cc87c522007a53076cf5a598f61e3 (patch) | |
tree | 767d0cc90571c94fe04f0f0ff8eadd2dfedd5358 /install.sh | |
parent | cad13a767432528a072366dd431519ab4e568ac2 (diff) | |
download | dotfiles-bdbec5ea5f9cc87c522007a53076cf5a598f61e3.tar.gz dotfiles-bdbec5ea5f9cc87c522007a53076cf5a598f61e3.tar.bz2 dotfiles-bdbec5ea5f9cc87c522007a53076cf5a598f61e3.zip |
+comments to install script
Diffstat (limited to 'install.sh')
-rw-r--r-- | install.sh | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -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; |