


Developers Apps by scummos 6 comments

Developers Apps by scummos 6 comments

Developers Apps by weidendo 2 comments
would it be possible to use syntax highlighting for the code view? :)
Best regards,
scummos - Nov 01 2009

Beryl/Emerald Themes by dorian90 9 comments
only works if you have compiz running, to start it type compiz --replace ccp &
Regards,
Sven - Oct 08 2009

Various KDE 1.-4. Improvements by echoes 9 comments

QtCurve by joshjtl 53 comments
Best regards, Sven - Mar 22 2009

KDE 3.x Splash Screens by jonson2050 2 comments

Nature by tichy 1 comment

KDE 3.5 Themes by speleoalex 265 comments

QtCurve by chareos 6 comments
It should not be too hard to recreate this, cause it doesnt use any strange gradients or graphics... (i cant do, but surely someone else can...) - Oct 12 2008

Desktop Concepts by fapasv 9 comments
i like it =) - Oct 02 2008

Wallpaper Other by kde86 3 comments
* could you publish the blenfile or render a widescreen resolution image (1920x1200)? :)
cya - Oct 02 2008

Various KDE 1.-4. Improvements by dunkelstern 56 comments

Graphic Apps by reynaga 26 comments
Just *read* the GPL, it is very interesting! *g
So I think it does not make much sense trying to "force" a donation. =) - May 06 2008
if I understood that right, you can use this app to make firefox usw. look like QT? That would be very nice.
So I did what you wrote, I downloaded the theme and applied it (but nothing special happened). Then I started the app and selected the recommended theme - after relogin, GTK apps were showing my KDE *colors*, but not the theme....
Or do I have to compile and install the source code as well? :)
Best regards
Sven - Mar 23 2008

Wallpaper Other by ilovewindows 13 comments

Karamba & Superkaramba by foobla 4 comments
You don't have permission to access /svn/common/superkaramba/sniffelschoibi/sniffelschoibi.tar.gz on this server.
Apache Server at xapek.org Port 80
^^ - Oct 13 2007

Network by eniac 2 comments
it just generates a few files in my root filesystem:
linux-xkc5:/ # ls
bin dev home LICENSE.openssh lost+found mnt README srv tuncfg
boot etc lib LICENSE.openssl Makefile opt root sys usr
CHANGES hamachi LICENSE LICENSE.tuncfg media proc sbin tmp var
I dunno what they are doing there ^^
Good luck...
Best regreads
scummos - Oct 07 2007

Wallpaper Other by janet 6 comments
Tell me, how do you create such an image? ^^
Best regreads
Sven - Oct 04 2007

Icon Sub-Sets by dorota 4 comments
i think i normally need about 1:00 to 1:30 minutes or so...
greetings, sven - Sep 30 2007

Icon Sub-Sets by dorota 4 comments
you're able to do the cube? :)
how long do you need for solving it? - Sep 29 2007

Beryl/Emerald Themes by pinguino2 4 comments

Wallpaper Other by epse 4 comments
Grüße von Karlsruhe nach Karlsruhe! =) - Jun 15 2007

Cursors by HeWhoE 11 comments
So I´ll mix the two themes a bit :P
By the way, how do you create this cursors? I mean, how to convert an animation into X11-Cursor format and back?
Greetings scum :) - Jun 15 2007

Various KDE 1.-4. Improvements by bico 16 comments

Email by marcel83 148 comments
File "kgmailnotifier.py", line 34, in <module>
import configurationdialog
File "/home/sven/Documents/Downloads/KGmailNotifier-0.3.0-beta2/KGmailNotifier/configurationdialog.py", line 29, in <module>
from kfile import KFileDialog
ImportError: /usr/lib/python2.5/site-packages/kio.so: undefined symbol: _ZN13KServiceGroup11SuSEentriesEbbbbb
- May 30 2007

Beryl/Emerald Themes by justcme 23 comments
now window titles, no buttons... sorry :) i can´t use it like that.
but i like it anyway =) - May 14 2007

Icon Sub-Sets by PhilippeP 2 comments
Thank you! - May 07 2007

