通过终端打开/关闭Mojave的屏幕截图预览缩略图

问题描述 投票:1回答:2

我如何show / hide macOS Mojave截图通过终端命令预览浮动缩略图?

enter image description here

bash macos terminal macos-mojave
2个回答
1
投票

为了关闭功能执行:

defaults write com.apple.screencapture show-thumbnail -bool FALSE

把它重新打开

defaults write com.apple.screencapture show-thumbnail -bool TRUE

1
投票

要使更改在键入命令show-thumbnail -bool FALSE后生效,用户应使用bash命令SystemUIServer重新启动killall服务:

defaults write com.apple.screencapture show-thumbnail -bool FALSE

killall SystemUIServer

希望这可以帮助。

© www.soinside.com 2019 - 2024. All rights reserved.