blob: 90df61b78e8c25f2bd4121555d768fc68c0b8e26 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
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
|