Karamba & Superkaramba by samibenyounes 5 comments
but how can i unzip it? ark doesn´t really recognize it ;) - May 06 2007

Karamba & Superkaramba by samibenyounes 5 comments
and i can´t fix it, because you´ve only published the compiled .skz file... - May 06 2007

Full Icon Themes by dedmopozzz 13 comments
#!/bin/bash
# Install script for the navigation icons.
# Just a little bit of scripting, of course it´s GPL.
# USAGE OF SCRIPT IS ON YOUR OWN RISK. THERE´S NO WARRANTY AT ALL.
echo -e "This script will install the navigation Icons. \033[1m\033[38mIt will overwrite your old navigation icons.\033[0m To continue, press Enter; to abort, press Strg+C."
read enter
echo "Please enter the full name of your currently used iconset. If you aren´t sure, look in $HOME/.kde/icons which is the exact name of your theme.
Below all iconsets found in $HOME/.kde/share/icons are listed."
list=$(ls $HOME/.kde/share/icons)
echo
echo -e "\033[1m\033[34m$list\033[0m"
echo
read icontheme
if [ "$icontheme" ]; then
ls $HOME/.kde/share/icons |grep "$icontheme" > /dev/null || nicfnd=1
if [ $nicfnd ]; then echo "ERROR: $icontheme is not a valid icontheme. Aborting."; exit 0; fi
else echo "You have to enter an icon theme. Aborting." && exit 0; fi
icontheme=$(echo $HOME/.kde/share/icons/"$icontheme")
echo "copying..."
cp -f -v 16x16/actions/* "$icontheme"/16x16 || check=1
cp -f -v 22x22/actions/* "$icontheme"/22x22 || check=1
cp -f -v 32x32/actions/* "$icontheme"/32x32 || check=1
cp -f -v 48x48/actions/* "$icontheme"/48x48 || check=1
#cp -f 56x56/actions/* "$icontheme"/56x56 || check=1
cp -f -v 64x64/actions/* "$icontheme"/64x64 || check=1
#cp -f 72x72/actions/* "$icontheme"/72x72 || check=1
#cp -f 96x96/actions/* "$icontheme"/96x96 || check=1
cp -f -v 128x128/actions/* "$icontheme"/128x128 || check=1
echo -n " ... done."
echo
if [ ! $check ]; then echo "Installation successfull. Do you want to run kbuildsycoca now? [any input to run, enter to skip]"; else echo "Installation FAILED! See the output above to fix the error. Probably you have entered a wrong icon set name."; fi
read ksc
if [ $ksc ]; then kbuildsycoca || check=1; fi - May 05 2007

Bootsplash Various by freedom2099 21 comments
but grub-> same prob - May 04 2007

Karamba & Superkaramba by scummos 8 comments
Just open the .theme file with your favourite editor (e.g. kate) and change all "wlan0" to "eth0" (or whatever your interface is). Have fun =) - May 02 2007

Full Icon Themes by Sephiroth6779 87 comments
But... could you make the "share" icon (the hand with the globe) a bit more decent? It looks really ugly if it´s so big ;)
And also if it´s inspirated by vista, do you think it´s good to add windows symbols to some icons? Also if inspirated by windos, it´s still a linux system =)
Great work, howewer.
Greetings - Apr 28 2007

Karamba & Superkaramba by scummos 8 comments
-> fixed broken link, had written http:// twice :D - Apr 22 2007

Karamba & Superkaramba by scummos 8 comments
thanks :)
the icon theme can be found here: http://www.kde-look.org/content/show.php/Tux'N'Tosh+Icons?content=13025 - Apr 22 2007

System Software by xis 97 comments
*** Creating acinclude.m4
*** Creating list of subdirectories
*** Creating configure.in
*** Creating aclocal.m4
autom4te: unknown language: Autoconf-without-aclocal-m4
aclocal: autom4te failed with exit status: 1
make: *** [cvs] Fehler 1
:´[
tried all suported autoconf versions -- same error...
what to do? - Apr 20 2007