33

I have searched a great deal and have been unable to find an answer to this. What does the TryExec field do in .desktop files? How does it differ from the Exec field?

Mike Pierce
  • 737
  • 1
  • 6
  • 23
Rohan
  • 3,491
  • 9
  • 28
  • 45
  • 2
    [_Path to an executable file on disk used to determine if the program is actually installed. If the path is not an absolute path, the file is looked up in the $PATH environment variable. If the file is not present or if it is not executable, the entry may be ignored (not be used in menus, for example)._](https://specifications.freedesktop.org/desktop-entry-spec/latest/ar01s05.html) – don_crissti Feb 17 '16 at 20:04
  • @don_cissti: you should add this as an answer. For completeness add the link to https://developer.gnome.org/desktop-entry-spec/. – Bram Aug 15 '16 at 21:03

1 Answers1

28

According to standards.freedesktop.org, the TryExec entry takes the following:

Path to an executable file on disk used to determine if the program is actually installed. If the path is not an absolute path, the file is looked up in the $PATH environment variable. If the file is not present or if it is not executable, the entry may be ignored (not be used in menus, for example).

Desktop Application Autostart Specification states:

A .desktop file with a non-empty TryExec field MUST NOT be autostarted if the value of the TryExec key does NOT match with an installed executable program.

Unlike Exec and despite the similar name, TryExec does not actually execute it's value.

Mike Pierce
  • 737
  • 1
  • 6
  • 23
  • And what `$PATH` is used? It seems that changes to the `$PATH` made by the user's shell config are not included. – ntc2 Dec 22 '18 at 04:21
  • 1
    I ran into an issue. I hope this saves someone else time. I don't think the TryExec path can be a symlink. I wasn't seeing my .desktop file show up in the list of sessions for my greeter and as soon as I changed my TryExec from a symlink to a direct copy of the file, it worked. – Eric Ihli May 18 '21 at 04:44