# Check for Homebrew, install if we don't have it if test ! $(which brew); then echo "Installing homebrew..." /bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install.sh)" fi # Update homebrew recipes brew update # Install from Brewfile brew bundle # Show filename extensions by default defaults write NSGlobalDomain AppleShowAllExtensions -bool true # Disable "natural" scroll defaults write NSGlobalDomain com.apple.swipescrolldirection -bool false echo "Completed."