-
-
Save chrishuan9/827a38f1f9e27a28a3ea322012478c5a to your computer and use it in GitHub Desktop.
Brew script for installing packages and applications on OSX
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/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