Ubuntu – the .desktop icon files stored

desktopdesktop-iconsiconsmenu

What system folder on Ubuntu 12.10 are the main menu .desktop icons stored at???

I am having trouble locating….

Best Answer

The .desktop link files are stored in /usr/share/applications for software installed for all users, and $HOME/.local/share/applications for things you have installed only for yourself.

The actual icon (image) files are a bit more scattered (since a .desktop file can specify their absolute path), but /usr/share/pixmaps and /usr/share/icons contain a good fraction of them. (icons at $prefix/share/icons/ with required fall-back version in hicolor theme can be loaded without the full path, thus such as Icon=video-display where $prefix can be /usr, /usr/local or ~/.local; See specification at freedesktop.org: Icon Theme Specification )

Related Question