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