Skip to content

Instantly share code, notes, and snippets.

@chadmando
Forked from CliffordAnderson/brew-install-script.sh
Last active September 17, 2021 17:33
Show Gist options
  • Save chadmando/c4e448d4c7614ab77b14e1c87ce7a989 to your computer and use it in GitHub Desktop.
Save chadmando/c4e448d4c7614ab77b14e1c87ce7a989 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
# Utilities
echo "Installing utilities..."
brew install grep
brew install gettext
brew install tree
# Programming Languages
echo "Installing programming languages..."
brew install powershell
brew install --cask dotnet-sdk
# Dev Tools
echo "Installing development tools..."
brew install --cask docker
brew install git
brew install --cask github
brew install --cask visual-studio-code
brew install --cask pycharm
brew install pipx
brew install --cask iterm2
# Communication Apps
echo "Installing communication apps..."
brew install --cask zoom
# Web Tools
echo "Installing web tools..."
brew install httpie
brew install --cask firefox
brew install --cask google-chrome
brew install --cask ngrok
brew install --cask postman
# File Storage
echo "Installing file storage tools..."
brew install --cask dropbox
brew install --cask onedrive
# Writing Apps
echo "Installing writing apps..."
brew install pandoc
brew install --cask deepl
brew install --cask zotero
brew install --cask papers
# Other
echo "Installing everything else..."
brew install --cask evernote
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment