Skip to content

Instantly share code, notes, and snippets.

@CliffordAnderson
Last active February 14, 2024 08:29
Show Gist options
  • Star 48 You must be signed in to star a gist
  • Fork 36 You must be signed in to fork a gist
  • Save CliffordAnderson/817777b5dc0e67769e4b to your computer and use it in GitHub Desktop.
Save CliffordAnderson/817777b5dc0e67769e4b 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
# Programming Languages
echo "Installing programming languages..."
brew install scala
brew install --cask r
brew install --cask oracle-jdk-javadoc
# Dev Tools
echo "Installing development tools..."
brew install docker
brew install git
brew install basex
brew install --cask github
brew install --cask hyper
brew install --cask kitematic
brew install --cask neo4j
brew install --cask rstudio
brew install --cask visual-studio-code
# Communication Apps
echo "Installing communication apps..."
brew install --cask discord
brew install --cask keybase
brew install --cask microsoft-teams
brew install --cask microsoft-outlook
brew install --cask protonmail-bridge
brew install --cask skype
brew install --cask slack
brew install --cask zoom
# Web Tools
echo "Installing web tools..."
brew install httpie
brew install node
brew install nvm
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
brew install --cask microsoft-word
# Other
echo "Installing everything else..."
brew install --cask anki
brew install --cask amazon-music
brew install --cask minecraft
@lemingos
Copy link

lemingos commented Apr 5, 2022

This is cool, have you seen Brewfile?

@CliffordAnderson
Copy link
Author

No, I haven't. Thanks for the tip. I'll check it out.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment