diff options
author | dx <aryadevchavali1@gmail.com> | 2020-05-17 09:06:45 +0100 |
---|---|---|
committer | dx <aryadevchavali1@gmail.com> | 2020-05-17 09:06:45 +0100 |
commit | 3a3e0dbeb3331a14bbcbd8a4f00d01841efa1d9f (patch) | |
tree | ee74835e944bc45e1828902f59c32fb3611beaa7 /install.sh | |
parent | 824d8fe0e1b3bd1bb760d0daf3c3cea0cea6c4cd (diff) | |
download | dotfiles-3a3e0dbeb3331a14bbcbd8a4f00d01841efa1d9f.tar.gz dotfiles-3a3e0dbeb3331a14bbcbd8a4f00d01841efa1d9f.tar.bz2 dotfiles-3a3e0dbeb3331a14bbcbd8a4f00d01841efa1d9f.zip |
~install.sh -> Install.org
An org file is better suited for this kinda job: literate, modular and
easy to explain my decisions. Furthermore, I can make components for
this installation easily just by making sections
Diffstat (limited to 'install.sh')
-rw-r--r-- | install.sh | 24 |
1 files changed, 0 insertions, 24 deletions
diff --git a/install.sh b/install.sh deleted file mode 100644 index 52a7940..0000000 --- a/install.sh +++ /dev/null @@ -1,24 +0,0 @@ -#!/bin/bash - -folders=`find . -maxdepth 1 -type 'd' -not -name '.git' -not -name '.'`; - -# Symlink profiles -for pkg in $folders; do - echo "Stowing " $pkg; - stow $pkg -done - -# Generate folders -mkdir ~/Text; -mkdir ~/Code; -mkdir ~/Code/Learning; -mkdir ~/Code/Projects; -mkdir ~/Code/Templates; -mkdir ~/School; - -# get templates -declare -a templates=("CTemplate" "CPPTemplate" "PythonTemplate" - "NodeTemplate" "ArduinoTemplate"); -for template in ${templates[@]}; do - git clone https://github.com/odavep/$template ~/Code/Templates/$template; -done |