2013-03-30 19:03:43 -06:00
|
|
|
#!/bin/bash
|
2013-03-31 19:31:41 -06:00
|
|
|
# Assumes that gcc, make and git as well as a package manager (brew,
|
|
|
|
# apt-get) is installed on the system.
|
|
|
|
|
2013-03-17 16:46:42 -06:00
|
|
|
# Go to the source directory of this script.
|
2013-03-17 03:33:15 -06:00
|
|
|
cd "$(dirname "${BASH_SOURCE}")"
|
|
|
|
|
2013-03-31 19:31:41 -06:00
|
|
|
case `uname` in
|
|
|
|
'Darwin')
|
|
|
|
source .brew
|
|
|
|
;;
|
|
|
|
'Linux')
|
|
|
|
source .apt-get
|
|
|
|
;;
|
|
|
|
esac
|
2013-03-18 10:56:29 -06:00
|
|
|
|
2013-03-19 04:03:01 -06:00
|
|
|
function install_python_packages() {
|
|
|
|
sudo -v
|
|
|
|
source ~/.path
|
|
|
|
easy_install pip
|
|
|
|
pip install -r requirements.txt
|
|
|
|
}
|
|
|
|
|
2013-03-17 03:33:15 -06:00
|
|
|
|
2013-03-18 10:56:29 -06:00
|
|
|
echo "Installing Dot Files."
|
|
|
|
source bootstrap.sh
|
2013-03-17 21:27:33 -06:00
|
|
|
echo "Installing Tmux Configuration."
|
2013-03-17 03:33:15 -06:00
|
|
|
tmux-powerline/generate_conf.sh
|
2013-03-17 21:27:33 -06:00
|
|
|
echo "Installing oh-my-zsh."
|
2013-03-19 04:32:49 -06:00
|
|
|
oh-my-zsh/install.sh -f
|