tldr/pages.zh/osx/defaults.md

24 lines
556 B
Markdown
Raw Normal View History

2019-02-26 03:10:13 +00:00
# defaults
2019-10-18 04:30:29 +01:00
> 读取和写入 macOS 应用程序的用户配置.
2019-02-26 03:10:13 +00:00
2019-10-19 07:12:27 +01:00
- 读取应用程序选项的系统默认值:
2019-02-26 03:10:13 +00:00
`defaults read {{应用名}} {{选项}}`
2019-10-19 07:12:27 +01:00
- 读取应用程序选项的默认值:
2019-02-26 03:10:13 +00:00
`defaults read -app {{应用名}} {{选项}}`
2019-10-19 07:12:27 +01:00
- 写入应用程序选项的默认值:
2019-02-26 03:10:13 +00:00
2019-10-18 03:33:27 +01:00
`defaults write {{应用名}} {{选项}} {{- 类型}} {{值}}`
2019-02-26 03:10:13 +00:00
2019-10-18 03:33:27 +01:00
- 加速任务控制界面弹出动画 (时间设置为 0.1):
2019-02-26 03:10:13 +00:00
`defaults write com.apple.Dock expose-animation-duration -float 0.1`
2019-10-19 07:12:27 +01:00
- 删除应用程序的所有默认值:
2019-02-26 03:10:13 +00:00
`defaults delete {{应用名}}`