2006-09-10 03:07:10 +02:00
|
|
|
#!/usr/bin/python
|
2006-09-10 11:57:41 +02:00
|
|
|
|
2006-09-10 13:31:08 +02:00
|
|
|
from sugar.simulator import Bot
|
2006-09-10 13:50:22 +02:00
|
|
|
from sugar.simulator import ShareActivityAction
|
2006-09-10 11:57:41 +02:00
|
|
|
from sugar.canvas.IconColor import IconColor
|
|
|
|
|
2006-09-10 13:31:08 +02:00
|
|
|
bot = Bot('kiu', IconColor('#5E4505,#0F8A0F'))
|
2006-09-10 13:50:22 +02:00
|
|
|
|
|
|
|
action = ShareActivityAction('OLPC channel',
|
|
|
|
'_GroupChatActivity_Sugar_redhat_com._udp')
|
|
|
|
bot.add_action(action, 10)
|
|
|
|
|
|
|
|
action = ShareActivityAction('Sugar channel',
|
|
|
|
'_GroupChatActivity_Sugar_redhat_com._udp')
|
|
|
|
bot.add_action(action, 20)
|
|
|
|
|
2006-09-10 13:31:08 +02:00
|
|
|
bot.start()
|