Skip to content

Instantly share code, notes, and snippets.

@futurealecks
Forked from CliffordAnderson/brew-install-script.sh
Last active December 19, 2021 22:26
Show Gist options
  • Save futurealecks/1ba77cace16c261373452e16b36b0965 to your computer and use it in GitHub Desktop.
Save futurealecks/1ba77cace16c261373452e16b36b0965 to your computer and use it in GitHub Desktop.
Brew script for installing packages and applications on OSX
#!/bin/sh
/usr/sbin/softwareupdate --install-rosetta --agree-to-license
# Homebrew Script for OSX
echo "Installing brew"
/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"
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 android-platform-tools
#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
brew install --cask adobe-acrobat-reader
brew install --cask adobe-creative-cloud
brew install --cask sublime-text
brew install --cask atom
# 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 pritunl
brew install --cask vysor
brew install --cask authy
#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