-
-
Save henrikbjorn/10234277 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 | |
# | |
# homebrew-cask | |
# Install homebrew-cask | |
brew tap phinze/cask | |
brew install brew-cask | |
# Install some quicklook-plugins | |
brew cask install qlcolorcode qlstephen qlmarkdown quicklook-json quicklook-csv | |
# Install some browsers | |
brew cask install google-chrome firefox | |
# Install must have apps | |
brew cask install alfred github gas-mask iterm2 dropbox licecap skype sequel-pro appzapper caffeine evernote skitch steam spotify asepsis | |
# Install games | |
brew cask league-of-legends minecraft | |
# Make alfred work nicely with cask | |
brew cask alfred link | |
# add zsh as a shell | |
sudo echo "/usr/local/bin/zsh" >> /etc/shells | |
sudo chsh -s /usr/local/bin/zsh `whoami` | |
Echo "Done!" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment