

The patch is here: http://paste.debian.net/143937/ - Nov 08 2011

KDE 4 Splashscreens by Num83rGuy 1 comment

Plasma 4 Extensions by joseexposito89 185 comments

Plasma 4 Extensions by joseexposito89 185 comments

KDE 4 Splashscreens by downdiagonal 5 comments

Plasma 4 Extensions by JustinBuser 39 comments
Thanks. - Jun 15 2011

KDM4 Themes by vaxxipooh 1 comment

Beryl/Emerald Themes by downdiagonal 11 comments

Full Icon Themes by downdiagonal 36 comments

Conky by downdiagonal 60 comments
http://lyricsdownloader.googlecode.com/svn/trunk/lyricsdownloader.py - Nov 04 2009

Conky by downdiagonal 60 comments

Conky by downdiagonal 60 comments

Conky by downdiagonal 60 comments

Conky by downdiagonal 60 comments

deKorator Themes by downdiagonal 6 comments

Various KDE 1.-4. Improvements by nablaoperator 42 comments

Conky by downdiagonal 60 comments

Plasma 4 Extensions by admoore 15 comments
http://pastebin.com/f53f35361 - Aug 30 2009

Karamba & Superkaramba by downdiagonal 19 comments

Plasma 4 Extensions by helldrive 7 comments
Is this module supposed to be included with your package, or does it come with another package? - Jul 09 2009

Conky by downdiagonal 60 comments

Conky by downdiagonal 60 comments

Karamba & Superkaramba by downdiagonal 19 comments

Full Icon Themes by downdiagonal 36 comments

KDE 3 Color Schemes by downdiagonal 5 comments

KDE 3 Color Schemes by downdiagonal 5 comments

Plasma 4 Extensions by mbaszczewski 445 comments

Karamba & Superkaramba by downdiagonal 19 comments
The easiest way to resize would be to run it as a plasmoid. Then plasma will add a resize handle. - May 21 2009

Conky by downdiagonal 60 comments
Quote:${font}${execpi 10 ~/.scripts/lyricsdownloader.py -a '${alignc}' | fold -sw60 }${font} - May 11 2009

Conky by downdiagonal 60 comments
Quote: else: print '\n'.join(lyrics)
to:
Quote: else: print '\n'.join(map(lambda x: x.center(100),lyrics)) - May 11 2009

Conky by downdiagonal 60 comments
Quote:${font}${execi 10 lyricsdownloader -c 50 | fold -sw60 }${font}
or you can just drop the fold altogether like this:
Quote:${font}${execi 10 lyricsdownloader -c 50 }${font}
The fold command just makes sure that no line exceeds 60 characters. Sometimes the lyrics returned have long lines that make your conky grow horizontally. - May 02 2009

Conky by downdiagonal 60 comments

Plasma 4 Extensions by blackhat77 4 comments

Full Icon Themes by downdiagonal 36 comments

Full Icon Themes by robakpiotr 15 comments

Full Icon Themes by robakpiotr 15 comments
About Phonon/Solid, the AudioInterface class in PyKDE4.solid looks like it might do the job. I don't think it would be too difficult to also add a configuration dialog that tells it what channels to display. - Feb 24 2009
My changes are here: http://pastebin.com/f14e25065 - Feb 23 2009

Conky by downdiagonal 5 comments
That seems to be a problem with trying to use the clock in an existing conkyrc. You might try adding a ${font} tag before the call to the clock, or we can try to add some space to that first line to make it line up. To do that, you'll have to change the line:
Quote:
for g,i in enumerate(horzclock(hours,minutes,seconds)): print cols(columns,g,options.font)+fontpiz + ' '.join(i)
To:
Quote:
for g,i in enumerate(horzclock(hours,minutes,seconds)): print ['',' '][g==0] + cols(columns,g,options.font)+fontpiz + ' '.join(i)
Note that that should still be just one line. You should be able to change the number of spaces in this part, ,' '] until you can get it to line up correctly. - Feb 16 2009

Conky by downdiagonal 5 comments
Can you post a screenshot so that I can maybe tell what the problem is?
Also, you might try changing draw_shades to no. - Feb 15 2009

deKorator Themes by downdiagonal 4 comments

Karamba & Superkaramba by ZAS1 4 comments

Karamba & Superkaramba by downdiagonal 19 comments

deKorator Themes by downdiagonal 6 comments

Karamba & Superkaramba by downdiagonal 19 comments

Conky by downdiagonal 60 comments
As far as changing the text color, you'll need to edit the conkyrc. You need to change this line:
Quote:${font}${execi 10 lyricsdownloader | fold -sw60 }${font}
To this:
Quote:${font}${color 000000}${execi 10 lyricsdownloader | fold -sw60 }${font}
Where 000000 is the hex code for the color you want. Like ffffff for white and ff0000 for red and 00ff00 for green and so on. It's just HTML notation. You can also just change the value for default_color in the file if that's easier for you. Let me know if you have any more problems. - Dec 29 2008