
which might be a good place to start) and do a grep for the image name on all files in those directories. That might turn up something.
I had a go at starting with the app itself, or guessing the image name.
cd /opt/kde3 find | grep -i drag | m ./share/doc/HTML/en/konqueror/dragdrop.png ./share/apps/khexedit/toolbar/hexdrag.png ./share/icons/kdeclassic/16x16/actions/pmdrag.png ./share/icons/kdeclassic/22x22/actions/pmdrag.png
So no, the image name does not have a drag in its name. The application in question is kdm. It's part of the kdebase rpm, but that doesn't contain any useful hint - /opt/kde3/share/config/kdm/backgroundrc looked promising, but it's not it. /opt/kde3/share/config/kdm/kdmrc could be a candidate, and reading the comments, contains # The image to show when LogoArea=Logo. Default is kdelogo.png #LogoPixmap= but kdelogo.png is not the dragon. Perhaps the comment is wrong, and default is that dragon image. Michael's suggestion has only one match:
fxargs --FILE -- grep aboutkde.png Binary file ./lib/libkdeui.so.4.1.0 matches
Running the "logout" does not start a new process, so it's implemented by calling one of the functions in a process already running. I renamed the aboutkde.png, and replaced it with a sumlink to some other png, and also made the following change: --- share/config/kdm/kdmrc.orig 2003-03-19 06:56:44.000000000 +1200 +++ share/config/kdm/kdmrc 2003-08-31 14:03:55.000000000 +1200 @@ -255,9 +255,10 @@ # "Logo" - the image specified by LogoPixmap (Default) # "Clock" - a neat analog clock # "None" - nothing -LogoArea=Clock +LogoArea=Logo # The image to show when LogoArea=Logo. Default is kdelogo.png #LogoPixmap= +LogoPixmap=/opt/kde3/share/apps/kdm/pics/kdeflower.png # Normally, the greeter is centered on the screen. Use this, if you want # it to appear elsewhere on the screen. Default is false #GreeterPosFixed=true switched to a console, killed off kdm and all kdeinit and other kde related stuff, and started kdm. No difference - the fact that the dragon image no longer exists means it's inlined into something. Unless there's another dragon image somewhere. LogoPixmap=/opt/kde3/share/apps/kdm/pics/kdeflower.png and LogoPixmap=kdelogo.png had identical behaviour, i.e. no effect (that kdelogo.png was symlinked to a png which is definitely not a dragon). Anyway, this should affect the login screen, not the logout screen where the dragon is. The login screen keeps on showing the clock, so that doesn't work either. As I can see, the config option for login are there but non-functional, the config-option for logout doesn't exist. You could file a bug report about both kdm and kdeui. To fix it, the easiest way at this point is to recompile libkdeui (i.e. the kdelibs3 package). Volker -- Volker Kuhlmann is possibly list0570 with the domain in header http://volker.dnsalias.net/ Please do not CC list postings to me.