mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-04-23 13:02:08 +02:00

* Fix top description: - simplify description - change `See also` link to `gsettings` - fix man page url to manned.org because an old one is inaccessible * Provide more examples and enhance existing ones: - in `dconf` * Add `dconf-read` page * More `See also` links in `dconf` * Add `reset` example * Add `dconf-reset` page * Refresh `dconf-write`: - add link to `dconf` in `See also` - fix man page url - standardize examples with other `dconf` pages * Fix man page urls everywhere in `dconf` pages
29 lines
634 B
Markdown
29 lines
634 B
Markdown
# dconf write
|
|
|
|
> Write key values in dconf databases.
|
|
> See also: `dconf`.
|
|
> More information: <https://manned.org/dconf>.
|
|
|
|
- Write a specific key value:
|
|
|
|
`dconf write {{/path/to/key}} "{{value}}"`
|
|
|
|
- Write a specific string key value:
|
|
|
|
`dconf write {{/path/to/key}} "'{{string}}'"`
|
|
|
|
- Write a specific integer key value:
|
|
|
|
`dconf write {{/path/to/key}} "{{5}}"`
|
|
|
|
- Write a specific boolean key value:
|
|
|
|
`dconf write {{/path/to/key}} "{{true|false}}"`
|
|
|
|
- Write a specific array key value:
|
|
|
|
`dconf write {{/path/to/key}} "[{{'first', 'second', ...}}]"`
|
|
|
|
- Write a specific empty array key value:
|
|
|
|
`dconf write {{/path/to/key}} "@as []"`
|