-
-
Save snarbin/42f87b6586626c74fbe339c86ce93a8e to your computer and use it in GitHub Desktop.
Script to install stuff I want on a new OSX machine
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/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: | |
# | |
# - Xcode (for command line tools) | |
# - bettersnaptool | |
# - Microsoft Remote Desktop | |
# - QGIS | |
# | |
# 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/ | |
echo "Start bootstrapping mac" | |
# Ask for the administrator password upfront | |
sudo -v | |
# Check for Homebrew, install if we don't have it | |
if test ! $(which brew); then | |
echo "Installing homebrew..." | |
/usr/bin/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 | |
brew install gnu-sed --with-default-names | |
brew install gnu-tar --with-default-names | |
brew install gnu-indent --with-default-names | |
brew install gnu-which --with-default-names | |
# Install GNU `find`, `locate`, `updatedb`, and `xargs`, g-prefixed | |
brew install findutils | |
# Install Bash 4 | |
brew install bash | |
PACKAGES=( | |
gdal | |
git | |
gradle | |
groovy | |
maven | |
node | |
openssl | |
pipenv | |
python@2 | |
python3 | |
awscli | |
[email protected] # need additional command to make this the default if installing multiple versions | |
scala | |
wget | |
vim | |
) | |
echo "Installing packages..." | |
brew install ${PACKAGES[@]} | |
echo "Cleaning up..." | |
brew cleanup | |
echo "Installing cask..." | |
#brew install caskroom/cask/brew-cask | |
brew tap homebrew/cask-versions | |
# Need to update so it doesn't fail if apps are already installed (like firefox was) | |
CASKS=( | |
adobe-acrobat-reader | |
appcleaner | |
atom | |
dbvisualizer | |
docker | |
filezilla | |
google-chrome | |
intellij-idea-ce | |
java8 | |
postman | |
pycharm-ce | |
spotify | |
the-unarchiver | |
webstorm | |
) | |
echo "Installing cask apps..." | |
brew cask install ${CASKS[@]} | |
# Needs java8 installed first | |
brew install apache-spark | |
echo "Installing Python packages..." | |
PYTHON_PACKAGES=( | |
aws-sam-cli | |
psycopg2 | |
setuptools | |
virtualenv | |
) | |
sudo pip3 install ${PYTHON_PACKAGES[@]} | |
echo "Installing global npm packages..." | |
npm install marked -g | |
echo "Configuring OSX..." | |
# Close any open System Preferences panes, to prevent them from overriding | |
# settings we’re about to change | |
osascript -e 'tell application "System Preferences" to quit' | |
# Create symlink for OneDrive without spaces | |
sudo ln -s ${HOME}/OneDrive\ -\ HERE\ Global\ B.V /onedrive | |
# Require password 5 seconds after screensaver or sleep mode starts | |
# defaults write com.apple.screensaver askForPassword -int 1 | |
defaults write com.apple.screensaver askForPasswordDelay -int 1 | |
# Finder: show status bar | |
defaults write com.apple.finder ShowStatusBar -bool true | |
# Finder: show path bar | |
defaults write com.apple.finder ShowPathbar -bool true | |
# Finder: show hidden files by default | |
defaults write com.apple.finder AppleShowAllFiles -bool true | |
# Finder > Preferences > Show all filename extensions | |
defaults write NSGlobalDomain AppleShowAllExtensions -bool true | |
# Finder > Preferences > Show warning before changing an extension | |
defaults write com.apple.finder FXEnableExtensionChangeWarning -bool false | |
# Finder > Preferences > Show warning before removing from iCloud Drive | |
defaults write com.apple.finder FXEnableRemoveFromICloudDriveWarning -bool false | |
# Finder > View > As List | |
defaults write com.apple.finder FXPreferredViewStyle -string "Nlsv" | |
# Keep folders on top when sorting by name | |
defaults write com.apple.finder _FXSortFoldersFirst -bool true | |
# When performing a search, search the current folder by default | |
defaults write com.apple.finder FXDefaultSearchScope -string "SCcf" | |
# Avoid creating .DS_Store files on network or USB volumes | |
defaults write com.apple.desktopservices DSDontWriteNetworkStores -bool true | |
defaults write com.apple.desktopservices DSDontWriteUSBStores -bool true | |
# Enable AirDrop over Ethernet and on unsupported Macs running Lion | |
defaults write com.apple.NetworkBrowser BrowseAllInterfaces -bool true | |
# Show the ~/Library folder | |
chflags nohidden ~/Library | |
# Set ~/projects as the default location for new Finder windows | |
# For other paths, use `PfLo` and `file:///full/path/here/` | |
defaults write com.apple.finder NewWindowTarget -string "PfLo" | |
defaults write com.apple.finder NewWindowTargetPath -string "file://${HOME}/projects/" | |
# Show icons for hard drives, servers, and removable media on the desktop | |
defaults write com.apple.finder ShowExternalHardDrivesOnDesktop -bool true | |
defaults write com.apple.finder ShowHardDrivesOnDesktop -bool true | |
defaults write com.apple.finder ShowMountedServersOnDesktop -bool true | |
defaults write com.apple.finder ShowRemovableMediaOnDesktop -bool true | |
################ | |
# Keyboard | |
################ | |
# All controls - tab moves selection to use with spacebar | |
defaults write NSGlobalDomain AppleKeyboardUIMode -int 3 | |
################ | |
# Dock | |
################ | |
# Add a stack with recent applications | |
defaults write com.apple.dock persistent-others -array-add '{ "tile-data" = { "list-type" = 1; }; "tile-type" = "recents-tile"; }' && \ | |
# System Preferences > Dock > Minimize windows using: Scale effect | |
defaults write com.apple.dock mineffect -string "scale" | |
# System Preferences > Dock > Automatically hide and show the Dock: | |
defaults write com.apple.dock autohide -bool true | |
# System Preferences > Dock > Automatically hide and show the Dock (duration) | |
defaults write com.apple.dock autohide-time-modifier -float 0.5 | |
# System Preferences > Dock > Automatically hide and show the Dock (delay) | |
defaults write com.apple.dock autohide-delay -float 0 | |
# System Preferences > Dock > Show indicators for open applications | |
defaults write com.apple.dock show-process-indicators -bool true | |
# # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # | |
# System Preferences > Mission Control > Automatically rearrange Spaces based on most recent use | |
defaults write com.apple.dock mru-spaces -bool false | |
# System Preferences > Mission Control > Dashboard | |
defaults write com.apple.dock dashboard-in-overlay -bool false | |
# Disable transparency in the menu bar and elsewhere on Yosemite | |
defaults write com.apple.universalaccess reduceTransparency -bool true | |
# Expand save panel by default | |
defaults write NSGlobalDomain NSNavPanelExpandedStateForSaveMode -bool true | |
defaults write NSGlobalDomain NSNavPanelExpandedStateForSaveMode2 -bool true | |
# Reveal IP address, hostname, OS version, etc. when clicking the clock | |
# in the login window | |
sudo defaults write /Library/Preferences/com.apple.loginwindow AdminHostInfo HostName | |
# Disable automatic capitalization as it’s annoying when typing code | |
defaults write NSGlobalDomain NSAutomaticCapitalizationEnabled -bool false | |
# Disable smart dashes as they’re annoying when typing code | |
defaults write NSGlobalDomain NSAutomaticDashSubstitutionEnabled -bool false | |
# Disable automatic period substitution as it’s annoying when typing code | |
defaults write NSGlobalDomain NSAutomaticPeriodSubstitutionEnabled -bool false | |
# Disable smart quotes as they’re annoying when typing code | |
defaults write NSGlobalDomain NSAutomaticQuoteSubstitutionEnabled -bool false | |
# Disable auto-correct | |
defaults write NSGlobalDomain NSAutomaticSpellingCorrectionEnabled -bool false | |
#### | |
# Trackpad | |
#### | |
# Trackpad: enable tap to click for this user and for the login screen | |
defaults write com.apple.driver.AppleBluetoothMultitouch.trackpad Clicking -bool true | |
defaults -currentHost write NSGlobalDomain com.apple.mouse.tapBehavior -int 1 | |
defaults write NSGlobalDomain com.apple.mouse.tapBehavior -int 1 | |
# Trackpad: map bottom right corner to right-click | |
defaults write com.apple.driver.AppleBluetoothMultitouch.trackpad TrackpadCornerSecondaryClick -int 2 | |
defaults write com.apple.driver.AppleBluetoothMultitouch.trackpad TrackpadRightClick -bool true | |
defaults -currentHost write NSGlobalDomain com.apple.trackpad.trackpadCornerClickBehavior -int 1 | |
defaults -currentHost write NSGlobalDomain com.apple.trackpad.enableSecondaryClick -bool true | |
# Magic Mouse right-click | |
defaults write com.apple.driver.AppleBluetoothMultitouch.mouse MouseButtonMode TwoButton | |
# Magic Mouse swipe beteern pages | |
######## | |
# Sounds | |
######## | |
# Disable the sound effects on boot | |
sudo nvram SystemAudioVolume=" " | |
# Disable chime when plugging mac into power | |
defaults write com.apple.PowerChime ChimeOnNoHardware -bool true | |
defaults write com.apple.PowerChime ChimeOnAllHardware -bool false; killall PowerChime | |
# Disbale sound effects | |
defaults write com.apple.systemsound "com.apple.sound.uiaudio.enabled" -int 0 | |
# Hot corners | |
# Possible values: | |
# 0: no-op | |
# 2: Mission Control | |
# 3: Show application windows | |
# 4: Desktop | |
# 5: Start screen saver | |
# 6: Disable screen saver | |
# 7: Dashboard | |
# 10: Put display to sleep | |
# 11: Launchpad | |
# 12: Notification Center | |
# Top left screen corner → Mission Control | |
defaults write com.apple.dock wvous-tl-corner -int 10 | |
defaults write com.apple.dock wvous-tl-modifier -int 0 | |
# Top right screen corner → Desktop | |
#defaults write com.apple.dock wvous-tr-corner -int 4 | |
#defaults write com.apple.dock wvous-tr-modifier -int 0 | |
# Bottom left screen corner → Start screen saver | |
#defaults write com.apple.dock wvous-bl-corner -int 5 | |
#defaults write com.apple.dock wvous-bl-modifier -int 0 | |
######## | |
# Safari | |
######## | |
# Show the full URL in the address bar (note: this still hides the scheme) | |
defaults write com.apple.Safari ShowFullURLInSmartSearchField -bool true | |
# Enable the Develop menu and the Web Inspector in Safari | |
defaults write com.apple.Safari IncludeDevelopMenu -bool true | |
defaults write com.apple.Safari WebKitDeveloperExtrasEnabledPreferenceKey -bool true | |
defaults write com.apple.Safari com.apple.Safari.ContentPageGroupIdentifier.WebKit2DeveloperExtrasEnabled -bool true | |
# Enable “Do Not Track” | |
defaults write com.apple.Safari SendDoNotTrackHTTPHeader -bool true | |
# Update extensions automatically | |
defaults write com.apple.Safari InstallExtensionUpdatesAutomatically -bool true | |
############################################################################### | |
# Terminal # | |
############################################################################### | |
# Only use UTF-8 in Terminal.app | |
defaults write com.apple.terminal StringEncodings -array 4 | |
# Use a modified version of the Solarized Dark theme by default in Terminal.app | |
osascript <<EOD | |
tell application "Terminal" | |
local allOpenedWindows | |
local initialOpenedWindows | |
local windowID | |
set themeName to "Ocean" | |
(* Store the IDs of all the open terminal windows. *) | |
set initialOpenedWindows to id of every window | |
(* Open the custom theme so that it gets added to the list | |
of available terminal themes (note: this will open two | |
additional terminal windows). *) | |
do shell script "open '$HOME/init/" & themeName & ".terminal'" | |
(* Wait a little bit to ensure that the custom theme is added. *) | |
delay 1 | |
(* Set the custom theme as the default terminal theme. *) | |
set default settings to settings set themeName | |
(* Get the IDs of all the currently opened terminal windows. *) | |
set allOpenedWindows to id of every window | |
repeat with windowID in allOpenedWindows | |
(* Close the additional windows that were opened in order | |
to add the custom theme to the list of terminal themes. *) | |
if initialOpenedWindows does not contain windowID then | |
close (every window whose id is windowID) | |
(* Change the theme for the initial opened terminal windows | |
to remove the need to close them in order for the custom | |
theme to be applied. *) | |
else | |
set current settings of tabs of (every window whose id is windowID) to settings set themeName | |
end if | |
end repeat | |
end tell | |
EOD | |
############################################################################### | |
# Address Book, Dashboard, iCal, TextEdit, and Disk Utility # | |
############################################################################### | |
# Enable the debug menu in Address Book | |
defaults write com.apple.addressbook ABShowDebugMenu -bool true | |
# Enable Dashboard dev mode (allows keeping widgets on the desktop) | |
defaults write com.apple.dashboard devmode -bool true | |
# Enable the debug menu in iCal (pre-10.8) | |
defaults write com.apple.iCal IncludeDebugMenu -bool true | |
# Use plain text mode for new TextEdit documents | |
defaults write com.apple.TextEdit RichText -int 0 | |
# Open and save files as UTF-8 in TextEdit | |
defaults write com.apple.TextEdit PlainTextEncoding -int 4 | |
defaults write com.apple.TextEdit PlainTextEncodingForWrite -int 4 | |
# Enable the debug menu in Disk Utility | |
defaults write com.apple.DiskUtility DUDebugMenuEnabled -bool true | |
defaults write com.apple.DiskUtility advanced-image-options -bool true | |
# Enable Debug Menu in the Mac App Store | |
defaults write com.apple.appstore ShowDebugMenu -bool true | |
# Enable the automatic update check | |
defaults write com.apple.SoftwareUpdate AutomaticCheckEnabled -bool true | |
# Check for software updates daily, not just once per week | |
defaults write com.apple.SoftwareUpdate ScheduleFrequency -int 1 | |
# Download newly available updates in background | |
defaults write com.apple.SoftwareUpdate AutomaticDownload -int 1 | |
# Install System data files & security updates | |
defaults write com.apple.SoftwareUpdate CriticalUpdateInstall -int 1 | |
# Automatically download apps purchased on other Macs | |
defaults write com.apple.SoftwareUpdate ConfigDataInstall -int 1 | |
# Turn on app auto-update | |
defaults write com.apple.commerce AutoUpdate -bool true | |
############################################################################### | |
# Photos # | |
############################################################################### | |
# Prevent Photos from opening automatically when devices are plugged in | |
defaults -currentHost write com.apple.ImageCapture disableHotPlug -bool true | |
# General | |
# Recent items - change to 15 | |
defaults write -g NSNavRecentPlacesLimit -int 15 && \ | |
# Use dark menu bar and Dock | |
# Automatically hide and show the menu bar | |
#### | |
# Security & Privacy | |
#### | |
# Allow your Apple Watch to unlock your Mac (must have signed in with iCloud account) | |
# Privacy - let weather use location | |
#### | |
# Finder - additional setup | |
#### | |
# Add 'Applications' folder stack to dock | |
# Favorites added to left panel of finder | |
# Show all connections in sidebar - Finder prefs | |
#### | |
# Display | |
#### | |
# Night Shift on | |
#echo "Creating folder structure..." | |
#[[ ! -d Wiki ]] && mkdir Wiki | |
#[[ ! -d Workspace ]] && mkdir Workspace | |
# Kill affected apps | |
for app in "Dock" "Finder"; do | |
killall "${app}" > /dev/null 2>&1 | |
done | |
echo "Bootstrapping complete" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment