tldr/pages/linux/dconf.md

26 lines
525 B
Markdown
Raw Normal View History

2021-05-16 18:47:31 +01:00
# dconf
> Manage dconf databases.
> See also `gsettings`.
> More information: <https://manned.org/dconf.1>.
2021-05-16 18:47:31 +01:00
- Print a specific key value:
2021-05-16 18:47:31 +01:00
`dconf read {{/path/to/key}}`
2021-05-16 18:47:31 +01:00
- Print a specific path sub-directories and sub-keys:
2021-05-16 18:47:31 +01:00
`dconf list {{/path/to/directory/}}`
2021-05-16 18:47:31 +01:00
- Write a specific key value:
2021-05-16 18:47:31 +01:00
`dconf write {{/path/to/key}} "{{value}}"`
- Watch a specific key/directory for changes:
`dconf watch {{/path/to/key|/path/to/directory/}}`
- Dump a specific directory in INI file format:
`dconf dump {{/path/to/directory/}}`