From 78ae1c802316a886595872d0dbb6e4c5372b8184 Mon Sep 17 00:00:00 2001 From: Ralfk Date: Sat, 15 Jun 2024 16:06:47 +0200 Subject: [PATCH] Obsidian Mac 15: 2024-06-15 16:06:47 --- Technik/DontWriteDsStoreFiles.md | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 Technik/DontWriteDsStoreFiles.md diff --git a/Technik/DontWriteDsStoreFiles.md b/Technik/DontWriteDsStoreFiles.md new file mode 100644 index 0000000..ce17132 --- /dev/null +++ b/Technik/DontWriteDsStoreFiles.md @@ -0,0 +1,15 @@ + + +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. Use this Terminal command: + +```bash +defaults write com.apple.desktopservices DSDontWriteNetworkStores -bool TRUE` + +Then log out of your macOS account and log back in. + +To reenable sorting, use this command: + +`defaults write com.apple.desktopservices DSDontWriteNetworkStores -bool FALSE` + +I +