1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-08-30 12:13:37 +02:00
tldr/pages/linux/dconf.md

30 lines
631 B
Markdown
Raw Normal View History

2021-05-16 13:47:31 -04:00
# dconf
> Manage dconf databases.
> See also: `dconf-read`, `dconf-reset`, `dconf-write`, `gsettings`.
> More information: <https://manned.org/dconf>.
2021-05-16 13:47:31 -04:00
- Print a specific key value:
2021-05-16 13:47:31 -04:00
`dconf read /{{path/to/key}}`
2021-05-16 13:47:31 -04:00
- Print a specific path sub-directories and sub-keys:
2021-05-16 13:47:31 -04:00
`dconf list /{{path/to/directory}}/`
2021-05-16 13:47:31 -04:00
- Write a specific key value:
2021-05-16 13:47:31 -04:00
`dconf write /{{path/to/key}} "{{value}}"`
- Reset a specific key value:
`dconf reset /{{path/to/key}}`
- 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}}/`