Skip to content

Instantly share code, notes, and snippets.

@owainharris
Last active October 29, 2017 20:21
Show Gist options
  • Select an option

  • Save owainharris/7b2c4fb6e929b8b6eb0901c634dfd6d5 to your computer and use it in GitHub Desktop.

Select an option

Save owainharris/7b2c4fb6e929b8b6eb0901c634dfd6d5 to your computer and use it in GitHub Desktop.
macOS setup script using Brew / Cask
#!/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
brew tap caskroom/versions
#Programming Languages
brew install node
brew install mysql
#Dev Tools
brew install git
brew cask install kitematic
brew cask sequel-pro
brew cask virtualbox
brew cask install parallels-desktop
brew cask install visual-studio-code
brew cask install sublime-text3
brew cask install iterm2
brew install fish
#Communication Apps
brew cask install slack
brew cask install skype
#Web Tools
brew cask install google-chrome
#File Storage
brew cask install google-drive
#Misc
brew cask 1password
brew cask install bartender
brew cask install vlc
brew cask install webtorrent
brew cask install the-unarchiver
#!/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
brew tap caskroom/versions
#Programming Languages
brew install node
brew install mysql
#Dev Tools
brew install git
brew cask install kitematic
brew cask sequel-pro
brew cask virtualbox
brew cask install parallels-desktop
brew cask install visual-studio-code
brew cask install sublime-text3
brew cask install iterm2
#Communication Apps
brew cask install slack
brew cask install skype
#Web Tools
brew cask install google-chrome
#File Storage
brew cask install google-drive
#Misc
brew cask 1password
brew cask install bartender
brew cask install vlc
brew cask install webtorrent
brew cask install the-unarchiver
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment