Skip to content

Instantly share code, notes, and snippets.

@mkelley33
Forked from t-io/osx_install.sh
Last active August 29, 2015 14:25
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mkelley33/df2858f751a704359a4b to your computer and use it in GitHub Desktop.
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
#!/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