Provide more examples and enhance existing ones:

- in `dconf`
feature/refresh-dconf
EmilySeville7cfg 2022-04-17 15:37:29 +10:00
parent 927c3f773c
commit 83d5d281d4
1 changed files with 14 additions and 6 deletions

View File

@ -4,14 +4,22 @@
> See also `gsettings`.
> More information: <https://manned.org/dconf.1>.
- Print the value of a dconf path:
- Print a specific key value:
`dconf read {{/example/dconf/path}}`
`dconf read {{/path/to/key}}`
- List contents of a dconf path:
- Print a specific path sub-directories and sub-keys:
`dconf list {{/example/dconf/path}}`
`dconf list {{/path/to/directory/}}`
- Watch for dconf database changes in a path and subpaths:
- Write a specific key value:
`dconf watch {{/example/dconf/path}}`
`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/}}`