Skip to content

Instantly share code, notes, and snippets.

@statico
Created July 26, 2012 23:05
Show Gist options
  • Star 5 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save statico/3185148 to your computer and use it in GitHub Desktop.
Save statico/3185148 to your computer and use it in GitHub Desktop.
Mac OS X Tricks

Switch between workspaces instantly with Ctrl-1, Ctrl-2, Ctrl-3, etc.

defaults write com.apple.dock workspaces-swoosh-animation-off -bool YES && killall Dock

Disable the "Application X has crashed" dialog

defaults write com.apple.CrashReporter DialogType none

Allow Screen Sharing (Cmd-K in Finder) to connect to vnc://localhost/

defaults write com.apple.ScreenSharing skipLocalAddressCheck -boolean YES

Speed up sheets (Open.. and Save... dialogs)

defaults write NSGlobalDomain NSWindowResizeTime .001

Font Smoothing options removed in 10.6

defaults -currentHost write -globalDomain AppleFontSmoothing -int 2
defaults -currentHost write -globalDomain AppleFontSmoothing -int 1
defaults -currentHost write -globalDomain AppleFontSmoothing -int 3

Enable WebGL in Safari

defaults write com.apple.Safari WebKitWebGLEnabled -bool YES

Enable developer menu in Safari

defaults write com.apple.Safari IncludeDebugMenu 1
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment