1DCONF(1)                         User Commands                        DCONF(1)
2
3
4

NAME

6       dconf - Simple tool for manipulating a dconf database
7

SYNOPSIS

9       dconf read [-d] KEY
10
11       dconf list DIR
12
13       dconf write KEY VALUE
14
15       dconf reset [-f] PATH
16
17       dconf compile OUTPUT KEYFILEDIR
18
19       dconf update [DBDIR]
20
21       dconf watch PATH
22
23       dconf dump DIR
24
25       dconf load [-f] DIR
26
27       dconf help [COMMAND]
28

DESCRIPTION

30       The dconf program can perform various operations on a dconf database,
31       such as reading or writing individual values or entire directories.
32       This tool operates on dconf directly, without using gsettings schema
33       information. Therefore, it cannot perform type and consistency checks
34       on values. The gsettings(1) utility is an alternative if such checks
35       are needed.
36
37       The DIR arguments must be directory paths (starting and ending with
38       '/'), the KEY arguments must be key paths (starting, but not ending
39       with '/') and the PATH arguments can be either directory or key paths.
40
41       The OUTPUT argument must the location to write a (binary) dconf
42       database to and the KEYFILEDIR argument must be a .d directory
43       containing keyfiles.
44
45       VALUE arguments must be in GVariant format, so e.g. a string must
46       include explicit quotes: "'foo'". This format is also used when
47       printing out values.
48
49       Note that dconf needs a D-Bus session bus connection to write changes
50       to the dconf database.
51

COMMANDS

53       read
54           Read the value of a key.
55
56       list
57           List the sub-keys and sub-directories of a directory.
58
59       write
60           Write a new value to a key.
61
62       reset
63           Reset a key or an entire directory. For directories, -f must be
64           specified.
65
66       compile
67           Compile a binary database from keyfiles.
68
69           The result is always in little-endian byte order, so it can be
70           safely installed in 'share'. If it is used on a big endian machine,
71           dconf will automatically byteswap the contents on read.
72
73       update
74           Update the system dconf databases.
75
76       watch
77           Watch a key or directory for changes.
78
79       dump
80           Dump an entire subpath to stdout. The output is in a keyfile-like
81           format, with values in GVariant syntax.
82
83       load
84           Populate a subpath from stdin. The expected format is the same as
85           produced by dump. Attempting to change non-writable keys cancels
86           the load command. To ignore changes to non-writable keys instead,
87           use -f.
88
89       help
90           Display help and exit. If COMMAND is given, display help for this
91           command.
92

ENVIRONMENT

94       DCONF_PROFILE
95           This environment variable determines which dconf profile to use.
96           See dconf(7).
97

SEE ALSO

99       dconf(7), gsettings(1), dconf-editor(1)
100
101
102
103dconf                                                                 DCONF(1)
Impressum