I run the script using olpc user<br><br>su -c "export DISPLAY=:0.0; /usr/bin/python my_script.py" olpc<br><br>This call works well but it's ignored at sugar start. <br>A possible workaround can be put this line into cron.daily and configure it to run few minutes after start. I tested it and works but I don't know if it's the best way to do.<br>

<br>Regards,<br>Esteban.<br> <br clear="all">   <div>  </div><font face="'times new roman', serif"></font><br><br><div class="gmail_quote">2011/3/4 Aleksey Lim <span dir="ltr"><<a href="mailto:alsroot@activitycentral.org">alsroot@activitycentral.org</a>></span><br>

<blockquote class="gmail_quote" style="border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;"><div><div></div><div class="h5">On Thu, Mar 03, 2011 at 11:24:44AM -0200, Esteban Bordon wrote:<br>


> Hi all,<br>
><br>
> I want to show a simple notification when sugar starts up.<br>
><br>
> I have a python script like this:<br>
><br>
> import dbus<br>
> BUS_NAME = 'org.freedesktop.Notifications'<br>
> OBJ_PATH = '/org/freedesktop/Notifications'<br>
><br>
> IFACE_NAME = 'org.freedesktop.Notifications'<br>
> bus = dbus.SessionBus()<br>
> notify_obj = bus.get_object(BUS_NAME,OBJ_PATH)<br>
> notifications = dbus.Interface(notify_obj,IFACE_NAME)<br>
> notifications.Notify("HelloWorld",0,'',"Summary","Body",[],{},-1)<br>
><br>
> The script works fine, but I couldn't run it at sugar start up. I<br>
> tried to call the script in .xsession and sugar-session but didn't<br>
> work.<br>
><br>
> Any idea?<br>
<br>
</div></div>The problem might occur due to different dbus sessions,<br>
make sure that sugar and the session you send dbus messages from are<br>
using the same dbus session.<br>
<br>
<br>
><br>
><br>
> Thanks,<br>
> Esteban.<br>
<br>
> _______________________________________________<br>
> Dextrose mailing list<br>
> <a href="mailto:Dextrose@lists.sugarlabs.org">Dextrose@lists.sugarlabs.org</a><br>
> <a href="http://lists.sugarlabs.org/listinfo/dextrose" target="_blank">http://lists.sugarlabs.org/listinfo/dextrose</a><br>
<br>
<br>
--<br>
<font color="#888888">Aleksey<br>
</font></blockquote></div><br>