Skip to content

Instantly share code, notes, and snippets.

@joshchu
Last active March 10, 2019 06:14
Show Gist options
  • Save joshchu/9902987 to your computer and use it in GitHub Desktop.
Save joshchu/9902987 to your computer and use it in GitHub Desktop.
Salsify ~/.brew
#!/bin/bash
sudo -v # ask for password only at the beginning
brew update
brew upgrade
brew tap homebrew/versions
brew tap phinze/homebrew-cask
brew install brew-cask
brew install git
brew install vim
brew install wget --enable-iri
# required
brew cask install alfred
brew cask install google-chrome
brew cask install box-sync
brew cask install firefox
brew cask install iterm2
brew cask install hipchat
brew cask install rubymine
brew cask install postgres
brew cask install github
brew cask install heroku-toolbelt
brew uninstall git-flow
brew install git-flow-avh
brew install gnu-getopt
brew update && brew install phantomjs
# dev packages
brew install node
brew install phantomjs
brew install qt
# optional
read -p "Do you want to install optional packages? " -n 1 -r
echo ""
if [[ $REPLY =~ ^[Yy]$ ]]
then
brew cask alfred link
brew cask install balsamiq-mockups
brew cask install jewelrybox
brew cask install evernote
brew cask install spotify
brew cask install skype
brew cask install sonos
# others
brew cask install omni-focus
brew cask install clean-my-mac
brew cask install picturesque
brew cask install onepassword
brew cask install macvim
brew cask install tower
brew cask install reggy
brew cask install soulver
brew cask install the-unarchiver
#brew cask install virtualbox
brew cask install geekbench
brew cask install selfcontrol
brew cask install kaleidoscope
brew cask install trim-enabler
brew cask install launch-control
brew cask install instacast
brew cask install macupdate-desktop
brew cask install omnioutliner
brew cask install growlnotify
brew cask install totalfinder
fi
brew cleanup
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment