Skip to content

Instantly share code, notes, and snippets.

@brayhoward
Forked from codeinthehole/osx_bootstrap.sh
Created January 17, 2018 01:32
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save brayhoward/4af34ef41590cc6f3af45b2ac4ab2532 to your computer and use it in GitHub Desktop.
Save brayhoward/4af34ef41590cc6f3af45b2ac4ab2532 to your computer and use it in GitHub Desktop.
Script to install stuff I want on a new OSX machine
#!/usr/bin/env bash
#
# Bootstrap script for setting up a new OSX machine
#
# This should be idempotent so it can be run multiple times.
#
# Some apps don't have a cask and so still need to be installed by hand. These
# include:
#
# - Twitter (app store)
# - Postgres.app (http://postgresapp.com/)
#
# Notes:
#
# - If installing full Xcode, it's better to install that first from the app
# store before running the bootstrap script. Otherwise, Homebrew can't access
# the Xcode libraries as the agreement hasn't been accepted yet.
#
# Reading:
#
# - http://lapwinglabs.com/blog/hacker-guide-to-setting-up-your-mac
# - https://gist.github.com/MatthewMueller/e22d9840f9ea2fee4716
# - https://news.ycombinator.com/item?id=8402079
# - http://notes.jerzygangi.com/the-best-pgp-tutorial-for-mac-os-x-ever/
# Exit if Xcode needs to be istalled still.
read -p "Have you already installed Xcode from the app store? " -n 1 -r
if [[ $REPLY =~ ^[Nn]$ ]]
then
echo "You should probably do that first then..."
echo "I'll be here when you get done"
exit 1
fi
echo "Starting bootstrapping"
# Check for Homebrew, install if we don't have it
if test ! $(which brew); then
echo "Installing homebrew..."
ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"
fi
# Update homebrew recipes
brew update
# Install GNU core utilities (those that come with OS X are outdated)
brew install coreutils
# Install Bash 4
brew install bash
PACKAGES=(
mackup
coreutils
elixir
erlang
git
nvm
postgresql
wget
youtube-dl
)
echo "Installing packages..."
brew install ${PACKAGES[@]}
echo "Cleaning up..."
brew cleanup
echo "Installing cask..."
brew install caskroom/cask/brew-cask
# OSX APPS
echo "Installing cask apps..."
CASKS=(
dropbox
firefox
google-chrome
google-drive
skype
slack
sketch
screenhero
sizeup
alfred
spotify
visual-studio-code
postman
)
brew cask install ${CASKS[@]}
# RUBY
echo "Installing Ruby gems"
RUBY_GEMS=(
bundler
)
gem install ${RUBY_GEMS[@]}
# NPM
echo "Installing global npm packages..."
NPM_PACKAGES=(
audible-converter
http-server
typescript
angular-cli
)
npm install ${NPM_PACKAGES} -g
echo "Creating folder structure..."
[[ ! -d $HOME/code ]] && mkdir code
echo "Bootstrapping complete"
echo ""
echo "Login to your Dropbox account and sync your files"
echo "Then run 👇"
echo "mackup restore"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment