diff options
author | Mathias Bynens <mathias@qiwi.be> | 2012-07-26 16:25:24 +0200 |
---|---|---|
committer | Mathias Bynens <mathias@qiwi.be> | 2012-07-26 16:25:24 +0200 |
commit | a168e9376dc2c3a525402a4d29c5cf17432b0296 (patch) | |
tree | e26023478b73c9656d309efca7952f41019ffefc | |
parent | e4d22ec50585fbcd9198c60b52e8349d86dd29d5 (diff) | |
download | dotfiles-a168e9376dc2c3a525402a4d29c5cf17432b0296.tar.gz dotfiles-a168e9376dc2c3a525402a4d29c5cf17432b0296.tar.bz2 dotfiles-a168e9376dc2c3a525402a4d29c5cf17432b0296.zip |
.osx: Add more Finder settings for icons on the desktop and in icon views
-rwxr-xr-x | .osx | 18 |
1 files changed, 16 insertions, 2 deletions
@@ -160,11 +160,25 @@ 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 desktop icons +# Show item info below 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 -# 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 + +# Increase grid spacing for icons on the desktop and in other icon views +/usr/libexec/PlistBuddy -c "Set :DesktopViewSettings:IconViewSettings:gridSpacing 100" ~/Library/Preferences/com.apple.finder.plist +/usr/libexec/PlistBuddy -c "Set :FK_StandardViewSettings:IconViewSettings:gridSpacing 100" ~/Library/Preferences/com.apple.finder.plist +/usr/libexec/PlistBuddy -c "Set :StandardViewSettings:IconViewSettings:gridSpacing 100" ~/Library/Preferences/com.apple.finder.plist + +# Increase the size of icons on the desktop and in other icon views +/usr/libexec/PlistBuddy -c "Set :DesktopViewSettings:IconViewSettings:iconSize 80" ~/Library/Preferences/com.apple.finder.plist +/usr/libexec/PlistBuddy -c "Set :FK_StandardViewSettings:IconViewSettings:iconSize 80" ~/Library/Preferences/com.apple.finder.plist +/usr/libexec/PlistBuddy -c "Set :StandardViewSettings:IconViewSettings:iconSize 80" ~/Library/Preferences/com.apple.finder.plist # Disable the warning before emptying the Trash defaults write com.apple.finder WarnOnEmptyTrash -bool false |