sugar-toolkit-gtk3/sugar/session/session.py

22 lines
371 B
Python
Raw Normal View History

2006-05-16 22:32:08 +02:00
import os
import sys
import pygtk
pygtk.require('2.0')
import gtk
from sugar.shell import shell
def start(console):
2006-05-16 22:32:08 +02:00
shell.main()
print 'aaaa'
2006-05-16 22:32:08 +02:00
activities = ['sugar/chat/chat', 'sugar/browser/browser']
for activity in activities:
args = [ 'python', '-m', activity ]
if console:
args.append('--console')
os.spawnvp(os.P_NOWAIT, 'python', args)
2006-05-16 22:32:08 +02:00
gtk.main()