


Amarok 1.x Scripts by ultramancool 66 comments
site => "lyricsspot.com",
name => "Lyricsspot",
regex => qr/<\/h3><font size="2">(.*?)<\/p><\/font>/msi,
disabled => 0,
plain => 0,
);
- Mar 06 2008

System Software by doctorzoidberg 12 comments

Various KDE 1.-4. Improvements by cratos 10 comments
I have an hidden kicker which only comes up when you move the mouse near it. Thus it would be great if you could implent rising the kicker when an urgent window opens, otherwise I wont see them.
That would really help me (especially with Kopete).
Thanks in advance,
Tony. - Jan 18 2005

Karamba & Superkaramba by gladiac 168 comments
Here is the script. Just modify the SERVER and USER variables and create a ~/.netrc entry with your password:
####### Cut Here #######
USER="username"
SERVER="mail.server.example"
# --------------------
fetched="`fetchmail -c --ssl -u $USER $SERVER`"
total="`echo $fetched | cut -d' ' -f1`"
seen="`echo $fetched | cut -d' ' -f3 | cut -d'(' -f2`"
unread="`echo $total-$seen | bc`"
echo "$unread/$total";
####### Cut Here ########
Have fun! - Apr 12 2004