1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-22 22:22:18 +02:00
tldr/pages/linux/dconf-write.md
Emily Grace Seville b9125f067c
dconf*: add/refresh pages (#8031)
* 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
2022-10-04 17:00:34 +10:00

634 B

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 []"