From a0195e7fd4263bbf0070b6383b58d0ee613e362f Mon Sep 17 00:00:00 2001 From: Marco Pesenti Gritti Date: Mon, 20 Aug 2007 10:34:29 +0000 Subject: Some initial work on graphics tests. --- (limited to 'sugar-emulator') diff --git a/sugar-emulator b/sugar-emulator index 6ab9292..cba0d52 100755 --- a/sugar-emulator +++ b/sugar-emulator @@ -96,7 +96,7 @@ def _start_matchbox(): cmd = ['matchbox-window-manager'] cmd.extend(['-use_titlebar', 'no']) - cmd.extend(['-theme', 'olpc']) + cmd.extend(['-theme', 'sugar']) log.debug( 'Matchbox command: %s', " ".join( cmd) ) gobject.spawn_async(cmd, flags=gobject.SPAWN_SEARCH_PATH) @@ -150,14 +150,19 @@ def main(): os.environ['GTK2_RC_FILES'] = env.get_data_path(gtkrc_filename) print os.environ['GTK2_RC_FILES'] + command = ['dbus-launch', 'dbus-launch', '--exit-with-session'] + if not args: - program = 'sugar-shell' + command.append('sugar-shell') else: _start_matchbox() - program = args[0] + + if args[0].endswith('.py'): + command.append('python') + + command.append(args[0]) - command = ['dbus-launch', 'dbus-launch', '--exit-with-session', program] - log.info( "Attempting to launch sugar to replace this process: %s", " ".join(command) ) + log.info( "Attempting to launch sugar to replace this process: %s", " ".join(command)) os.execlp( *command ) if __name__ == "__main__": -- cgit v0.9.1