Skip to content

Instantly share code, notes, and snippets.

@pythoninthegrass
Forked from jitendravyas/gist:8d35b092dd9102a05ea3
Last active May 2, 2020 18:17
Show Gist options
  • Star 2 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save pythoninthegrass/f28313165ceb78e85a93113d5acd986c to your computer and use it in GitHub Desktop.
Save pythoninthegrass/f28313165ceb78e85a93113d5acd986c 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 homebrew/boneyard
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
# fonts
# brew cask install font-inconsolata
# brew cask install font-source-code-pro
# Updated python/pip
brew install python
pip install --upgrade setuptools
pip install --upgrade pip
# cask apps
brew cask install atom
brew cask install atext
brew cask install nvalt
brew cask install vlc
brew cask install cakebrew
brew cask install slack
brew cask install appcleaner
brew cask install firefox
brew cask install iterm2
brew cask install alfred
brew cask install google-chrome
brew cask install google-drive
brew cask install yakyak
brew cask install vivaldi
brew cask install autodmg
brew cask install diskmaker-x
brew cask install docker
brew cask install kitematic
brew cask install virtualbox
brew cask install virtualbox-extension-pack
brew cask install omnidisksweeper
brew cask install platypus
brew cask install sequel-pro
brew cask install sspectacle
brew cask install lingon-x
brew cask install dash
brew cask install the-unarchiver
brew cask install lastpass-universal
brew cask install imageoptim
brew cask install macdown
# brew cask install sublime-text3
# brew cask install android-file-transfer
# brew cask install dropbox
# brew cask install sketch
# brew cask install skype
# brew cask install sourcetree
# brew cask install cyberduck
# brew cask install google-hangouts
# brew cask install evernote
# brew cask install xquartz
# brew cask install font-source-code-pro
# brew cask install sketch-toolbox
# brew cask install namebench
# Install GNU core utilities (those that come with OS X are outdated)
brew install coreutils
pip install mackup
npm install -g yo
npm install -g generator-webapp
# 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