diff --git a/osx b/osx index 2a6f775..daa1a20 100755 --- a/osx +++ b/osx @@ -4,6 +4,11 @@ # https://github.com/mathiasbynens/dotfiles/blob/master/.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 # @@ -45,8 +50,10 @@ defaults write com.apple.frameworks.diskimages skip-verify-remote -bool true # Avoid creating .DS_Store files on network volumes defaults write com.apple.desktopservices DSDontWriteNetworkStores -bool true -# Enable snap-to-grid for desktop icons +# Enable snap-to-grid for icons on the desktop and in other icon views /usr/libexec/PlistBuddy -c "Set :DesktopViewSettings:IconViewSettings:arrangeBy grid" ~/Library/Preferences/com.apple.finder.plist +/usr/libexec/PlistBuddy -c "Set :FK_StandardViewSettings:IconViewSettings:arrangeBy grid" ~/Library/Preferences/com.apple.finder.plist +/usr/libexec/PlistBuddy -c "Set :StandardViewSettings:IconViewSettings:arrangeBy grid" ~/Library/Preferences/com.apple.finder.plist # Disable the warning before emptying the Trash defaults write com.apple.finder WarnOnEmptyTrash -bool false @@ -59,12 +66,18 @@ chflags nohidden ~/Library ############################################################################### -# Dock # +# Dock, Dashboard, and hot corners # ############################################################################### # Show indicator lights for open applications in the Dock defaults write com.apple.dock show-process-indicators -bool true +# Speed up Mission Control animations +defaults write com.apple.dock expose-animation-duration -float 0.1 + +# Don’t automatically rearrange Spaces based on most recent use +defaults write com.apple.dock mru-spaces -bool false + # Add a spacer to the left side of the Dock (where the applications are) #defaults write com.apple.dock persistent-apps -array-add '{tile-data={}; tile-type="spacer-tile";}' # Add a spacer to the right side of the Dock (where the Trash is) @@ -75,33 +88,38 @@ defaults write com.apple.dock show-process-indicators -bool true # Safari & WebKit # ############################################################################### +# Set Safari’s home page to `about:blank` for faster loading +defaults write com.apple.Safari HomePage -string "about:blank" + # 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 -# Enable Safari's develop menu -#defaults write com.apple.Safari IncludeDevelopMenu -bool true -#defaults write com.apple.Safari WebKitDeveloperExtrasEnabledPreferenceKey -bool true - # Enable Safari’s debug menu -#defaults write com.apple.Safari IncludeInternalDebugMenu -bool true +defaults write com.apple.Safari IncludeInternalDebugMenu -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 # Make Safari’s search banners default to Contains instead of Starts With defaults write com.apple.Safari FindOnPageMatchesWordStartsOnly -bool false # Set web style sheet -#defaults write com.apple.Safari UserStyleSheetEnabled -bool true -#defaults write com.apple.Safari UserStyleSheetLocationURLString -string "~/Projects/dotfiles/webstyle.css" -#defaults write com.apple.Safari WebKitUserStyleSheetLocationPreferenceKey -string "~/Projects/webstyle.css" +defaults write com.apple.Safari UserStyleSheetEnabled -bool true +defaults write com.apple.Safari UserStyleSheetLocationURLString -string "~/Projects/dotfiles/webstyle.css" +defaults write com.apple.Safari WebKitUserStyleSheetLocationPreferenceKey -string "~/Projects/webstyle.css" ############################################################################### -# Address Book, Dashboard, iCal, iTunes, Mail, and Disk Utility # +# Mail # ############################################################################### # Copy email addresses as `foo@example.com` instead of `Foo Bar ` in Mail.app defaults write com.apple.mail AddressesIncludeNameOnPasteboard -bool false + ############################################################################### # Terminal # ############################################################################### @@ -118,4 +136,12 @@ defaults write com.apple.terminal StringEncodings -array 4 defaults write com.apple.TimeMachine DoNotOfferNewDisksForBackup -bool true # Disable local Time Machine backups -#hash tmutil &> /dev/null && sudo tmutil disablelocal +hash tmutil &> /dev/null && sudo tmutil disablelocal + + +############################################################################### +# GPGMail 2 # +############################################################################### + +# Disable signing emails by default +defaults write ~/Library/Preferences/org.gpgtools.gpgmail SignNewEmailsByDefault -bool false