1 <refentry id="gsettings-tool" lang="en">
4 <title>gsettings</title>
5 <productname>GIO</productname>
8 <contrib>Developer</contrib>
9 <firstname>Ryan</firstname>
10 <surname>Lortie</surname>
16 <refentrytitle>gsettings</refentrytitle>
17 <manvolnum>1</manvolnum>
18 <refmiscinfo class="manual">User Commands</refmiscinfo>
22 <refname>gsettings</refname>
23 <refpurpose>GSettings configuration tool</refpurpose>
28 <command>gsettings</command>
29 <arg choice="plain">get</arg>
30 <arg choice="plain"><replaceable>SCHEMA</replaceable><arg choice="opt">:<replaceable>PATH</replaceable></arg></arg>
31 <arg choice="plain"><replaceable>KEY</replaceable></arg>
34 <command>gsettings</command>
35 <arg choice="plain">monitor</arg>
36 <arg choice="plain"><replaceable>SCHEMA</replaceable><arg choice="opt">:<replaceable>PATH</replaceable></arg></arg>
37 <arg choice="opt"><replaceable>KEY</replaceable></arg>
40 <command>gsettings</command>
41 <arg choice="plain">writable</arg>
42 <arg choice="plain"><replaceable>SCHEMA</replaceable><arg choice="opt">:<replaceable>PATH</replaceable></arg></arg>
43 <arg choice="plain"><replaceable>KEY</replaceable></arg>
46 <command>gsettings</command>
47 <arg choice="plain">range</arg>
48 <arg choice="plain"><replaceable>SCHEMA</replaceable><arg choice="opt">:<replaceable>PATH</replaceable></arg></arg>
49 <arg choice="plain"><replaceable>KEY</replaceable></arg>
52 <command>gsettings</command>
53 <arg choice="plain">describe</arg>
54 <arg choice="plain"><replaceable>SCHEMA</replaceable><arg choice="opt">:<replaceable>PATH</replaceable></arg></arg>
55 <arg choice="plain"><replaceable>KEY</replaceable></arg>
58 <command>gsettings</command>
59 <arg choice="plain">set</arg>
60 <arg choice="plain"><replaceable>SCHEMA</replaceable><arg choice="opt">:<replaceable>PATH</replaceable></arg></arg>
61 <arg choice="plain"><replaceable>KEY</replaceable></arg>
62 <arg choice="plain"><replaceable>VALUE</replaceable></arg>
65 <command>gsettings</command>
66 <arg choice="plain">reset</arg>
67 <arg choice="plain"><replaceable>SCHEMA</replaceable><arg choice="opt">:<replaceable>PATH</replaceable></arg></arg>
68 <arg choice="plain"><replaceable>KEY</replaceable></arg>
71 <command>gsettings</command>
72 <arg choice="plain">reset-recursively</arg>
73 <arg choice="plain"><replaceable>SCHEMA</replaceable><arg choice="opt">:<replaceable>PATH</replaceable></arg></arg>
76 <command>gsettings</command>
77 <arg choice="plain">list-schemas</arg>
80 <command>gsettings</command>
81 <arg choice="plain">list-relocatable-schemas</arg>
84 <command>gsettings</command>
85 <arg choice="plain">list-keys</arg>
86 <arg choice="plain"><replaceable>SCHEMA</replaceable><arg choice="opt">:<replaceable>PATH</replaceable></arg></arg>
89 <command>gsettings</command>
90 <arg choice="plain">list-children</arg>
91 <arg choice="plain"><replaceable>SCHEMA</replaceable><arg choice="opt">:<replaceable>PATH</replaceable></arg></arg>
94 <command>gsettings</command>
95 <arg choice="plain">list-recursively</arg>
96 <arg choice="opt"><replaceable>SCHEMA</replaceable><arg choice="opt">:<replaceable>PATH</replaceable></arg></arg>
99 <command>gsettings</command>
100 <arg choice="plain">help</arg>
101 <arg choice="opt"><replaceable>COMMAND</replaceable></arg>
105 <refsect1><title>Description</title>
106 <para><command>gsettings</command> offers a simple commandline
107 interface to <link linkend="GSettings"><type>GSettings</type></link>.
108 It lets you get, set or monitor an individual key for changes.
111 The <replaceable>SCHEMA</replaceable> and <replaceable>KEY</replaceable>
112 arguments are required for most commands to specify the schema id and the
113 name of the key to operate on. The schema id may optionally have a
114 :<replaceable>PATH</replaceable> suffix. Specifying the path is only needed
115 if the schema does not have a fixed path.
118 When setting a key, you also need specify a <replaceable>VALUE</replaceable>
119 The format for the value is that of a serialized
120 <link linkend="GVariant"><type>GVariant</type></link>,
122 must include explicit quotes: "'foo'". This format is also used when printing
126 Note that gsettings needs a D-Bus session bus connection to write changes to
131 <refsect1><title>Commands</title>
135 <term><option>get</option></term>
137 Gets the value of <replaceable>KEY</replaceable>.
138 The value is printed out as a serialised
139 <link linkend="GVariant"><type>GVariant</type></link>.
144 <term><option>monitor</option></term>
146 Monitors <replaceable>KEY</replaceable> for changes and prints the changed
147 values. If no <replaceable>KEY</replaceable> is specified, all keys in the
148 schema are monitored. Monitoring will continue until the process is terminated.
153 <term><option>writable</option></term>
155 Finds out whether <replaceable>KEY</replaceable> is writable.
160 <term><option>range</option></term>
162 Queries the range of valid values for <replaceable>KEY</replaceable>.
167 <term><option>describe</option></term>
169 Queries the description of valid values for <replaceable>KEY</replaceable>.
174 <term><option>set</option></term>
176 Sets the value of <replaceable>KEY</replaceable> to
177 <replaceable>VALUE</replaceable>. The value is specified as a serialised
178 <link linkend="GVariant"><type>GVariant</type></link>.
183 <term><option>reset</option></term>
185 Resets <replaceable>KEY</replaceable> to its default value.
190 <term><option>reset-recursively</option></term>
192 Reset all keys under the given <replaceable>SCHEMA</replaceable>.
197 <term><option>list-schemas</option></term>
199 Lists the installed, non-relocatable schemas.
200 See <option>list-relocatable-schemas</option> if you are interested in
206 <term><option>list-relocatable-schemas</option></term>
208 Lists the installed, relocatable schemas.
209 See <option>list-schemas</option> if you are interested in
210 non-relocatable schemas.
215 <term><option>list-keys</option></term>
217 Lists the keys in <replaceable>SCHEMA</replaceable>.
222 <term><option>list-children</option></term>
224 Lists the children of <replaceable>SCHEMA</replaceable>.
229 <term><option>list-recursively</option></term>
231 Lists keys and values, recursively. If no <replaceable>SCHEMA</replaceable>
232 is given, list keys in all schemas.
237 <term><option>help</option></term>
239 Prints help and exits.