-
Star
(140)
You must be signed in to star a gist -
Fork
(54)
You must be signed in to fork a gist
-
-
Save somebox/6b00f47451956c1af6b4 to your computer and use it in GitHub Desktop.
#!/bin/bash | |
# A script to set up a new mac. Uses bash, homebrew, etc. | |
# Focused for ruby/rails development. Includes many utilities and apps: | |
# - homebrew, rvm, node | |
# - quicklook plugins, terminal fonts | |
# - browsers: chrome, firefox | |
# - dev: iterm2, sublime text, postgres, chrome devtools, etc. | |
# - team: slack, dropbox, google drive, skype, etc | |
# - utils: unarchiver, o-day, caffine, skitch, etc | |
# - productivity: evernote, viscosity, omnigraffle, karabiner, etc. | |
# Settings | |
node_version="0.12.2" | |
ruby_versions="1.9 2.1 2.2" | |
ruby_default="2.1" | |
# helpers | |
function echo_ok { echo -e '\033[1;32m'"$1"'\033[0m'; } | |
function echo_warn { echo -e '\033[1;33m'"$1"'\033[0m'; } | |
function echo_error { echo -e '\033[1;31mERROR: '"$1"'\033[0m'; } | |
echo_ok "Install starting. You may be asked for your password (for sudo)." | |
# requires xcode and tools! | |
xcode-select -p || exit "XCode must be installed! (use the app store)" | |
# requirements | |
cd ~ | |
mkdir -p tmp | |
echo_warn "setting permissions..." | |
for dir in "/usr/local /usr/local/bin /usr/local/include /usr/local/lib /usr/local/share"; do | |
sudo chgrp admin $dir | |
sudo chmod g+w $dir | |
done | |
# homebrew | |
export HOMEBREW_CASK_OPTS="--appdir=/Applications" | |
if hash brew &> /dev/null; then | |
echo_ok "Homebrew already installed" | |
else | |
echo_warn "Installing homebrew..." | |
ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)" | |
fi | |
# RVM | |
if hash rvm &> /dev/null; then | |
echo_ok "RVM already installed" | |
else | |
echo "Installing RVM..." | |
curl -sSL https://get.rvm.io | bash -s stable --ruby | |
fi | |
# add default gems to rvm | |
global_gems_config="$HOME/.rvm/gemsets/global.gems" | |
default_gems="bundler awesome-print lunchy rak" | |
for gem in $default_gems; do | |
echo $gem >> $global_gems_config | |
done | |
awk '!a[$0]++' $global_gems_config > /tmp/global.tmp | |
mv /tmp/global.tmp $global_gems_config | |
# RVM ruby versions | |
for version in $ruby_versions; do | |
rvm install $version | |
done | |
# moar homebrew... | |
brew install caskroom/cask/brew-cask | |
brew update && brew upgrade brew-cask && brew cleanup && brew cask cleanup | |
# brew taps | |
brew tap caskroom/versions | |
brew tap caskroom/fonts | |
brew tap homebrew/games | |
# Homebrew base | |
brew install \ | |
autoconf automake bash-completion cowsay cmatrix \ | |
ffmpeg figlet gettext go gpg freetype htop-osx jq libxml2 mongodb node \ | |
phantomjs postgres qt readline sqlite unrar v8 wget youtube-dl | |
# brew cask fonts | |
echo_warn "Installing fonts..." | |
brew cask install \ | |
font-anonymous-pro \ | |
font-dejavu-sans-mono-for-powerline \ | |
font-droid-sans \ | |
font-droid-sans-mono font-droid-sans-mono-for-powerline \ | |
font-meslo-lg font-input \ | |
font-inconsolata font-inconsolata-for-powerline \ | |
font-liberation-mono font-liberation-mono-for-powerline \ | |
font-liberation-sans \ | |
font-meslo-lg \ | |
font-nixie-one \ | |
font-office-code-pro \ | |
font-pt-mono \ | |
font-raleway font-roboto \ | |
font-source-code-pro font-source-code-pro-for-powerline \ | |
font-source-sans-pro \ | |
font-ubuntu font-ubuntu-mono-powerline | |
# brew cask quicklook | |
echo_warn "Installing QuickLook Plugins..." | |
brew cask install \ | |
qlcolorcode qlmarkdown qlprettypatch qlstephen \ | |
qlimagesize \ | |
quicklook-csv quicklook-json epubquicklook | |
# Apps | |
echo_warn "Installing applications..." | |
brew cask install google-chrome google-hangouts google-drive | |
# other favorites | |
brew cask install \ | |
bettertouchtool caffeine day-o karabiner the-unarchiver flux\ | |
1password dropbox evernote skitch picturelife \ | |
minecraft spotify transmission vlc \ | |
adafruit-arduino iterm2 mongohub chrome-devtools firefox sublime-text3 \ | |
slack skype telephone \ | |
citrix-receiver omnigraffle viscosity | |
# xquartz | |
echo_warn "Installing xquartz (this big download can be slow)" | |
n=0 | |
until [ $n -ge 20 ]; do | |
brew cask install xquartz && break | |
n=$[$n+1] | |
echo_error "... install failed, retry $n" | |
done | |
# brew imagemagick | |
brew cask install inkscape | |
brew install librsvg | |
brew install imagemagick --with-librsvg | |
echo | |
echo_ok "Done." | |
echo | |
echo "After Dropbox has finished installing, link Sublime Text settings:" | |
echo_warn " cd ~/Library/Application\ Support/Sublime\ Text\ 3/" | |
echo_warn " rm -rf Packages" | |
echo_warn " ln -s ~/Dropbox/Sublime/Packages ." | |
echo | |
echo "Then go to https://packagecontrol.io/installation for Package Control" | |
echo | |
echo "You may want to add the following settings to your .bashrc:" | |
echo_warn ' export HOMEBREW_CASK_OPTS="--appdir=/Applications"' | |
echo |
Please note the following issues/concerns/errors upon install:
Pouring qt-5.11.0.high_sierra.bottle.tar.gz ==> Caveats We agreed to the Qt open source license for you. If this is unacceptable you should
uninstall.`
This formula is keg-only, which means it was not symlinked into /usr/local, because Qt 5 has CMake issues when linked.
If you need to have this software first in your PATH run: _echo 'export PATH="/usr/local/opt/qt/bin:$PATH"' >> ~/.zshrc_
For compilers to find this software you may need to set: LDFLAGS: _-L/usr/local/opt/qt/lib_ CPPFLAGS: _-I/usr/local/opt/qt/include_ For pkg-config to find this software you may need to set: _PKG_CONFIG_PATH: /usr/local/opt/qt/lib/pkgconfig_
Pouring lua-5.3.4_4.high_sierra.bottle.tar.gz ==> Caveats Please be aware due to the way Luarocks is designed any binaries installed via Luarocks-5.3 AND 5.1 will overwrite each other in _/usr/local/bin_.
This is, for now, unavoidable. If this is troublesome for you, you can build rocks with the
--tree= command to a special, non-conflicting location and then add that to your **
$PATH**.
-
Error: Cask 'font-droid-sans' is unavailable: No Cask with this name exists. Did you mean one of these? **font-droid-sans-mono-for-powerline font-droidsansmono-nerd-font-mono font-droidsansmono-nerd-font**
-
Error: Cask **'google-drive'** is unavailable: No Cask with this name exists. Did you mean “google-drive-file-stream”? y
-
Error: Cask **'picturelife'** is unavailable: No Cask with this name exists.
Error: homebrew/games was deprecated. This tap is now empty as all its formulae were migrated.