2015-12-30 18:45:24 +00:00
|
|
|
# defaults
|
|
|
|
|
2016-02-12 23:35:42 +00:00
|
|
|
> Read and write OS X user configuration for applications.
|
2015-12-30 18:45:24 +00:00
|
|
|
|
2016-02-12 23:22:07 +00:00
|
|
|
- Read system defaults for an application option:
|
2015-12-30 18:45:24 +00:00
|
|
|
|
2016-02-12 23:22:07 +00:00
|
|
|
`defaults read {{application}} {{option}}`
|
2015-12-30 18:45:24 +00:00
|
|
|
|
2016-02-12 23:22:07 +00:00
|
|
|
- Read default values for an application option:
|
2015-12-30 18:45:24 +00:00
|
|
|
|
2016-02-12 23:22:07 +00:00
|
|
|
`defaults read -app {{application}} {{option}}`
|
2015-12-30 18:45:24 +00:00
|
|
|
|
2016-02-12 23:22:07 +00:00
|
|
|
- Write the default value of an application option:
|
2015-12-30 18:45:24 +00:00
|
|
|
|
2016-02-12 23:22:07 +00:00
|
|
|
`defaults write {{application}} {{option}} {{-type}} {{value}}`
|
2015-12-30 18:45:24 +00:00
|
|
|
|
2016-02-12 23:22:07 +00:00
|
|
|
- Speed up Mission Control animations:
|
2015-12-30 18:45:24 +00:00
|
|
|
|
2016-01-01 22:24:20 +00:00
|
|
|
`defaults write com.apple.Dock expose-animation-duration -float 0.1`
|
|
|
|
|
2016-02-12 23:22:07 +00:00
|
|
|
- Delete all defaults of an application:
|
2016-01-01 22:24:20 +00:00
|
|
|
|
2016-02-12 23:22:07 +00:00
|
|
|
`defaults delete {{application}}`
|