I found this in another thread and it might be usefull to some people:
It removes every kubuntu program from the gnome menu:
Code:
cd /usr/share/applications/kde
sudo chmod a+rw /usr/share/applications/kde/*
for i in *; do echo "OnlyShowIn=KDE;" >> $i; done
sudo chmod 644 /usr/share/applications/kde/*