Scripts to setup new macs.
/usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)" && brew tap caskroom/cask
This will also download the Command Line Tools (git
, etc.)
mkdir projects
cd projects
git clone https://github.com/frankdilo/mac-setup.git && cd mac-setup
while read app; do
brew cask install "$app"
done < homebrew-cask/basic.txt
# Remove downloaded files and cleanup space
brew cask cleanup
brew install mas # cli for the mac app store
app_ids_without_comments=$(grep -o '^[^#]*' mas/basic.txt | grep -v '^$')
echo $app_ids_without_comments | xargs mas install
while read tool; do
brew install "$tool"
done < homebrew/dev.txt
while read app; do
brew cask install "$app"
done < homebrew-cask/dev.txt
Install Oh My Zsh
sh -c "$(curl -fsSL https://raw.githubusercontent.com/robbyrussell/oh-my-zsh/master/tools/install.sh)"