Skip to content

Instantly share code, notes, and snippets.

@juanca
Last active March 11, 2024 21:17
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save juanca/f22637bab358c9026ace7e0d9167111a to your computer and use it in GitHub Desktop.
Save juanca/f22637bab358c9026ace7e0d9167111a to your computer and use it in GitHub Desktop.
if [ ! $(command -v brew) ]; then
/usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"
fi
brew update
brew doctor
declare -a brew_apps=(
node
yarn
tmux
)
declare -a brew_cask_apps=(
atom
bartender
discord
flux
google-chrome
istat-menus
keybase
lastpass
moom
private-internet-access
steam
)
for brew_app in "${brew_apps[@]}"
do
brew install $brew_app
done
for brew_cask_app in "${brew_cask_apps[@]}"
do
brew cask install $brew_cask_app
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment