summaryrefslogtreecommitdiffstats
path: root/python/examples/gconf-proxy-client.py
blob: f9c630974a74a176fac73b26e20d3f8f04c40545 (plain)
1
2
3
4
5
6
7
8
9
10
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))