Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMarco Pesenti Gritti <marco@localhost.localdomain>2006-08-20 10:10:12 (GMT)
committer Marco Pesenti Gritti <marco@localhost.localdomain>2006-08-20 10:10:12 (GMT)
commitc3b7a84cbc7b557909a00990c976b4abdeefea35 (patch)
tree4ff8b324e6da2699df38a5ca791074cd883ae118
parent5e00d939de1e94fb4b5310f65a1cc03697c6923c (diff)
Use olpc matchbox theme
-rw-r--r--shell/session/Session.py9
1 files changed, 4 insertions, 5 deletions
diff --git a/shell/session/Session.py b/shell/session/Session.py
index 8c5d751..f5b7f9e 100644
--- a/shell/session/Session.py
+++ b/shell/session/Session.py
@@ -31,13 +31,12 @@ class DbusProcess(Process):
class MatchboxProcess(Process):
def __init__(self):
- options = '-use_titlebar no'
-
kbd_config = os.path.join(sugar.env.get_data_dir(), 'kbdconfig')
- options += ' -kbdconfig %s' % kbd_config
+ options = '-kbdconfig %s ' % kbd_config
+
+ options += '-theme olpc '
- command = 'matchbox-window-manager %s' % options
- print command
+ command = 'matchbox-window-manager %s ' % options
Process.__init__(self, command)
def get_name(self):