Skip to content

Instantly share code, notes, and snippets.

@nlenkowski
Last active October 8, 2015 09:12
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 nlenkowski/a7ad5e667dafed874be3 to your computer and use it in GitHub Desktop.
Save nlenkowski/a7ad5e667dafed874be3 to your computer and use it in GitHub Desktop.
Shell script to install Brew, Cask and Npm packages on OS X
#!/bin/sh
# Force Cask to install to the /Applications folder
export HOMEBREW_CASK_OPTS="--appdir=/Applications"
#
# Brew tap
#
brew tap homebrew/dupes
brew tap homebrew/homebrew-php
brew tap homebrew/versions
#
# Brew packages
#
brew install composer
brew install git
brew install htop
brew install imagemagick
brew install mysql
brew install node
brew install php56
brew install postgresql
brew install wget
brew install wp-cli
#
# Cask packages
#
brew cask install alfred
brew cask install android-file-transfer
brew cask install appcleaner
brew cask install atom
brew cask install bettertouchtool
brew cask install dropbox
brew cask install imageoptim
brew cask install iterm2
brew cask install macdown
brew cask install mplayerx
brew cask install picasa
brew cask install pngyu
brew cask install sequel-pro
brew cask install skype
brew cask install sourcetree
brew cask install spotify
brew cask install teamviewer
brew cask install the-unarchiver
brew cask install toggldesktop
brew cask install transmit
#
# Node packages
#
npm install -g bower
npm install -g grunt-cli
npm install -g gulp
npm install -g yo
npm install -g npm-check-updates
@nlenkowski
Copy link
Author

After downloading run the script:

chmod a+x provision-osx-apps.sh
./provision-osx-apps.sh

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment