Last active
January 14, 2025 14:28
-
-
Save matteocrippa/8c3a1f9f87aa14cadb64ce0c7d58cc5f to your computer and use it in GitHub Desktop.
A script to automate the setup of a development oriented Macbook machine
This file contains 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
#!/usr/bin/env bash | |
# Brew | |
echo "Installing 🍺 Brew!" | |
/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)" | |
echo "eval $(/opt/homebrew/bin/brew shellenv)" >> ~/.zshrc | |
# Disable brew analytics | |
brew analytics off | |
# Update | |
brew update | |
brew upgrade | |
# Install brews | |
brew install git | |
# NVM install and setup | |
brew install nvm | |
mkdir ~/.nvm | |
echo "export NVM_DIR=\"$HOME/.nvm\"" >> .zshrc | |
echo "[ -s \"/opt/homebrew/opt/nvm/nvm.sh\" ] && \. \"/opt/homebrew/opt/nvm/nvm.sh\"" >> .zshrc | |
brew install wget | |
brew install swiftlint | |
# FVM install | |
brew tap leoafarias/fvm | |
brew install fvm | |
# Heroku | |
brew install heroku/brew/heroku | |
heroku update | |
# Zsh | |
echo "ZSH" | |
brew install font-fira-code | |
echo "Change font to fira in terminal!" | |
brew install spaceship | |
echo "source $(brew --prefix)/opt/spaceship/spaceship.zsh" >> ~/.zshrc | |
brew install zsh-autosuggestions | |
echo "source /opt/homebrew/share/zsh-autosuggestions/zsh-autosuggestions.zsh" >> ~/.zshrc | |
# List of apps | |
brew install --cask keepingyouawake | |
brew install --cask charles | |
brew install --cask cyberduck | |
brew install --cask stats | |
brew install --cask zoom | |
brew install --cask the-unarchiver | |
brew install --cask google-backup-and-sync | |
brew install --cask bentobox | |
brew install --cask suspicious-package | |
brew install --cask sourcetree | |
brew install --cask android-studio | |
brew install --cask little-snitch | |
brew install --cask sf-symbols | |
brew install --cask rapidapi | |
brew install --cask google-drive | |
brew install --cask visual-studio-code | |
brew install --cask aldente | |
brew install --cask maccy | |
brew install --cask appcleaner | |
brew install jordanbaird-ice | |
brew install --cask raycast | |
# Install mas | |
brew install mas | |
# Cleanup | |
brew cleanup -s | |
# Remove not needed apps | |
# workaround to access to sudo | |
sudo mas uninstall 408981434 | |
# iMovie | |
sudo mas uninstall 408981434 | |
# GarageBand | |
sudo mas uninstall 682658836 | |
# Download AppStore apps | |
# Pause | |
mas install 1599313358 | |
# Strongbox | |
mas install 1481853033 | |
mas install 310633997 | |
# Xcode | |
mas install 497799835 | |
# Xcode command tools | |
xcode-select --install | |
# Force disable .DS_Store | |
git config --global core.excludesfile ~/.gitignore | |
echo .DS_Store >> ~/.gitignore | |
# Turn on Firewall | |
sudo /usr/libexec/ApplicationFirewall/socketfilterfw --setglobalstate on | |
# Install Rosetta for M1 | |
/usr/sbin/softwareupdate --install-rosetta --agree-to-license | |
# Repositories folder | |
mkdir ~/Repositories |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment