From 600af0ce3327ce74a6bc252a4de4c2bac27b7db3 Mon Sep 17 00:00:00 2001 From: wizarot Date: Tue, 26 Feb 2019 11:10:13 +0800 Subject: [PATCH] defaults: add Chinese translation --- pages.zh/osx/defaults.md | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 pages.zh/osx/defaults.md diff --git a/pages.zh/osx/defaults.md b/pages.zh/osx/defaults.md new file mode 100644 index 000000000..313bb51c3 --- /dev/null +++ b/pages.zh/osx/defaults.md @@ -0,0 +1,23 @@ +# defaults + +> 读取和写入macOS应用程序的用户配置. + +- 读取应用程序选项的系统默认值: + +`defaults read {{应用名}} {{选项}}` + +- 读取应用程序选项的默认值: + +`defaults read -app {{应用名}} {{选项}}` + +- 写入应用程序选项的默认值: + +`defaults write {{应用名}} {{选项}} {{-类型}} {{值}}` + +- 加速任务控制界面弹出动画 (时间设置为0.1): + +`defaults write com.apple.Dock expose-animation-duration -float 0.1` + +- 删除应用程序的所有默认值: + +`defaults delete {{应用名}}`