diff options
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 |