This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| echo "🚀 Starting Mac Setup..." | |
| # 1. Install Homebrew if not already installed | |
| if ! command -v brew &> /dev/null; then | |
| echo "🍺 Installing Homebrew..." | |
| /bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)" | |
| else | |
| echo "🍺 Homebrew is already installed. Updating..." |