Last active
December 2, 2015 22:02
-
-
Save allgood2386/cadc023eb8c0e1b3de18 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
echo "Installing homebrew..." | |
ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)" | |
# Update homebrew recipes | |
brew update | |
#taps | |
taps=( | |
homebrew/dupes | |
homebrew/apache | |
) | |
echo "installing binaries..." | |
brew tap ${taps[@]} | |
brew cleanup | |
binaries=( | |
autoconf | |
bash | |
bash-completion | |
cheat | |
cmake | |
composer | |
coreutils | |
git | |
rbenv | |
ssh-copy-id | |
unrar | |
wget | |
) | |
echo "installing binaries..." | |
brew install ${binaries[@]} | |
brew cleanup | |
brew install caskroom/cask/brew-cask | |
# Apps | |
apps=( | |
dropbox | |
firefox | |
google-chrome | |
hipchat | |
skype | |
transmit | |
lastpass | |
skitch | |
opera | |
virtualbox | |
filezilla | |
) | |
# Install apps to /Applications | |
# Default is: /Users/$user/Applications | |
echo "installing apps..." | |
brew cask install --appdir="/Applications" ${apps[@]} | |
brew tap caskroom/fonts | |
# fonts | |
fonts=( | |
font-roboto | |
) | |
# install fonts | |
echo "installing fonts..." | |
brew cask install ${fonts[@]} | |
curl -s https://raw.githubusercontent.com/xdissent/ievms/master/ievms.sh | bash |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment