MacOS 更改默认截图文件名
2022-02-14 software mac 2 mins 3 图 799 字
Mac中默认的中文截图名太难看/难以快速理解/自动化软件复用了。
截屏2022-02-12 上午10.15.29.png
这里记录下几个配置,多数为在终端中输入命令,可以按需更改。
一、更换前缀
defaults write com.apple.screencapture name "TheNameDesired"
重启服务
killall SystemUIServer
二、更换“下午”为英文名称
系统偏好设置->语言与地区->高级:
把上午下午改为am/pm即可。
三、更换默认截图的图片格式
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