MacOS 更改默认截图文件名

Mac中默认的中文截图名太难看/难以快速理解/自动化软件复用了。

截屏2022-02-12 上午10.15.29.png

这里记录下几个配置,多数为在终端中输入命令,可以按需更改。

一、更换前缀

defaults write com.apple.screencapture name "TheNameDesired"

重启服务

killall SystemUIServer

二、更换“下午”为英文名称

系统偏好设置->语言与地区->高级:

image-20220219104722333

把上午下午改为am/pm即可。

image-20220219104827899

三、更换默认截图的图片格式

OS X 默认识别以下图片格式:「.jpg」「.gif」「.pdf」「.png」和「.tiff」,所以你可以设置截图文件格式为上述 5 种。

defaults write com.apple.screencapture type jpg;killall SystemUIServer
defaults write com.apple.screencapture type gif;killall SystemUIServer
defaults write com.apple.screencapture type PDF;killall SystemUIServer
defaults write com.apple.screencapture type png;killall SystemUIServer
defaults write com.apple.screencapture type tiff;killall SystemUIServer

四、移除时间戳

如果不需要时间,也可以直接移除:

defaults write com.apple.screencapture "include-date" 0
killall SystemUIServer

参考资料


MacOS 文件默认列表展示 Kubernetes的Kata Containers 与 gVisor - ghostwritten