How to install easygconf
- Download and install ActivePython
- Open Command Prompt
- Type
pypm install easygconf
Lastest release
easygconf provids an easy, pythonic way to access GConf through a dict-like interface.
Example
from easygconf import GConfDict import gtk
key = 'test' gc=GConfDict('/apps/easygconftest')
print "%s is %s"%(key, gc[key]) gc[key] = 'foo' print "Now %s is %s"%(key, gc[key])
def callback (key, value, gconfdict, id, args): print "%s changed to %s"%(key, value)
gc.add_listener('test', callback) try: gtk.main() except KeyboardInterrupt: pass gc.unset('test')