Skip to content

Instantly share code, notes, and snippets.

@softwar3d3v
Created December 15, 2017 17:16
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 softwar3d3v/1748f42fb0b15c95cf34872f6ecd9c20 to your computer and use it in GitHub Desktop.
Save softwar3d3v/1748f42fb0b15c95cf34872f6ecd9c20 to your computer and use it in GitHub Desktop.
Install script to set up new macs in Coding I & Coding II
#!/bin/bash
# check to see if homebrew is installed
command -v brew >/dev/null 2>&1 || { echo >&2 "Installing Homebrew Now"; \
/usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"; }
# install Hyper, Spotify, Chrome, Atom, and docker
brew cask install google-chrome
brew cask install spotify
brew cask install hyper
brew cask install atom
brew cask install docker
echo "[*] Your Mac is now set up!"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment