-
-
Save mkelley33/df2858f751a704359a4b to your computer and use it in GitHub Desktop.
Homebrew: brew cask and brew installs of apps common to my dev machine
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 | |
export HOMEBREW_CASK_OPTS="--appdir=/Applications" | |
echo Install Homebrew, Postgres, wget and cask | |
ruby -e "$(curl -fsSL https://raw.github.com/Homebrew/homebrew/go/install)" | |
brew tap homebrew/dupes | |
brew install wget | |
brew install postgresql | |
brew install mongodb | |
brew install mongoose | |
brew install node | |
npm install -g gitjk | |
sudo npm install -g cordova | |
npm install phonegap -g | |
brew install brew-cask | |
# Core Functionality | |
echo Install Core Apps | |
brew cask install alfred | |
brew cask install dropbox | |
brew cask install little-snitch | |
brew cask install transmit | |
brew cask install vlc | |
brew cask install iterm2 | |
brew cask install bartender | |
#brew cask install --appdir="~/Applications" java | |
# Development | |
echo Install Dev Apps | |
brew cask install github | |
brew cask install heroku-toolbelt | |
brew cask install sublime-text | |
brew cask install webstorm | |
brew cask install virtualbox | |
brew cask install vagrant | |
brew cask install tower | |
brew cask install robomongo | |
brew cask install mongohub | |
# Google Slavery | |
echo Install Google Apps | |
brew cask install google-chrome | |
# Nice to have | |
echo Install Some additional Apps | |
brew cask install firefox | |
brew cask install skype | |
brew cask install jdownloader | |
brew cask install lastfm | |
brew cask install all2mp3 | |
brew cask install spotify | |
brew cask install spotify-notifications | |
# Link Cask Apps to Alfred | |
brew cask alfred link | |
# cleanup | |
brew cleanup --force | |
rm -f -r /Library/Caches/Homebrew/* | |
echo "Security: https://objective-see.com/products.html" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment