Skip to content

Instantly share code, notes, and snippets.

@oleg-agapov
Last active August 9, 2023 11:57
Show Gist options
  • Save oleg-agapov/c4fd8a8a210b5f0c4168d64506c0996a to your computer and use it in GitHub Desktop.
Save oleg-agapov/c4fd8a8a210b5f0c4168d64506c0996a to your computer and use it in GitHub Desktop.
echo "Starting setup"
# install xcode CLI
xcode-select —-install
# install brew
/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"
# Update homebrew recipes
brew update
PACKAGES=(
git
node
python@3.10
openjdk@11
)
echo "Installing packages..."
brew install ${PACKAGES[@]}
echo "Cleaning up..."
brew cleanup
echo "Installing cask..."
CASKS=(
bitwarden
skype
slack
spotify
visual-studio-code
datagrip
keka
textmate
telegram
firefox
notion
microsoft-office
vlc
docker
dropbox
)
echo "Installing cask apps..."
brew install --cask ${CASKS[@]} && true
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment