Last active
September 18, 2024 19:55
-
-
Save CliffordAnderson/817777b5dc0e67769e4b 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 | |
# 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 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
No, I haven't. Thanks for the tip. I'll check it out.