How can I find *.desktop files?

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?

8 Answers

It's probably sitting in /usr/share/applications/ but if you want to find every .desktop file on the system run this:

find / -name '*.desktop'

or

sudo updatedb
locate *.desktop

To find files with "skrooge" in their path or name, add a grep to the command:

locate *.desktop | grep -iR "skrooge"
6

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, run gksudo gedit {file-name}.desktop.

It's normal practice to keep any .desktop files you create or edit in your home folder ~/.local/share/applications.

6

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

2

Desktop files of snap packages can be found in /var/lib/snapd/desktop/applications/ and below /snap/.

1

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.:

> echo $XDG_DATA_DIRS
/usr/share/ubuntu:/usr/local/share/:/usr/share/:/var/lib/snapd/desktop

You can use this bash script to list all desktop files used by the system (e.g. to build the panel or applications menu):

for p in ${XDG_DATA_DIRS//:/ }; do find $p/applications -name '*.desktop'
done

I didn't find any documentation for this but there's some information about this environment variable here:

6

I know I'm late to the party, but I have a faster solution than the one accepted as the answer:

find / -iname "*desktop" -type f -not -path "/media*" -exec grep -il skrooge '{}' ';' 2> /dev/null

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.

4
  • /usr/share/applications (most applications, admin rights)
  • ~/.local/share/applications (personal ones)
1

I do not actually now which .desktop file becomes effective. My best guess is, from , to make a script like this and run it:

#!/bin/sh
# try to find the effective desktop file
# (there seems to be no documented standard for this)
use_if_desktop_file () { if [ -r "$1" ] && [ "$(xdg-mime query filetype "$1")" = application/x-desktop ]; then echo "$1" exit fi
}
for d in ~/.local/share/applications /usr/local/share/applications \ /usr/share/applications; do use_if_desktop_file "$d/$1" use_if_desktop_file "$d/$1.desktop"
done
# no file found
exit 1

Your Answer

Sign up or log in

Sign up using Google Sign up using Facebook Sign up using Email and Password

Post as a guest

By clicking “Post Your Answer”, you agree to our terms of service, privacy policy and cookie policy

You Might Also Like