summaryrefslogtreecommitdiffstats
path: root/python/examples/gconf-proxy-client.py
diff options
context:
space:
mode:
Diffstat (limited to 'python/examples/gconf-proxy-client.py')
-rw-r--r--python/examples/gconf-proxy-client.py11
1 files changed, 11 insertions, 0 deletions
diff --git a/python/examples/gconf-proxy-client.py b/python/examples/gconf-proxy-client.py
new file mode 100644
index 00000000..f9c63097
--- /dev/null
+++ b/python/examples/gconf-proxy-client.py
@@ -0,0 +1,11 @@
+import dbus
+
+gconf_key = "/desktop/gnome/file_views/icon_theme"
+
+bus = dbus.SessionBus()
+gconf_service = bus.get_service("org.gnome.GConf")
+gconf_key_object = gconf_service.get_object("/org/gnome/GConf" + gconf_key, "org.gnome.GConf")
+
+value = gconf_key_object.getString()
+
+print ("Value of GConf key %s is %s" % (gconf_key, value))