【笔记】Mac将桌面文件隐藏

前言

Mac将桌面文件隐藏

还原隐藏桌面文件

1
defaults delete com.apple.finder "CreateDesktop" && killall Finder

隐藏桌面文件

1
defaults write com.apple.finder "CreateDesktop" -bool "false" && killall Finder

显示桌面文件

1
defaults write com.apple.finder "CreateDesktop" -bool "true" && killall Finder

完成