Hi,<br><br>I tried your version of the Load-Plugin applet. Unfortunately it makes de device reboot everytime I click on the applet. I could repeat the problem inside scratchbox. After going through the source, I found out that the problem is swapname not being initialized the first time. Here's a small patch to make it work.
<br><br><span style="font-family: courier new,monospace;">diff -Naur loadapplet-aw/load-plugin.c loadapplet-henry/load-plugin.c </span><br style="font-family: courier new,monospace;"><span style="font-family: courier new,monospace;">
--- loadapplet-aw/load-plugin.c 2006-02-28 00:32:41.000000000 +0100</span><br style="font-family: courier new,monospace;"><span style="font-family: courier new,monospace;">+++ loadapplet-henry/load-plugin.c 2006-02-27 22:50:
01.000000000 +0100</span><br style="font-family: courier new,monospace;"><span style="font-family: courier new,monospace;">@@ -536,7 +536,7 @@</span><br style="font-family: courier new,monospace;"><span style="font-family: courier new,monospace;">
gtk_menu_shell_append(GTK_MENU_SHELL(info->menu),</span><br style="font-family: courier new,monospace;"><span style="font-family: courier new,monospace;"> info->menu_separator);</span>
<br style="font-family: courier new,monospace;"><span style="font-family: courier new,monospace;"> /* Swap */</span><br style="font-family: courier new,monospace;"><span style="font-family: courier new,monospace;">
- if (strncmp(swapname, "", 1) != 0) {</span><br style="font-family: courier new,monospace;"><span style="font-family: courier new,monospace;">+ if (swapname && strncmp(swapname, "", 1) != 0) {
</span><br style="font-family: courier new,monospace;"><span style="font-family: courier new,monospace;"> if (swapisactive())</span><br style="font-family: courier new,monospace;"><span style="font-family: courier new,monospace;">
sprintf(label, "swapoff %s (%d MB used)", swapname, (swapused+512)/1024);</span><br style="font-family: courier new,monospace;"><span style="font-family: courier new,monospace;"> else</span>
<br><br>Regards,<br><br>Henry<br>