打开终端并输入:
$ sudo su
$ cd /System/Library/CoreServices/SystemUIServer.app/Contents/Resources/English.lproj
$ plutil -convert xml1 ScreenCapture.strings
$ nano ScreenCapture.strings
更改
<key>%@ %@ at %@</key>
<string>%@ %@ at %@</string>
<key>.</key>
<string>.</string>
<key>Screen Shot</key>
<string>Screen Shot</string>
至
<key>%@ %@ at %@</key>
<string>%@_%@_%@</string>
<key>.</key>
<string></string>
<key>Screen Shot</key>
<string>screenshot</string>
然后
Control+ O写入文件,Control+ X退出nano
$ plutil -convert binary1 ScreenCapture.strings
$ killall SystemUIServer
这里要注意的另一件事是,要摆脱AM / PM,您需要在“系统偏好设置”>“语言和文本”>“格式”(24小时格式)中进行更改。根据设置的时间显示时间戳。请记住,如果更改此设置,则所有文件名都将使用此格式。
〜让我知道结果如何。