You are not logged in.
Pages: 1
Kicker applet, which runs a user selected program in the background every several seconds and presents it's output in text area inside your kde panel:
http://www.kde-apps.org/content/show.php?content=47184
The stuff is pretty generic, how it will be used is up to you, an example:
#!/usr/bin/perl
($sec, $min, $hour) = localtime(time());
printf("%02d:%02dn", $hour, $min);
will provide a nice clock.
Offline
Pages: 1