


Various KDE 1.-4. Improvements by tipote 67 comments
http://cow.mooh.org/togo
If anyone is so inclined, the source RPM file should build fine on Mandriva 2006 as well ;) - Sep 20 2006
Problem: when I hit alt-space, whenever I type:
a) nothing text appears - it just remains saying 'katapult'
b) when I hit enter, it comes up with 'no items matched'
I'm building katapult using gcc-4.0.1. I'm using KDE 3.4.2 (standard Mandriva RPM's), and I get the same problem with older versions of katapult too (I've tested up to 0.2). I've also tried adding and removing all the catalongs one by one too, still no luck :( - Jan 31 2006

Graphic Apps by MarcusT 10 comments
http://cow.mooh.org/togo/ - Jan 13 2006

Screensavers by carstenw42 55 comments
are here:
http://cow.mooh.org/togo - Jan 02 2006

Various Stuff by Gizzmo 4 comments

Various KDE 1.-4. Improvements by lucher 176 comments
(for some reason the < and > doesn't show up on the parent post) - Mar 31 2005

KDE 3.x Window Decorations by fubarbundy 38 comments
http://cow.mooh.org/togo
Enjoy ;) - Nov 29 2004

KDE 3.5 Themes by leinir 97 comments
http://cow.mooh.org/togo
Disclaimer: Hopefully they won't (totally) destroy your installation ;) - Nov 25 2004
In kroller.py I added this line at line 31:
from math import sin, exp
And at about line 525, I modified the bounce code:
## Bounce Effect
if (animateOnClick == "bounce"):
## Going up
## Number of times it icon appears to bounce
nB = 4
## Number of 'frames' in bounce animation
bounceIter = 60
## Scale the input parameter
k = (3.14159265*nB)/(bounceIter)
for up in range (1,bounceIter,2):
## Decaying sinusoid for 'bounce'
move=bounceHeight*abs(sin(k*up))*exp(-1*k*up/5)
karamba.moveImage(widget, imagesBig[iconNum], currentXPosition, currentYPosition - move)
karamba.redrawWidget(widget)
## Sleep a bit to accomadate the maxFPS setting
if (sleepTime):
time.sleep(sleepTime)
(and I got rid of the 'going down' block since it wasn't needed anymore)
Play with the nB value and the bounceIter value for the 'smoothness' of the bounce.
It's a shameless hack, but hopefully it'll work for some people :) - Nov 17 2003