Skip to content

Instantly share code, notes, and snippets.

@samschooler
Created November 26, 2012 02:31
Show Gist options
  • Save samschooler/4146276 to your computer and use it in GitHub Desktop.
Save samschooler/4146276 to your computer and use it in GitHub Desktop.
Setup Mountain Lion

Settings


  1. "Security & Privacy" -> "Allow Applications Downloaded From" - "Anywhere"

Non-App Store Apps


  1. Google Chrome
  2. Sublime Text 2
  3. Spotify
  4. BitTorrent
  5. GitHub

App Store Apps


  1. Xcode
  2. Better Snap Tool
  3. Cloud
  4. MailTab

Utilities


  1. Music Manager
  2. Dropbox
  3. Drive

Customize


  1. Customize Desktop - GeekTool
  2. Desktop Music Pause/Play - Bowtie
    • Minimal Theme
  3. Transparent Dock - Mirage
  4. Move Dock - Docker

Terminal Hacks


  1. Show Hidden Files
    • Do: defaults write com.apple.Finder AppleShowAllFiles TRUE
    • Undo: defaults write com.apple.Finder AppleShowAllFiles FALSE
  2. Change Screenshots to .PNG
    • Do: defaults write com.apple.screencapture type png
    • Undo: defaults write com.apple.screencapture type jpg
  3. Disable Dashboard
    • Do: defaults write com.apple.dashboard mcx-disabled -boolean YES
    • Undo: defaults write com.apple.dashboard mcx-disabled -boolean NO
  4. Show Full Path in Finder
    • Do: defaults write com.apple.finder _FXShowPosixPathInTitle -bool YES
    • Undo: defaults write com.apple.finder _FXShowPosixPathInTitle -bool NO
  5. Add Quit to Finder
    • Do: defaults write com.apple.finder QuitMenuItem -bool YES
    • Undo: defaults write com.apple.finder QuitMenuItem -bool NO
  6. Change Transparency of Hidden Apps in Dock
    • Do: defaults write com.apple.Dock showhidden -bool YES
    • Undo: defaults write com.apple.Dock showhidden -bool NO
  7. Change Default Save Location to Hard Drive
    • Do: defaults write NSGlobalDomain NSDocumentSaveNewDocumentsToCloud -bool false
    • Undo: defaults write NSGlobalDomain NSDocumentSaveNewDocumentsToCloud -bool true

More Fun Terminal Hacks


Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment