Skip to content

Instantly share code, notes, and snippets.

@tealtail
Forked from jitendravyas/gist:8d35b092dd9102a05ea3
Last active February 16, 2016 02:11
Show Gist options
  • Save tealtail/345d3dad4e832499f521 to your computer and use it in GitHub Desktop.
Save tealtail/345d3dad4e832499f521 to your computer and use it in GitHub Desktop.
Brew Cask installation with Laptop script
#!/bin/sh
# homebrew taps
brew tap caskroom/cask
brew tap caskroom/versions
brew tap caskroom/fonts
# Updated grep
brew tap homebrew/dupes
brew install grep
# Updated curl
brew install curl
brew link curl --force
# Updated bash
brew install bash
# homebrew apps
brew install brew-cask
brew install git
brew install git-extras
brew install wget
# Updated python/pip
brew install python
pip install --upgrade setuptools
pip install --upgrade pip
brew cask install font-source-code-pro
brew cask install font-meslo-lg
# cask apps
brew cask install sublime-text3
brew cask install vlc
brew cask install dropbox
brew cask install slack
brew cask install google-chrome-canary
brew cask install iterm2
brew cask install alfred
brew cask install google-hangouts
brew cask install dash
brew cask install xquartz
brew cask install 1password
brew cask install skitch
brew cask install postgres
brew cask install postico
brew cask install steam
brew cask install plex-media-server
brew cask install the-unarchiver
brew cask install spectacle
brew cask install transmit
brew cask install nylas-n1
brew cask install jump-desktop
brew cask install vmware-fusion
brew cask install sophos-anti-virus-home-edition
brew cask alfred link
# Install GNU core utilities (those that come with OS X are outdated)
brew install coreutils
# cask quick look plugins (https://github.com/sindresorhus/quick-look-plugins)
brew cask install qlcolorcode qlstephen qlmarkdown quicklook-json qlprettypatch quicklook-csv betterzipql suspicious-package
# verify
brew doctor
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment