15

I can output a single key-value, as per the following example:

gconftool-2 --get /apps/panel/applets/clock_screen0/object_type
bonobo-applet

How can I dump the entire gconf database? ... Key-names and Values

Jorge Castro
  • 73,717
Peter.O
  • 25,251

1 Answers1

21

To list all keys and values:

gconftool-2  --recursive-list /

To list all keys and values in xml format:

gconftool-2  --dump /

See man gconftool-2 for more info.