<div>Thanks to all for the info, and I've actually just started to look at bt-plugin.c.</div>
<div>&nbsp;</div>
<div>I am sorry for the previous question, I sent it before I was quite finished editing.&nbsp; So, to add on a bit to what I asked - and to get at what I was really asking:</div>
<div>&nbsp;</div>
<div>It seems to me that most 3rd party applications will want to have a desktop plugin to launch them.&nbsp; In fact, I can imagine people wanting more web links on their desktop than one.</div>
<div>&nbsp;</div>
<div>So, I'm trying to write a simple generic 'launcher' for a Maemo application.&nbsp; Would I be better off to use D-Bus instead?&nbsp; (is it safe to assume all applications will be a D-BUS service?)</div>
<div>&nbsp;</div>
<div>Thanks,</div>
<div>&nbsp;</div>
<div>Brad.</div>
<div>&nbsp;</div>
<div>PS Tomas - I was looking at bt-plugin.c and was wondering if it would be fairly trivial to add in support for some of the extra keys on the Nokia keyboard?&nbsp; And I suppose sending a signal to keep the screen active is not easy to do?&nbsp; (I'd think if it was you would have added it).&nbsp; 
<br><br>&nbsp;</div>
<div><span class="gmail_quote">On 12/15/05, <b class="gmail_sendername">Tomas Junnonen</b> &lt;<a href="mailto:tomas.junnonen@nokia.com">tomas.junnonen@nokia.com</a>&gt; wrote:</span>
<blockquote class="gmail_quote" style="PADDING-LEFT: 1ex; MARGIN: 0px 0px 0px 0.8ex; BORDER-LEFT: #ccc 1px solid">ext Brad Burleson wrote:<br>&gt; I'm probably doing something stupid, but I'm trying to write a home<br>&gt; plug-in that executes a shell script (which, in turn, will eventually
<br>&gt; launch some application).&nbsp;&nbsp;I hacked the code from one of the nokia<br>&gt; 'hello-world-app' programs and except for struggling with the gnu build<br>&gt; tools (and my own ignorance) things are going well.<br>&gt;
<br>&gt; My code looks like this:<br>&gt;<br>&gt;&nbsp;&nbsp; execl(&quot;/bin/sh&quot;, &quot;sh&quot;, &quot;-c&quot;, &quot;pplay&quot;, (char *)0);<br>&gt;<br>&gt; When I do this within a callback, as soon as the button is clicked the
<br>&gt; screen turns white and the script - and application - runs, but the UI<br>&gt; is broken - hard to explain, but it's not drawn completely and the only<br>&gt; function that seems to work is to close the program.&nbsp;&nbsp;At which point,
<br>&gt; the 770 reboots.<br>&gt;<br>&gt; (my feeble mind says it must be related to the [l]eave part of execl())<br>&gt;<br>&gt; Any tips on how to execute a shell script (or any binary) from a maemo<br>&gt; application?
<br><br>The home plugins do not have their own main loop but use the desktop's,<br>so when you call execl the desktop process image is in fact replaced<br>with that of the called program.<br><br>As pete said, you should use the g_spawn_* functions instead. In
<br>practice you should only ever be using the async versions in the home<br>plugins and statusbar applets, as they will not block updating of the<br>desktop while your child process runs. If you need an example of using<br>
g_spawn_async, take a look at the btkeyboards plugin at<br><a href="http://770.fs-security.com/keyboards.html">http://770.fs-security.com/keyboards.html</a>.<br><br>Regards,<br>Tomas<br></blockquote></div><br>