在 Macos 中制作窗口屏幕截图时,使用一个简单的命令就可以禁用/启用阴影:
#disable defaults write com.apple.screencapture disable-shadow -bool true ; killall SystemUIServer #enable defaults write com.apple.screencapture disable-shadow -bool false ; killall SystemUIServer
当我在编写文档时需要进行屏幕截图时,我经常将其关闭。
原文: https://www.vincentlammens.be/removing-shadow-from-macos-screenshots.html