Finder remains one of those apps I still can’t make effective use of. Windows File Explorer for all its warts and changes still “just makes sense” to my brain vs how finder lays things out and expects you to browse. I’ve long since moved to command line or dual pane explorers but it’s something that makes me pause every time I do find myself in Finder for some reason.
I found myself in a similar situation. Learning some of the hotkeys in Finder for common tasks really helped me curb that feeling Command + O to open files/folders in Finder was a bit challenging to remember since Enter/Return just works in Explorer
The Origins of DS_store (2006)
131–140 of 280 posts
Re: The Origins of DS_store (2006)
#132Re: The Origins of DS_store (2006)
#133I remember there used to ways to turn off the creation of .DS_Store but they removed it, I can't figure out for life why they would make such a change. I had to write a program [0] to watch the entire file system and delete .DS_Store as soon as they're created. [0] https://github.com/slmjkdbtl/dskill
Put that in a script and add it to your crontab.
Re: The Origins of DS_store (2006)
#134Aside from this file, the "fork" concept of Mac file systems caused some wtf moments. Fork not being fork() but being the two-pronged idea in that file system, both a resource and a data component existed as pair. One metadata and one the file contents. In Unix, the metadata was in the directory block inode, and wasn't bound to the file in a formalism uniquely, it had to be represented by structure in tar, or cpio or…
Re: The Origins of DS_store (2006)
#135I remember there used to ways to turn off the creation of .DS_Store but they removed it, I can't figure out for life why they would make such a change. I had to write a program [0] to watch the entire file system and delete .DS_Store as soon as they're created. [0] https://github.com/slmjkdbtl/dskill
find / -name ".DS_Store" -exec rm {} \; 2>/dev/null Put that in a script and add it to your crontab.
Re: The Origins of DS_store (2006)
#136Re: The Origins of DS_store (2006)
#137As a non-Mac user, I always find it somewhat annoying when I download some .tgz published on Github or something and find .DS_Store littered inside. I guess macos probably just uses GNU tar? It's kind of surprising it wasn't modified or configured by default to ignore .DS_Store.
Re: The Origins of DS_store (2006)
#138As a non-Mac user, I always find it somewhat annoying when I download some .tgz published on Github or something and find .DS_Store littered inside. I guess macos probably just uses GNU tar? It's kind of surprising it wasn't modified or configured by default to ignore .DS_Store.
Most of Mac's Unix utils come straight from FreeBSD without any special sauce from Apple.
Re: The Origins of DS_store (2006)
#139Re: The Origins of DS_store (2006)
#140Why doesn't Windows need such a directory to store folder customizations in Explorer?
Explorer uses a hidden desktop.ini file for this.
Also, I think only the desktop allows moving icons around freely.