Mac OS X 修改截图默认文件名

下面纪录一下通过Terminal来改变默认截图格式、名称、以及存储目录。

查看当前配置

可以通过下面的命令查看当前配置(修改之后的):

1
2
3
4
5
6
7
defaults read com.apple.screencapture
{
"include-date" = 0;
location = "/Users/mcbird/Sites/blog/static/images";
name = screen;
type = jpg;
}

改变格式

默认是png格式。

1
defaults write com.apple.screencapture type jpg

自定义文件名

默认文件名是屏幕截图 2015-01-01 12:12:12这样的,下面对其修改。

去掉日期

1
defaults write com.apple.screencapture "include-date" 0

改变名称

1
defaults write com.apple.screencapture name screen