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