Skip to content

Instantly share code, notes, and snippets.

@julian-wendt
Forked from CliffordAnderson/brew-install-script.sh
Last active April 10, 2024 00:15
Show Gist options
  • Save julian-wendt/156caa1152bcee28a958c492d927a22f to your computer and use it in GitHub Desktop.
Save julian-wendt/156caa1152bcee28a958c492d927a22f 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 "Install brew..."
/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"
echo "Install Rosetta 2..."
softwareupdate --install-rosetta
(echo; echo 'eval "$(/opt/homebrew/bin/brew shellenv)"') >> $HOME/.zprofile
eval "$(/opt/homebrew/bin/brew shellenv)"
# Common
echo "Install common apps..."
brew install --cask microsoft-auto-update
brew install --cask onedrive
brew install --cask microsoft-edge
brew install --cask microsoft-word
brew install --cask microsoft-excel
brew install --cask microsoft-outlook
brew install --cask microsoft-powerpoint
brew install --cask microsoft-teams
brew install --cask obsidian
brew install --cask skype
brew install --cask signal
brew install --cask whatsapp
# Helpers
echo "Install helpers apps..."
brew install --cask intune-company-portal
brew install --cask 1password
brew install --cask the-unarchiver
brew install --cask stats
brew install --cask finicky
brew install --cask keepingyouawake
brew install --cask logi-options-plus
brew install --cask betterdisplay
brew install --cask raindropio
# Development
echo "Install development tools..."
brew install git
brew install gh
brew install --cask powershell
brew install --cask github
brew install --cask visual-studio-code
brew install --cask azure-data-studio
brew install --cask microsoft-azure-storage-explorer
brew install --cask postman
brew install hugo
brew tap azure/functions
brew install azure-functions-core-tools@4
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment