aboutsummaryrefslogtreecommitdiff
path: root/install.sh
diff options
context:
space:
mode:
authorAChavali <aryadevchavali1@gmail.com>2019-12-30 13:05:47 +0000
committerAChavali <aryadevchavali1@gmail.com>2019-12-30 13:05:47 +0000
commitbdbec5ea5f9cc87c522007a53076cf5a598f61e3 (patch)
tree767d0cc90571c94fe04f0f0ff8eadd2dfedd5358 /install.sh
parentcad13a767432528a072366dd431519ab4e568ac2 (diff)
downloaddotfiles-bdbec5ea5f9cc87c522007a53076cf5a598f61e3.tar.gz
dotfiles-bdbec5ea5f9cc87c522007a53076cf5a598f61e3.tar.bz2
dotfiles-bdbec5ea5f9cc87c522007a53076cf5a598f61e3.zip
+comments to install script
Diffstat (limited to 'install.sh')
-rw-r--r--install.sh4
1 files changed, 3 insertions, 1 deletions
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;