You are not logged in.
Is there a way to hide KDE apps in Gnome Applications menu?
also, do "edit menus" works for you in Arch?
thanks in advance
Offline
I beleive the only way is to remove them using a menu editor.
Offline
Is there a way to hide KDE apps in Gnome Applications menu?
also, do "edit menus" works for you in Arch?thanks in advance
Go to /opt/kde/share/applications/kde and insert OnlyShowIn=KDE into the desired files.
Offline
thanks. This is the script I made to remove KDE apps from Gnome:
#!/bin/bash
for file in /opt/kde/share/applications/kde/*
do
echo 'OnlyShowIn=KDE;' >> $file
done
Offline