Skip to content

Instantly share code, notes, and snippets.

@julian-wendt
Forked from CliffordAnderson/brew-install-script.sh
Last active November 12, 2025 16:44
Show Gist options
  • Select an option

  • Save julian-wendt/156caa1152bcee28a958c492d927a22f to your computer and use it in GitHub Desktop.

Select an option

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 obsidian
brew install --cask signal
brew install --cask whatsapp
# Helpers
echo "Install helpers apps..."
brew install --cask 1password
brew install --cask the-unarchiver
brew install --cask keepingyouawake
brew install --cask logi-options-plus
brew install --cask betterdisplay
brew install --cask raindropio
brew install --cask choosy
brew install --cask ddpm
brew install maccy
# Development
echo "Install development tools..."
brew install git
brew install gh
brew install --cask powershell
brew install jandedobbeleer/oh-my-posh/oh-my-posh
brew install --cask font-fira-code-nerd-font
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