如何在macOS中移除窗口截图的阴影

126 阅读1分钟

我为我的博客文章或课程拍了很多屏幕截图。

我通常使用cmd-shift-4,然后按空格键对整个应用程序窗口进行截图。

像这样。

在默认情况下,macOS添加了那个水滴阴影,这使得它看起来非常漂亮。

如果你想的话,你可以在终端中使用这个命令来移除它。

defaults write com.apple.screencapture disable-shadow -bool true ; killall SystemUIServer

这是同样的截图,没有阴影。

用这个命令把它加回去。

defaults write com.apple.screencapture disable-shadow -bool false ; killall SystemUIServer