aboutsummaryrefslogtreecommitdiff
path: root/install.sh
blob: 0e49d87dd074528dd219b2ba88afcdf316772053 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
#!/bin/sh

echo "Install the dependencies and symlink the dotfiles"
tput setaf 4
echo "Install on wich system? Enter either \"mac\", \"debian\", \"arch\", \"fedora\":"
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

if [ $platform == "fedora" ]; then
	./install/install_fedora.sh
fi