From 50ba02aa36dbf50350e9e4710b7d5d6df422e2a0 Mon Sep 17 00:00:00 2001 From: Leandro Ostera Date: Sat, 13 Feb 2016 00:22:07 +0100 Subject: [PATCH] Kept the speed up sample...more below Some text changes to make it more user-friendly. Naturally this is up for discussion. --- pages/osx/defaults.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/pages/osx/defaults.md b/pages/osx/defaults.md index 3b6a1b6cb6..80cedae06d 100644 --- a/pages/osx/defaults.md +++ b/pages/osx/defaults.md @@ -1,23 +1,23 @@ # defaults -> Access OS X user defaults +> Read and write OS X user configuration for applications -- read system default value +- Read system defaults for an application option: -`defaults read {{domain}} {{key}}` +`defaults read {{application}} {{option}}` -- read default values of applications +- Read default values for an application option: -`defaults read -app {{app_name}} {{key}}` +`defaults read -app {{application}} {{option}}` -- write key value +- Write the default value of an application option: -`defaults write {{domain}} {{key}} {{-type}} {{value}}` +`defaults write {{application}} {{option}} {{-type}} {{value}}` -- Speed up Mission Control animations +- Speed up Mission Control animations: `defaults write com.apple.Dock expose-animation-duration -float 0.1` -- __[caution]__ delete all defaults of domain +- Delete all defaults of an application: -`defaults delete {{domain}}` \ No newline at end of file +`defaults delete {{application}}`