2013-10-25 12:57:51 +00:00
|
|
|
|
#!/usr/bin/env zsh
|
2013-11-24 17:52:33 +00:00
|
|
|
|
#
|
|
|
|
|
# Thanks a lot to http://mths.be/osx
|
|
|
|
|
#
|
|
|
|
|
# Ask for the administrator password upfront
|
|
|
|
|
sudo -v
|
|
|
|
|
|
|
|
|
|
# Keep-alive: update existing `sudo` time stamp until `.osx` has finished
|
|
|
|
|
while true; do sudo -n true; sleep 60; kill -0 "$$" || exit; done 2>/dev/null &
|
|
|
|
|
|
|
|
|
|
###############################################################################
|
|
|
|
|
# General UI/UX #
|
|
|
|
|
###############################################################################
|
|
|
|
|
|
|
|
|
|
# Set computer name (as done via System Preferences → Sharing)
|
|
|
|
|
sudo scutil --set ComputerName "frickelbook"
|
|
|
|
|
sudo scutil --set HostName "frickelbook"
|
|
|
|
|
sudo scutil --set LocalHostName "frickelbook"
|
|
|
|
|
sudo defaults write /Library/Preferences/SystemConfiguration/com.apple.smb.server NetBIOSName -string "frickelbook"
|
|
|
|
|
|
|
|
|
|
# Menu bar: disable transparency
|
2013-07-19 18:40:08 +00:00
|
|
|
|
defaults write NSGlobalDomain AppleEnableMenuBarTransparency -bool false
|
|
|
|
|
|
2013-11-24 17:52:33 +00:00
|
|
|
|
# Menu bar: show remaining battery time (on pre-10.8); hide percentage
|
|
|
|
|
defaults write com.apple.menuextra.battery ShowPercent -string "NO"
|
|
|
|
|
defaults write com.apple.menuextra.battery ShowTime -string "YES"
|
|
|
|
|
|
|
|
|
|
# Disable opening and closing window animations
|
|
|
|
|
defaults write NSGlobalDomain NSAutomaticWindowAnimationsEnabled -bool false
|
|
|
|
|
|
|
|
|
|
# Increase window resize speed for Cocoa applications
|
|
|
|
|
defaults write NSGlobalDomain NSWindowResizeTime -float 0.001
|
|
|
|
|
|
2013-07-19 18:40:08 +00:00
|
|
|
|
# Expand save panel by default
|
|
|
|
|
defaults write NSGlobalDomain NSNavPanelExpandedStateForSaveMode -bool true
|
|
|
|
|
|
|
|
|
|
# Expand print panel by default
|
|
|
|
|
defaults write NSGlobalDomain PMPrintingExpandedStateForPrint -bool true
|
|
|
|
|
|
2013-11-24 17:52:33 +00:00
|
|
|
|
# Save to disk (not to iCloud) by default
|
|
|
|
|
defaults write NSGlobalDomain NSDocumentSaveNewDocumentsToCloud -bool false
|
2013-07-19 18:40:08 +00:00
|
|
|
|
|
2013-11-24 17:52:33 +00:00
|
|
|
|
# Automatically quit printer app once the print jobs complete
|
|
|
|
|
defaults write com.apple.print.PrintingPrefs "Quit When Finished" -bool true
|
|
|
|
|
|
|
|
|
|
# Disable the “Are you sure you want to open this application?” dialog
|
|
|
|
|
defaults write com.apple.LaunchServices LSQuarantine -bool false
|
|
|
|
|
|
|
|
|
|
# Display ASCII control characters using caret notation in standard text views
|
|
|
|
|
# Try e.g. `cd /tmp; unidecode "\x{0000}" > cc.txt; open -e cc.txt`
|
|
|
|
|
defaults write NSGlobalDomain NSTextShowsControlCharacters -bool true
|
2013-07-19 18:40:08 +00:00
|
|
|
|
|
|
|
|
|
# Disable Resume system-wide
|
|
|
|
|
defaults write NSGlobalDomain NSQuitAlwaysKeepsWindows -bool false
|
|
|
|
|
|
2013-11-24 17:52:33 +00:00
|
|
|
|
# Disable automatic termination of inactive apps
|
|
|
|
|
defaults write NSGlobalDomain NSDisableAutomaticTermination -bool true
|
|
|
|
|
|
|
|
|
|
# Set Help Viewer windows to non-floating mode
|
|
|
|
|
defaults write com.apple.helpviewer DevMode -bool true
|
|
|
|
|
|
|
|
|
|
# Restart automatically if the computer freezes
|
|
|
|
|
systemsetup -setrestartfreeze on
|
|
|
|
|
|
|
|
|
|
# Disable smart quotes as they’re annoying when typing code
|
|
|
|
|
defaults write NSGlobalDomain NSAutomaticQuoteSubstitutionEnabled -bool false
|
|
|
|
|
|
|
|
|
|
# Disable smart dashes as they’re annoying when typing code
|
|
|
|
|
defaults write NSGlobalDomain NSAutomaticDashSubstitutionEnabled -bool false
|
2013-07-19 18:40:08 +00:00
|
|
|
|
|
2014-01-01 16:07:20 +00:00
|
|
|
|
# Hibernation for SSD and max filevault security
|
|
|
|
|
sudo pmset -a destroyfvkeyonstandby 1 hibernatemode 25
|
2013-11-24 17:52:33 +00:00
|
|
|
|
|
|
|
|
|
# Disable the sudden motion sensor as it’s not useful for SSDs
|
|
|
|
|
sudo pmset -a sms 0
|
|
|
|
|
|
|
|
|
|
# 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
|
|
|
|
|
|
|
|
|
|
# Disable “natural” (Lion-style) scrolling
|
|
|
|
|
defaults write NSGlobalDomain com.apple.swipescrolldirection -bool false
|
|
|
|
|
|
|
|
|
|
# Enable full keyboard access for all controls
|
|
|
|
|
# (e.g. enable Tab in modal dialogs)
|
2013-07-19 18:40:08 +00:00
|
|
|
|
defaults write NSGlobalDomain AppleKeyboardUIMode -int 3
|
|
|
|
|
|
2013-11-24 17:52:33 +00:00
|
|
|
|
# Use scroll gesture with the Ctrl (^) modifier key to zoom
|
|
|
|
|
defaults write com.apple.universalaccess closeViewScrollWheelToggle -bool true
|
|
|
|
|
defaults write com.apple.universalaccess HIDScrollZoomModifierMask -int 262144
|
|
|
|
|
# Follow the keyboard focus while zoomed in
|
|
|
|
|
defaults write com.apple.universalaccess closeViewZoomFollowsFocus -bool true
|
|
|
|
|
|
|
|
|
|
# Disable press-and-hold for keys in favor of key repeat
|
|
|
|
|
defaults write NSGlobalDomain ApplePressAndHoldEnabled -bool false
|
|
|
|
|
|
|
|
|
|
# Set a blazingly fast keyboard repeat rate
|
|
|
|
|
defaults write NSGlobalDomain KeyRepeat -int 0
|
2013-07-19 18:40:08 +00:00
|
|
|
|
|
|
|
|
|
# Disable auto-correct
|
|
|
|
|
defaults write NSGlobalDomain NSAutomaticSpellingCorrectionEnabled -bool false
|
|
|
|
|
|
2013-11-24 17:52:33 +00:00
|
|
|
|
# Require password immediately after sleep or screen saver begins
|
|
|
|
|
defaults write com.apple.screensaver askForPassword -int 1
|
|
|
|
|
defaults write com.apple.screensaver askForPasswordDelay -int 0
|
|
|
|
|
|
|
|
|
|
# Save screenshots to the desktop
|
|
|
|
|
defaults write com.apple.screencapture location -string "${HOME}/Desktop"
|
|
|
|
|
|
|
|
|
|
# Save screenshots in PNG format (other options: BMP, GIF, JPG, PDF, TIFF)
|
|
|
|
|
defaults write com.apple.screencapture type -string "png"
|
|
|
|
|
|
|
|
|
|
# Enable subpixel font rendering on non-Apple LCDs
|
|
|
|
|
defaults write NSGlobalDomain AppleFontSmoothing -int 2
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
# Finder: allow quitting via ⌘ + Q; doing so will also hide desktop icons
|
|
|
|
|
defaults write com.apple.finder QuitMenuItem -bool true
|
|
|
|
|
|
|
|
|
|
# Finder: disable window animations and Get Info animations
|
2013-07-19 18:40:08 +00:00
|
|
|
|
defaults write com.apple.finder DisableAllAnimations -bool true
|
|
|
|
|
|
2013-11-24 17:52:33 +00:00
|
|
|
|
# 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
|
|
|
|
|
|
|
|
|
|
# Finder: show hidden files by default
|
|
|
|
|
defaults write com.apple.finder AppleShowAllFiles -bool true
|
|
|
|
|
|
|
|
|
|
# Finder: show all filename extensions
|
2013-07-19 18:40:08 +00:00
|
|
|
|
defaults write NSGlobalDomain AppleShowAllExtensions -bool true
|
|
|
|
|
|
2013-11-24 17:52:33 +00:00
|
|
|
|
# Finder: show status bar
|
2013-07-19 18:40:08 +00:00
|
|
|
|
defaults write com.apple.finder ShowStatusBar -bool true
|
|
|
|
|
|
2013-11-24 17:52:33 +00:00
|
|
|
|
# Finder: show path bar
|
|
|
|
|
defaults write com.apple.finder ShowPathbar -bool true
|
2013-07-19 18:40:08 +00:00
|
|
|
|
|
2013-11-24 17:52:33 +00:00
|
|
|
|
# Finder: allow text selection in Quick Look
|
|
|
|
|
defaults write com.apple.finder QLEnableTextSelection -bool true
|
2013-07-19 18:40:08 +00:00
|
|
|
|
|
|
|
|
|
# Display full POSIX path as Finder window title
|
|
|
|
|
defaults write com.apple.finder _FXShowPosixPathInTitle -bool true
|
|
|
|
|
|
2013-11-24 17:52:33 +00:00
|
|
|
|
# When performing a search, search the current folder by default
|
|
|
|
|
defaults write com.apple.finder FXDefaultSearchScope -string "SCcf"
|
2013-07-19 18:40:08 +00:00
|
|
|
|
|
|
|
|
|
# Disable the warning when changing a file extension
|
|
|
|
|
defaults write com.apple.finder FXEnableExtensionChangeWarning -bool false
|
|
|
|
|
|
2013-11-24 17:52:33 +00:00
|
|
|
|
# Enable spring loading for directories
|
|
|
|
|
defaults write NSGlobalDomain com.apple.springing.enabled -bool true
|
2013-07-19 18:40:08 +00:00
|
|
|
|
|
2013-11-24 17:52:33 +00:00
|
|
|
|
# Remove the spring loading delay for directories
|
|
|
|
|
defaults write NSGlobalDomain com.apple.springing.delay -float 0
|
|
|
|
|
|
|
|
|
|
# Avoid creating .DS_Store files on network volumes
|
|
|
|
|
defaults write com.apple.desktopservices DSDontWriteNetworkStores -bool true
|
|
|
|
|
|
|
|
|
|
# Disable disk image verification
|
|
|
|
|
defaults write com.apple.frameworks.diskimages skip-verify -bool true
|
|
|
|
|
defaults write com.apple.frameworks.diskimages skip-verify-locked -bool true
|
|
|
|
|
defaults write com.apple.frameworks.diskimages skip-verify-remote -bool true
|
|
|
|
|
|
|
|
|
|
# Automatically open a new Finder window when a volume is mounted
|
|
|
|
|
defaults write com.apple.frameworks.diskimages auto-open-ro-root -bool true
|
|
|
|
|
defaults write com.apple.frameworks.diskimages auto-open-rw-root -bool true
|
|
|
|
|
defaults write com.apple.finder OpenWindowForNewRemovableDisk -bool true
|
|
|
|
|
|
|
|
|
|
# Use list view in all Finder windows by default
|
|
|
|
|
# Four-letter codes for the other view modes: `icnv`, `clmv`, `Flwv`
|
|
|
|
|
defaults write com.apple.finder FXPreferredViewStyle -string "Nlsv"
|
2013-07-19 18:40:08 +00:00
|
|
|
|
|
|
|
|
|
# Disable the warning before emptying the Trash
|
|
|
|
|
defaults write com.apple.finder WarnOnEmptyTrash -bool false
|
|
|
|
|
|
2013-11-24 17:52:33 +00:00
|
|
|
|
# Empty Trash securely by default
|
|
|
|
|
defaults write com.apple.finder EmptyTrashSecurely -bool true
|
|
|
|
|
|
|
|
|
|
# Enable AirDrop over Ethernet and on unsupported Macs running Lion
|
|
|
|
|
defaults write com.apple.NetworkBrowser BrowseAllInterfaces -bool true
|
|
|
|
|
|
2013-07-19 18:40:08 +00:00
|
|
|
|
# Show the ~/Library folder
|
|
|
|
|
chflags nohidden ~/Library
|
|
|
|
|
|
|
|
|
|
# Enable spring loading for all Dock items
|
|
|
|
|
defaults write com.apple.dock enable-spring-load-actions-on-all-items -bool true
|
|
|
|
|
|
2013-11-24 17:52:33 +00:00
|
|
|
|
# Speed up Mission Control animations
|
|
|
|
|
defaults write com.apple.dock expose-animation-duration -float 0.1
|
2013-07-19 18:40:08 +00:00
|
|
|
|
|
2013-11-24 17:52:33 +00:00
|
|
|
|
# Disable Dashboard
|
|
|
|
|
defaults write com.apple.dashboard mcx-disabled -bool true
|
2013-07-19 18:40:08 +00:00
|
|
|
|
|
2013-11-24 17:52:33 +00:00
|
|
|
|
# Don’t show Dashboard as a Space
|
|
|
|
|
defaults write com.apple.dock dashboard-in-overlay -bool true
|
|
|
|
|
|
|
|
|
|
# Remove the auto-hiding Dock delay
|
|
|
|
|
defaults write com.apple.dock autohide-delay -float 0
|
2013-07-19 18:40:08 +00:00
|
|
|
|
# Remove the animation when hiding/showing the Dock
|
|
|
|
|
defaults write com.apple.dock autohide-time-modifier -float 0
|
|
|
|
|
|
|
|
|
|
# Automatically hide and show the Dock
|
|
|
|
|
defaults write com.apple.dock autohide -bool true
|
|
|
|
|
|
|
|
|
|
# Make Dock icons of hidden applications translucent
|
|
|
|
|
defaults write com.apple.dock showhidden -bool true
|
|
|
|
|
|
2013-11-24 17:52:33 +00:00
|
|
|
|
# Reset Launchpad
|
|
|
|
|
find ~/Library/Application\ Support/Dock -name "*.db" -maxdepth 1 -delete
|
|
|
|
|
|
|
|
|
|
# Set Safari’s home page to `about:blank` for faster loading
|
|
|
|
|
defaults write com.apple.Safari HomePage -string "about:blank"
|
|
|
|
|
|
|
|
|
|
# Prevent Safari from opening ‘safe’ files automatically after downloading
|
|
|
|
|
defaults write com.apple.Safari AutoOpenSafeDownloads -bool false
|
|
|
|
|
|
|
|
|
|
# Allow hitting the Backspace key to go to the previous page in history
|
|
|
|
|
defaults write com.apple.Safari com.apple.Safari.ContentPageGroupIdentifier.WebKit2BackspaceKeyNavigationEnabled -bool true
|
|
|
|
|
|
|
|
|
|
# Hide Safari’s bookmarks bar by default
|
|
|
|
|
defaults write com.apple.Safari ShowFavoritesBar -bool false
|
|
|
|
|
|
|
|
|
|
# Disable Safari’s thumbnail cache for History and Top Sites
|
|
|
|
|
defaults write com.apple.Safari DebugSnapshotsUpdatePolicy -int 2
|
|
|
|
|
|
2013-07-19 18:40:08 +00:00
|
|
|
|
# Enable Safari’s debug menu
|
|
|
|
|
defaults write com.apple.Safari IncludeInternalDebugMenu -bool true
|
|
|
|
|
|
2013-11-24 17:52:33 +00:00
|
|
|
|
# Make Safari’s search banners default to Contains instead of Starts With
|
|
|
|
|
defaults write com.apple.Safari FindOnPageMatchesWordStartsOnly -bool false
|
2013-07-19 18:40:08 +00:00
|
|
|
|
|
2013-11-24 17:52:33 +00:00
|
|
|
|
# Remove useless icons from Safari’s bookmarks bar
|
|
|
|
|
defaults write com.apple.Safari ProxiesInBookmarksBar "()"
|
2013-07-19 18:40:08 +00:00
|
|
|
|
|
2013-11-24 17:52:33 +00:00
|
|
|
|
# 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
|
2013-07-19 18:40:08 +00:00
|
|
|
|
|
2013-11-24 17:52:33 +00:00
|
|
|
|
# Add a context menu item for showing the Web Inspector in web views
|
|
|
|
|
defaults write NSGlobalDomain WebKitDeveloperExtras -bool true
|
2013-07-19 18:40:08 +00:00
|
|
|
|
|
|
|
|
|
# Disable send and reply animations in Mail.app
|
2013-11-24 17:52:33 +00:00
|
|
|
|
defaults write com.apple.mail DisableReplyAnimations -bool true
|
|
|
|
|
defaults write com.apple.mail DisableSendAnimations -bool true
|
2013-07-19 18:40:08 +00:00
|
|
|
|
|
|
|
|
|
# Copy email addresses as `foo@example.com` instead of `Foo Bar <foo@example.com>` in Mail.app
|
|
|
|
|
defaults write com.apple.mail AddressesIncludeNameOnPasteboard -bool false
|
|
|
|
|
|
2013-11-24 17:52:33 +00:00
|
|
|
|
# Disable inline attachments (just show the icons)
|
|
|
|
|
defaults write com.apple.mail DisableInlineAttachmentViewing -bool true
|
|
|
|
|
|
|
|
|
|
# Disable automatic spell checking
|
|
|
|
|
defaults write com.apple.mail SpellCheckingBehavior -string "NoSpellCheckingEnabled"
|
|
|
|
|
|
|
|
|
|
# Only use UTF-8 in Terminal.app
|
|
|
|
|
defaults write com.apple.terminal StringEncodings -array 4
|
|
|
|
|
|
|
|
|
|
# Don’t display the annoying prompt when quitting iTerm
|
|
|
|
|
defaults write com.googlecode.iterm2 PromptOnQuit -bool false
|
|
|
|
|
|
2013-07-19 18:40:08 +00:00
|
|
|
|
# Prevent Time Machine from prompting to use new hard drives as backup volume
|
|
|
|
|
defaults write com.apple.TimeMachine DoNotOfferNewDisksForBackup -bool true
|
2013-11-24 17:52:33 +00:00
|
|
|
|
|
|
|
|
|
# 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
|
|
|
|
|
|
|
|
|
|
# Disable smart quotes as it’s annoying for messages that contain code
|
|
|
|
|
defaults write com.apple.messageshelper.MessageController SOInputLineSettings -dict-add "automaticQuoteSubstitutionEnabled" -bool false
|
|
|
|
|
|
|
|
|
|
# Disable continuous spell checking
|
|
|
|
|
defaults write com.apple.messageshelper.MessageController SOInputLineSettings -dict-add "continuousSpellCheckingEnabled" -bool false
|
|
|
|
|
|
|
|
|
|
###############################################################################
|
|
|
|
|
# Transmission.app #
|
|
|
|
|
###############################################################################
|
|
|
|
|
|
|
|
|
|
# Use `~/Downloads/Torrents` to store incomplete downloads
|
|
|
|
|
defaults write org.m0k.transmission UseIncompleteDownloadFolder -bool true
|
|
|
|
|
defaults write org.m0k.transmission IncompleteDownloadFolder -string "${HOME}/Downloads/Torrents"
|
|
|
|
|
|
|
|
|
|
# Don’t prompt for confirmation before downloading
|
|
|
|
|
defaults write org.m0k.transmission DownloadAsk -bool false
|
|
|
|
|
|
|
|
|
|
# Trash original torrent files
|
|
|
|
|
defaults write org.m0k.transmission DeleteOriginalTorrent -bool true
|
|
|
|
|
|
|
|
|
|
# Hide the donate message
|
|
|
|
|
defaults write org.m0k.transmission WarningDonate -bool false
|
|
|
|
|
# Hide the legal disclaimer
|
|
|
|
|
defaults write org.m0k.transmission WarningLegal -bool false
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
###############################################################################
|
|
|
|
|
# Kill affected applications #
|
|
|
|
|
###############################################################################
|
|
|
|
|
|
|
|
|
|
for app in "Address Book" "Calendar" "Contacts" "Dock" "Finder" "Mail" \
|
|
|
|
|
"Messages" "Safari" "SizeUp" "SystemUIServer" "Terminal" "Transmission" \
|
|
|
|
|
"Twitter" "iCal"; do
|
|
|
|
|
killall "${app}" > /dev/null 2>&1
|
|
|
|
|
done
|
|
|
|
|
echo "Done. Note that some of these changes require a logout/restart to take effect."
|
|
|
|
|
|