diff options
author | Mathias Bynens <mathias@qiwi.be> | 2012-12-15 20:30:34 +0100 |
---|---|---|
committer | Mathias Bynens <mathias@qiwi.be> | 2012-12-15 20:30:34 +0100 |
commit | b7389dc0babd93d599b2b55bb65e3a5ec7ddaa59 (patch) | |
tree | dd258916f112df521a0d9962a7772e176f53949f | |
parent | 13658feed24aae0398941eef1ee5571a84fec74e (diff) | |
download | dotfiles-b7389dc0babd93d599b2b55bb65e3a5ec7ddaa59.tar.gz dotfiles-b7389dc0babd93d599b2b55bb65e3a5ec7ddaa59.tar.bz2 dotfiles-b7389dc0babd93d599b2b55bb65e3a5ec7ddaa59.zip |
.osx: Show item info to the right of the icons on the desktop
-rwxr-xr-x | .osx | 5 |
1 files changed, 4 insertions, 1 deletions
@@ -230,11 +230,14 @@ 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 -# Show item info below icons on the desktop and in other icon views +# Show item info near icons on the desktop and in other icon views /usr/libexec/PlistBuddy -c "Set :DesktopViewSettings:IconViewSettings:showItemInfo true" ~/Library/Preferences/com.apple.finder.plist /usr/libexec/PlistBuddy -c "Set :FK_StandardViewSettings:IconViewSettings:showItemInfo true" ~/Library/Preferences/com.apple.finder.plist /usr/libexec/PlistBuddy -c "Set :StandardViewSettings:IconViewSettings:showItemInfo true" ~/Library/Preferences/com.apple.finder.plist +# Show item info to the right of the icons on the desktop +/usr/libexec/PlistBuddy -c "Set DesktopViewSettings:IconViewSettings:labelOnBottom false" ~/Library/Preferences/com.apple.finder.plist + # 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 |