2025-03-14 21:59:59 -06:00
|
|
|
# dconf
|
|
|
|
|
|
|
|
|
|
> Manage dconf databases.
|
|
|
|
|
> See also: `dconf-read`, `dconf-reset`, `dconf-write`, `gsettings`.
|
|
|
|
|
> More information: <https://manned.org/dconf>.
|
|
|
|
|
|
|
|
|
|
- Print a specific key value:
|
|
|
|
|
|
2025-12-16 10:20:31 -07:00
|
|
|
`dconf read /{{path/to/key}}`
|
2025-03-14 21:59:59 -06:00
|
|
|
|
|
|
|
|
- Print a specific path sub-directories and sub-keys:
|
|
|
|
|
|
2025-12-16 10:20:31 -07:00
|
|
|
`dconf list /{{path/to/directory}}/`
|
2025-03-14 21:59:59 -06:00
|
|
|
|
|
|
|
|
- Write a specific key value:
|
|
|
|
|
|
2025-12-16 10:20:31 -07:00
|
|
|
`dconf write /{{path/to/key}} "{{value}}"`
|
2025-03-14 21:59:59 -06:00
|
|
|
|
|
|
|
|
- Reset a specific key value:
|
|
|
|
|
|
2025-12-16 10:20:31 -07:00
|
|
|
`dconf reset /{{path/to/key}}`
|
2025-03-14 21:59:59 -06:00
|
|
|
|
|
|
|
|
- Watch a specific key/directory for changes:
|
|
|
|
|
|
2025-12-16 10:20:31 -07:00
|
|
|
`dconf watch /{{path/to/key|/path/to/directory}}/`
|
2025-03-14 21:59:59 -06:00
|
|
|
|
|
|
|
|
- Dump a specific directory in INI file format:
|
|
|
|
|
|
2025-12-16 10:20:31 -07:00
|
|
|
`dconf dump /{{path/to/directory}}/`
|