Skip to content

Instantly share code, notes, and snippets.

View teknekale's full-sized avatar

simonepachera teknekale

View GitHub Profile
#!/bin/sh
# To execute: save and `chmod +x ./brew-install-script.sh` then `./brew-install-script.sh`
echo "------------------------------------------------------------------------------------"
echo "Mac setup initialised. Please make sure you change the settings before running this."
echo "Any questions, ask James."
echo " "
echo "WARNING:"
echo "Do not run this script on an existing Mac as it changes a lot and may kill your installation".
#!/bin/sh
# Homebrew Script for OSX
# To execute: save and `chmod +x ./brew-install-script.sh` then `./brew-install-script.sh`
echo "Install Oh My Zsh"
sh -c "$(curl -fsSL https://raw.githubusercontent.com/robbyrussell/oh-my-zsh/master/tools/install.sh)"
echo "Installing brew..."
/usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"