From 45e37349d2842fae601091b55e76230a2e5773ef Mon Sep 17 00:00:00 2001 From: Dan Williams Date: Thu, 7 Sep 2006 23:28:01 -0400 Subject: [PATCH] Add dbus-monitor service, but disable to reduce spew --- shell/session/Session.py | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/shell/session/Session.py b/shell/session/Session.py index ef76c58c..e240fad0 100644 --- a/shell/session/Session.py +++ b/shell/session/Session.py @@ -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)