Last active
December 25, 2015 15:50
-
-
Save ablyeom/9d3961fef23852a4c6b2 to your computer and use it in GitHub Desktop.
OSX Finder에서 Column View를 Kind로 고정하기
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
# Finder Order by Kind | |
# Nlsv – List View | |
# icnv – Icon View | |
# clmv – Column View | |
# Flwv – Cover Flow View | |
echo "Always open everything in Finder's column view." | |
defaults write com.apple.Finder FXPreferredViewStyle clmv | |
# Desktop - Arrage by Kind | |
/usr/libexec/PlistBuddy -c "Delete :DesktopViewSettings:IconViewSettings:arrangeBy" ~/Library/Preferences/com.apple.finder.plist | |
/usr/libexec/PlistBuddy -c "Add :DesktopViewSettings:IconViewSettings:arrangeBy string kind" ~/Library/Preferences/com.apple.finder.plist | |
# Desktop - Column Width (320) | |
/usr/libexec/PlistBuddy -c "Delete :StandardViewOptions:ColumnViewOptions:ColumnWidth" ~/Library/Preferences/com.apple.finder.plist | |
/usr/libexec/PlistBuddy -c "Add :StandardViewOptions:ColumnViewOptions:ColumnWidth integer 320" ~/Library/Preferences/com.apple.finder.plist | |
# Finder Window | |
/usr/libexec/PlistBuddy -c "Delete :StandardViewOptions:ColumnViewOptions:ArrangeBy" ~/Library/Preferences/com.apple.finder.plist | |
/usr/libexec/PlistBuddy -c "Add :StandardViewOptions:ColumnViewOptions:ArrangeBy string kind" ~/Library/Preferences/com.apple.finder.plist |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment