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>
78 <arg choice="opt">--print-paths</arg>
81 <command>gsettings</command>
82 <arg choice="plain">list-relocatable-schemas</arg>
85 <command>gsettings</command>
86 <arg choice="plain">list-keys</arg>
87 <arg choice="plain"><replaceable>SCHEMA</replaceable><arg choice="opt">:<replaceable>PATH</replaceable></arg></arg>
90 <command>gsettings</command>
91 <arg choice="plain">list-children</arg>
92 <arg choice="plain"><replaceable>SCHEMA</replaceable><arg choice="opt">:<replaceable>PATH</replaceable></arg></arg>
95 <command>gsettings</command>
96 <arg choice="plain">list-recursively</arg>
97 <arg choice="opt"><replaceable>SCHEMA</replaceable><arg choice="opt">:<replaceable>PATH</replaceable></arg></arg>
100 <command>gsettings</command>
101 <arg choice="plain">help</arg>
102 <arg choice="opt"><replaceable>COMMAND</replaceable></arg>
106 <refsect1><title>Description</title>
107 <para><command>gsettings</command> offers a simple commandline
108 interface to <link linkend="GSettings"><type>GSettings</type></link>.
109 It lets you get, set or monitor an individual key for changes.
112 The <replaceable>SCHEMA</replaceable> and <replaceable>KEY</replaceable>
113 arguments are required for most commands to specify the schema id and the
114 name of the key to operate on. The schema id may optionally have a
115 :<replaceable>PATH</replaceable> suffix. Specifying the path is only needed
116 if the schema does not have a fixed path.
119 When setting a key, you also need specify a <replaceable>VALUE</replaceable>
120 The format for the value is that of a serialized
121 <link linkend="GVariant"><type>GVariant</type></link>,
123 must include explicit quotes: "'foo'". This format is also used when printing
127 Note that gsettings needs a D-Bus session bus connection to write changes to
132 <refsect1><title>Commands</title>
136 <term><option>get</option></term>
138 Gets the value of <replaceable>KEY</replaceable>.
139 The value is printed out as a serialised
140 <link linkend="GVariant"><type>GVariant</type></link>.
145 <term><option>monitor</option></term>
147 Monitors <replaceable>KEY</replaceable> for changes and prints the changed
148 values. If no <replaceable>KEY</replaceable> is specified, all keys in the
149 schema are monitored. Monitoring will continue until the process is terminated.
154 <term><option>writable</option></term>
156 Finds out whether <replaceable>KEY</replaceable> is writable.
161 <term><option>range</option></term>
163 Queries the range of valid values for <replaceable>KEY</replaceable>.
168 <term><option>describe</option></term>
170 Queries the description of valid values for <replaceable>KEY</replaceable>.
175 <term><option>set</option></term>
177 Sets the value of <replaceable>KEY</replaceable> to
178 <replaceable>VALUE</replaceable>. The value is specified as a serialised
179 <link linkend="GVariant"><type>GVariant</type></link>.
184 <term><option>reset</option></term>
186 Resets <replaceable>KEY</replaceable> to its default value.
191 <term><option>reset-recursively</option></term>
193 Reset all keys under the given <replaceable>SCHEMA</replaceable>.
198 <term><option>list-schemas</option></term>
200 Lists the installed, non-relocatable schemas.
201 See <option>list-relocatable-schemas</option> if you are interested in
202 relocatable schemas. If <optional><option>--print-paths</option></optional>
203 is given, the path where each schema is mapped is also printed.
208 <term><option>list-relocatable-schemas</option></term>
210 Lists the installed, relocatable schemas.
211 See <option>list-schemas</option> if you are interested in
212 non-relocatable schemas.
217 <term><option>list-keys</option></term>
219 Lists the keys in <replaceable>SCHEMA</replaceable>.
224 <term><option>list-children</option></term>
226 Lists the children of <replaceable>SCHEMA</replaceable>.
231 <term><option>list-recursively</option></term>
233 Lists keys and values, recursively. If no <replaceable>SCHEMA</replaceable>
234 is given, list keys in all schemas.
239 <term><option>help</option></term>
241 Prints help and exits.