diff options
author | Jakob Stendahl <jakob.stendahl@outlook.com> | 2019-10-09 17:07:39 +0200 |
---|---|---|
committer | Jakob Stendahl <jakob.stendahl@outlook.com> | 2019-10-09 17:07:39 +0200 |
commit | 2b98d4a30d401403934a550c0e753942aa0faece (patch) | |
tree | fc61013f8ffad9810d6ddf72b6f7ffb2132fef26 /install.sh | |
parent | f96d7947a488fd76e53b87e6a4d70eab903d9c4a (diff) | |
download | dotfiles-2b98d4a30d401403934a550c0e753942aa0faece.tar.gz dotfiles-2b98d4a30d401403934a550c0e753942aa0faece.zip |
:truck: Add install-scripts, reorganize
Diffstat (limited to 'install.sh')
-rwxr-xr-x | install.sh | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/install.sh b/install.sh new file mode 100755 index 0000000..90df61b --- /dev/null +++ b/install.sh @@ -0,0 +1,18 @@ +#!/bin/sh + +echo "Install the dependencies and symlink the dotfiles" +tput setaf 4 +echo "Install on wich system? Enter either \"mac\", \"arch\":" +tput setaf 3 +printf "> " +read platform +printf "\n" +tput sgr0 + +if [ $platform == "mac" ]; then + ./install/install_mac.sh +fi + +if [ $platform == "arch" ]; then + ./install/install_arch.sh +fi |