使用 MAC 电脑的一些系统配置变更
以下操作需要在命令行进行
- 关闭 DStore 并禁止压缩 zip 文件产生 __MAXOSX 目录
参考文章:https://blog.csdn.net/sun124608666/article/details/123471794
defaults write com.apple.desktopservices DSDontWriteNetworkStores -bool TRUE
- 修改系统主题
参考文章:https://twitter.com/HiTw93/status/1705373928376688903
defaults write -g NSColorSimulateHardwareAccent -bool YES
defaults write -g NSColorSimulatedHardwareEnclosureNumber -int 4
- 隐藏/显示桌面
参考文章:https://sspai.com/post/33732
defaults write com.apple.finder CreateDesktop -bool false; killall Finder
defaults write com.apple.finder CreateDesktop -bool true; killall Finder
https://discuss.plugins-world.cn/post/F4lUX2GP