Removing wine menu entries and file associations on Ubuntu
Posted: 20 September 2011 Filed under: Uncategorized 1 CommentFrom the Wine FAQ, this works for me on Ubuntu Lucid, using Wine 1.2.2:
rm -f $HOME/.config/menus/applications-merged/wine*
rm -rf $HOME/.local/share/applications/wine
rm -f $HOME/.local/share/desktop-directories/wine*
rm -f $HOME/.local/share/icons/????_*.{xpm,png}
rm -f $HOME/.local/share/icons/*-x-wine-*.{xpm,png}
And the file associations:
rm -f $HOME/local/share/applications/wine-extension-*
Finally, if you’d like to remove installed Wine applications entirely for a single user, say, yourself:
rm -rf $HOME/.wine
thanks a lot, i needed to remove some wine menus too.