[Bug 30849] Kde desktop applications started by gnome-session

Václav Šmilauer eudoxos at arcig.cz
Tue Feb 14 12:43:51 UTC 2006


Public bug report changed:
https://launchpad.net/malone/bugs/30849

Comment:
We did a dist-upgrade yesterday and the problem seems to be fixed only
in some of the kde packages. Problematic files still are:
irkick.desktop, kalarm.tray.desktop, khotkeys.desktop,
kalarmd.autostart.desktop, kgpg.desktop.

I fixed them using the script below; but the autostart entries are
copied over at startup, for whatever reason, to ~/.gnome2/session and
have to be deleted by hand through gnome-session-properties from there
also.

E.

[CODE]
#!/bin/sh
for i in /usr/share/autostart/*.desktop;do
        [ -z $( grep OnlyShowIn $i ) ] || continue;
        echo KDE: $i; cp -a $i $i~
        echo 'OnlyShowIn=KDE;' >> $i
done
[/CODE]




More information about the desktop-bugs mailing list