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 | |
| # --- macOS Tahoe Setup Script (M-Series Only) --- | |
| # Updated: March 2026 | |
| echo "Starting Mac setup for Apple Silicon..." | |
| # 1. Install Xcode Command Line Tools (Headless/Auto-accept) | |
| if ! xcode-select -p &> /dev/null; then | |
| echo "Installing Xcode Command Line Tools..." |