mirror of
https://github.com/tldr-pages/tldr.git
synced 2024-10-31 04:17:55 +01:00
Kept the speed up sample...more below
Some text changes to make it more user-friendly. Naturally this is up for discussion.
This commit is contained in:
parent
4280ac0e38
commit
50ba02aa36
1 changed files with 10 additions and 10 deletions
|
@ -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}}`
|
||||
`defaults delete {{application}}`
|
||||
|
|
Loading…
Reference in a new issue