Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/shell/session
diff options
context:
space:
mode:
authorDan Williams <dcbw@localhost.localdomain>2006-09-08 03:28:01 (GMT)
committer Dan Williams <dcbw@localhost.localdomain>2006-09-08 03:28:01 (GMT)
commit45e37349d2842fae601091b55e76230a2e5773ef (patch)
treea8c294dcce216968c9c0da71caae8348095f655c /shell/session
parent5f93f4138724f25cacff40c2ce0fc7f9632e5613 (diff)
Add dbus-monitor service, but disable to reduce spew
Diffstat (limited to 'shell/session')
-rw-r--r--shell/session/Session.py11
1 files changed, 11 insertions, 0 deletions
diff --git a/shell/session/Session.py b/shell/session/Session.py
index ef76c58..e240fad 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)