blob: 718f81e413d0d6b3ae1048497bbc0341ca9e1805 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
#!/bin/sh
echo "Install the dependencies and symlink the dotfiles"
tput setaf 4
echo "Install on wich system? Enter either \"mac\", \"debian\", \"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
if [ $platform == "debian" ]; then
./install/install_debian.sh
fi
|