Skip to content

Instantly share code, notes, and snippets.

@chrishuan9
Forked from julian-wendt/brew-install-script.sh
Created March 14, 2022 16:06
Show Gist options
  • Save chrishuan9/827a38f1f9e27a28a3ea322012478c5a to your computer and use it in GitHub Desktop.
Save chrishuan9/827a38f1f9e27a28a3ea322012478c5a to your computer and use it in GitHub Desktop.
Brew script for installing packages and applications on OSX
#!/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 homebrew/cask
# Helper Tools
echo "Installing helpers..."
brew install --cask selfcontrol
brew install --cask 1password
brew install --cask displaycal
brew install --cask the-unarchiver
brew install --cask stats
brew install --cask home-assistant
# Dev Tools
echo "Installing development tools..."
brew install docker
brew install git
brew install --cask powershell
brew install --cask github
brew install --cask visual-studio-code
brew install --cask intellij-idea
brew install --cask phpstorm
brew install --cask sequel-pro
brew install --cask local
brew install --cask poedit
# Communication Apps
echo "Installing communication apps..."
brew install --cask skype
brew install --cask microsoft-outlook
brew install --cask signal
brew install --cask whatsapp
# Web Tools
echo "Installing web tools..."
brew install node
brew install nvm
brew install --cask microsoft-edge
brew install --cask google-chrome
brew install --cask postman
# File Storage
echo "Installing file storage tools..."
brew install --cask onedrive
# Writing Apps
echo "Installing writing apps..."
brew install --cask microsoft-word
brew install --cask microsoft-excel
brew install --cask microsoft-powerpoint
# Other
echo "Installing everything else..."
brew install --cask spotify
brew install --cask microsoft-remote-desktop
brew install --cask adobe-creative-cloud
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment