2015-12-31 00:15:24 +05:30
|
|
|
# defaults
|
|
|
|
|
2017-07-26 19:13:26 +01:00
|
|
|
> Read and write macOS user configuration for applications.
|
2021-01-16 15:04:01 +01:00
|
|
|
> More information: <https://ss64.com/osx/defaults.html>.
|
2015-12-31 00:15:24 +05:30
|
|
|
|
2016-02-13 00:22:07 +01:00
|
|
|
- Read system defaults for an application option:
|
2015-12-31 00:15:24 +05:30
|
|
|
|
2022-02-14 03:21:43 -08:00
|
|
|
`defaults read "{{application}}" "{{option}}"`
|
2015-12-31 00:15:24 +05:30
|
|
|
|
2016-02-13 00:22:07 +01:00
|
|
|
- Read default values for an application option:
|
2015-12-31 00:15:24 +05:30
|
|
|
|
2022-02-14 03:21:43 -08:00
|
|
|
`defaults read -app "{{application}}" "{{option}}"`
|
2015-12-31 00:15:24 +05:30
|
|
|
|
2021-01-16 15:04:01 +01:00
|
|
|
- Search for a keyword in domain names, keys, and values:
|
|
|
|
|
2022-02-14 03:21:43 -08:00
|
|
|
`defaults find "{{keyword}}"`
|
2021-01-16 15:04:01 +01:00
|
|
|
|
2016-02-13 00:22:07 +01:00
|
|
|
- Write the default value of an application option:
|
2015-12-31 00:15:24 +05:30
|
|
|
|
2022-02-14 03:21:43 -08:00
|
|
|
`defaults write "{{application}}" "{{option}}" {{-type}} {{value}}`
|
2015-12-31 00:15:24 +05:30
|
|
|
|
2016-02-13 00:22:07 +01:00
|
|
|
- Speed up Mission Control animations:
|
2015-12-31 00:15:24 +05:30
|
|
|
|
2016-01-02 03:54:20 +05:30
|
|
|
`defaults write com.apple.Dock expose-animation-duration -float 0.1`
|
|
|
|
|
2016-02-13 00:22:07 +01:00
|
|
|
- Delete all defaults of an application:
|
2016-01-02 03:54:20 +05:30
|
|
|
|
2022-02-14 03:21:43 -08:00
|
|
|
`defaults delete "{{application}}"`
|