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.py13
1 files changed, 0 insertions, 13 deletions
diff --git a/python/examples/gconf-proxy-client.py b/python/examples/gconf-proxy-client.py
deleted file mode 100644
index f763e3fa..00000000
--- a/python/examples/gconf-proxy-client.py
+++ /dev/null
@@ -1,13 +0,0 @@
-#!/usr/bin/env python
-
-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))