Created
March 10, 2012 17:19
-
-
Save simonjbeaumont/2012185 to your computer and use it in GitHub Desktop.
Three hidden goodies in iTunes (Terminal Hacks)
This file contains hidden or 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
#1: Invert iTunes Store links (Arrows name field browse Library) | |
defaults write com.apple.iTunes invertStoreLinks -bool YES | |
#2: Make [⌘F] focus the search input in iTunes | |
defaults write com.apple.iTunes NSUserKeyEquivalents -dict-add "Target Search Field" "@F" | |
#3: Enable iTunes track notifications in the Dock | |
defaults write com.apple.dock itunes-notifications -bool true | |
##### | |
# Bonus #1: Disable the Ping sidebar in iTunes | |
defaults write com.apple.iTunes disablePingSidebar -bool true | |
# Bonus #2: Disable all the other Ping stuff in iTunes | |
defaults write com.apple.iTunes disablePing -bool true |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment