Add dbus-monitor service, but disable to reduce spew

This commit is contained in:
Dan Williams 2006-09-07 23:28:01 -04:00
parent 5f93f41387
commit 45e37349d2

View File

@ -41,6 +41,13 @@ class MatchboxProcess(Process):
def get_name(self):
return 'Matchbox'
class DBusMonitorProcess(Process):
def __init__(self):
Process.__init__(self, "dbus-monitor --session")
def get_name(self):
return 'dbus-monitor'
class Session:
"""Takes care of running the shell and all the sugar processes"""
@ -64,6 +71,10 @@ class Session:
process = DbusProcess()
process.start()
if 0:
dbm = DBusMonitorProcess()
dbm.start()
console = ConsoleWindow()
logger.start('Shell', console)