Skip to content

Commit

Permalink
add comment as to why we don't write .DS_Store
Browse files Browse the repository at this point in the history
  • Loading branch information
nonrational committed Dec 5, 2023
1 parent 0df62a4 commit daf2cc8
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions .macos
Original file line number Diff line number Diff line change
Expand Up @@ -290,6 +290,11 @@ defaults write NSGlobalDomain com.apple.springing.enabled -bool true
# Remove the spring loading delay for directories
defaults write NSGlobalDomain com.apple.springing.delay -float 0

# To speed up SMB file browsing, you can prevent macOS from reading .DS_Store files on SMB shares.
# This makes the Finder use only basic information to immediately display each folder's contents
# in alphanumeric order.
# https://support.apple.com/en-us/HT208209
#
# Avoid creating .DS_Store files on network or USB volumes
defaults write com.apple.desktopservices DSDontWriteNetworkStores -bool true
defaults write com.apple.desktopservices DSDontWriteUSBStores -bool true
Expand Down

0 comments on commit daf2cc8

Please sign in to comment.