Skip to content

Instantly share code, notes, and snippets.

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 blaisep/756bdb8284589b6007a78ce7795f083d to your computer and use it in GitHub Desktop.
Save blaisep/756bdb8284589b6007a78ce7795f083d to your computer and use it in GitHub Desktop.
Brew install script for OSX
#!/bin/sh
# Homebrew Script for OSX
# To execute: save and `chmod +x ./brew-install-script.sh` then `./brew-install-script.sh`
echo "Installing brew..."
/usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"
echo "Installing brew cask..."
brew tap caskroom/cask
#Programming Languages
brew cask install java
brew install node
brew install elm
brew install haskell-stack
brew install idris
brew tap homebrew/science
brew install r
#Dev Tools
brew install git
brew cask install github-desktop
brew cask install atom
brew install basex
brew cask install exist-db
brew install neo4j
brew cask install rstudio
brew install httpie
brew cask install hyper
brew cask install kitematic
brew cask install oxygen-xml-editor
#Communication Apps
brew cask install keybase
brew cask install slack
brew cask install skype
brew cask install microsoft-lync
#Web Tools
brew cask install google-chrome
brew cask install firefox
#File Storage
brew cask install google-drive
brew cask install dropbox
brew cask install amazon-drive
#Writing Apps
brew cask install basictex
brew cask install tex-live-utility
brew install pandoc
brew install pandoc-citeproc
brew cask install zotero
#Entertainment
brew cask install amazon-music
brew cask install minecraft
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment