Konfabulator widget released - version 0.91
Unfortunately, Konfabulator is shareware, but it only costs $20 (or something like that) which is a small price considering how useful it is. There are hundreds if not thousands of widgets for Konfabulator that do various cool things.
I have to admit that my evaluation copy is still working at the moment.
SuperKaramba on the other hand is open source.
Neil.
I have to admit that my evaluation copy is still working at the moment.

SuperKaramba on the other hand is open source.
Neil.
I've made a slight modification to the .kon file cause I have seven projects running and the max was set to six....therefore I also had to change the position of the vertical footer but the footer won't show up even though I've changed the window height to 200 and the footer vpos to 148
I was wondering if it was possible to have the window resize automatically depending on the number of projects you have or whether you have to define the window dimensions and the maximum number of projects.
Forgot to add: The widget rocks....
I was wondering if it was possible to have the window resize automatically depending on the number of projects you have or whether you have to define the window dimensions and the maximum number of projects.
Forgot to add: The widget rocks....

Hi,
Unfortunately, you have you explicitly state the size of the widget in the kon file, and therefore it is not possible to have a widget that is dynamic in size.
I'm not sure why the footer doesn't show up. Are you sure it is within the bounds of the widget's display area? :-S
Users are more than welcome to extend the widget - I would be interested to see copies of any mods in order to possibly incorporate them into any future versions so that other users can benefit. Any additions that have been sourced from users will be credited of course.
Cheers,
Neil.
Unfortunately, you have you explicitly state the size of the widget in the kon file, and therefore it is not possible to have a widget that is dynamic in size.
I'm not sure why the footer doesn't show up. Are you sure it is within the bounds of the widget's display area? :-S
Users are more than welcome to extend the widget - I would be interested to see copies of any mods in order to possibly incorporate them into any future versions so that other users can benefit. Any additions that have been sourced from users will be credited of course.
Cheers,
Neil.
These are the bits I changed (lines edited are marked):
I'll email you the .kon file so you can test it if you want.
Code: Select all
<window title="BOINC Stats">
<name>main_window</name>
<width>231</width>
<height>200</height> //edited
<alignment>left</alignment>
<opacity>255</opacity>
<visible>0</visible>
<shadow>0</shadow>
</window>
...
var fontSize = 12;
var fontName = "Arial";
var vGap = 12;
var col_1 = 110;
var col_2 = 160;
var col_3 = 220;
var maxProjects = 8;//edited
var footerVPos = 148; //edited
var txtColour = preferences.textColourPref.value;
var txtShadowColour = preferences.textShadowColourPref.value;
...