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 | |
| # Replace your username for DOTFILES_REPO | |
| DOTFILES_REPO="Mansfera/dotfiles" | |
| DOTFILES_PATH="$HOME/dotfiles" | |
| echo "✅ Installing Homebrew..." | |
| /bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)" | |
| export PATH="/opt/homebrew/bin:$PATH" | |
| echo "✅ Homebrew added to PATH for this session." |