format translation: change colon

This commit is contained in:
Ein Verne
2019-10-19 14:12:27 +08:00
committed by Starbeamrainbowlabs
parent f0f2764de2
commit 30c2bd4c7c
181 changed files with 694 additions and 694 deletions

View File

@@ -2,15 +2,15 @@
> 读取和写入 macOS 应用程序的用户配置.
- 读取应用程序选项的系统默认值
- 读取应用程序选项的系统默认值:
`defaults read {{应用名}} {{选项}}`
- 读取应用程序选项的默认值
- 读取应用程序选项的默认值:
`defaults read -app {{应用名}} {{选项}}`
- 写入应用程序选项的默认值
- 写入应用程序选项的默认值:
`defaults write {{应用名}} {{选项}} {{- 类型}} {{值}}`
@@ -18,6 +18,6 @@
`defaults write com.apple.Dock expose-animation-duration -float 0.1`
- 删除应用程序的所有默认值
- 删除应用程序的所有默认值:
`defaults delete {{应用名}}`