How can I not show any of the contents of the desktop folder on the desktop itself?
If I am looking at the desktop, I don't want any finder icons there. Just the desktop background picture. While still having items in the desktop folder.
How can I not show any of the contents of the desktop folder on the desktop itself?
If I am looking at the desktop, I don't want any finder icons there. Just the desktop background picture. While still having items in the desktop folder.
You can achieve this using the macOS defaults system
Launch Terminal.app
Enter the following command line:
defaults write com.apple.finder CreateDesktop false
Press the Enter key to execute the command line.
Enter the following command line, followed by pressing the Enter key:
killall Finder
This should hide the icons from the Desktop, but they will continue to show when you access the Desktop folder in Finder.
To display the icons back again, run the following command lines:
defaults write com.apple.finder CreateDesktop true
followed by the command line:
killall Finder