To the best of my knowledge, all shortcuts in the Unity Launcher have a corresponding *.desktop file. I have one shortcut (for skrooge) that doesn't have an icon. How can I find the *.desktop file corresponding to this shortcut so that I can add an icon to it?
It's probably sitting in
/usr/share/applications/
but if you want to find every.desktop
file on the system run this:or
To find files with "skrooge" in their path or name, add a grep to the command:
The system stores the .desktop files in
/usr/share/applications/
. Unfortunately, if you open that folder in nautilus the .desktop files appears with the icon specified in the file and with the file name called out within the file. You also won't be allowed to edit these files by clicking on them and selecting edit.To edit these files, you need to open that folder within a terminal window. Doing an
ls
command will show all the .desktop files with their actual names. When you locate the .desktop you wish to change, rungksudo gedit {file-name}.desktop
.It's normal practice to keep any .desktop files you create or edit in your home folder
~/.local/share/applications
.Some additional details to supplement the other answers:
Typically,
.desktop
files for packages will be located in/usr/share/applications
.If you want, you could copy one to
~/.local/share/applications
and edit it there without needing sudo. Items in~/.local/share/applications
will override matching items in/usr/share/applications
and/usr/local/share/applications
, but are only visible to your user.Alternatively, you could place an edited copy in
/usr/local/share/applications
where it will override any in/usr/share/applications
while also being visible to the entire system.Note that you should not edit the
.desktop
files in/usr/share/applications
directly; any changes you make will be automatically overwritten when the application is updated by the package manager.Extracted from here
Desktop files of snap packages can be found in
/var/lib/snapd/desktop/applications/
and below/snap/
.You can find all directories with desktop files in the XDG_DATA_DIRS environment variable. The *.desktop files can be in the
applications
directory in each of the directory in that variable. E.g.:You can use this bash script to list all desktop files used by the system (e.g. to build the panel or applications menu):
I didn't find any documentation for this but there's some information about this environment variable here: https://unix.stackexchange.com/a/531664
I know I'm late to the party, but I have a faster solution than the one accepted as the answer:
It's faster because it doesn't search the data mounted file systems and most probably the desktop file is located in the system partition.
Moreover, it's more likely to find what the command from the accepted answer would miss. That's because the desktop files doesn't have to hold the application name. This command actually searches the text in every desktop file.
/usr/share/applications
(most applications, admin rights)~/.local/share/applications
(personal ones)I do not actually now which .desktop file becomes effective. My best guess is, from https://wiki.archlinux.org/index.php/Desktop_entries , to make a script like this and run it: