Skip to content

Instantly share code, notes, and snippets.

@jordan8037310
Created September 28, 2016 04:00
Show Gist options
  • Save jordan8037310/f56161253a4e7a3d64eee9821937ae32 to your computer and use it in GitHub Desktop.
Save jordan8037310/f56161253a4e7a3d64eee9821937ae32 to your computer and use it in GitHub Desktop.
Shell Script to install and configure all apps for Mac OS X clean installs
#!/binbash
# firsrun (Uncomment):
install xcode-cli-tools
xcode-select --install
# install homebrew (Uncomment)
ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"
# install caskroom
brew install caskroom/cask/brew-cask
# Tap those brews, brew
brew install git
brew install composer
brew install drush
brew install terminus
brew install unrar
brew install thefuck
brew install python
brew install webkit2png
brew install drupal-code-sniffer
brew install mtr
brew install memcached
brew install php56
brew install php56-igbinary
brew install php56-memcached
brew install wget
brew install legit
brew install curl
# Uncork those casks
brew cask install acquia-dev-desktop
brew cask install alfred
brew cask install atom
brew cask install balsamiq-mockups
brew cask install calibre
brew cask install datagrip
brew cask install docker
brew cask install dropbox
brew cask install escape
brew cask install evernote
brew cask install firefox
brew cask install flash
brew cask install flux
brew cask install gdrive
brew cask install google-chrome
brew cask install iterm2
brew cask install kimono
brew cask install kindle
brew cask install logitech-harmony
brew cask install logitech-unifying
brew cask install microsoft-office
brew cask install mysqlworkbench
brew cask install phpstorm
brew cask install plex-home-theater
brew cask install postbox
brew cask install quickbooks
brew cask install ringcentral
brew cask install screaming-frog-seo-spider
brew cask install silverlight
brew cask install skype
brew cask install slack
brew cask install soundnode
brew cask install sourcetree
brew cask install sublime-text
brew cask install transmit
brew cask install tunnelblick
brew cask install tweetdeck
brew cask install virtualbox
brew cask install vlc
brew cask install zoomus
# Clean things up
brew update && \
brew install `brew outdated` && \
brew cleanup && \
brew cask cleanup && \
brew doctor &&\
brew tap caskroom/versions
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment