Skip to main content

You are not logged in. Your edit will be placed in a queue until it is peer reviewed.

We welcome edits that make the post easier to understand and more valuable for readers. Because community members review edits, please try to make the post substantially better than how you found it, for example, by fixing grammar or adding additional resources and hyperlinks.

Required fields*

12
  • I did that, I can see the icon under applications, but when I click the app does not start, the cursor only changes to a loading symbol for a few seconds. No error message. Commented Dec 1, 2013 at 8:49
  • @mart Can you tell us which application you are trying to add a launcher for? Commented Dec 1, 2013 at 11:21
  • 1
    FTL - an indie game I bought somewhere on the web. Starting from Console works. Commented Dec 1, 2013 at 15:12
  • 2
    @mart <path>/.FTL would point to a hidden file called .FTL, which is not the same as ./FTL, which points to a file called FTL in the current directory. You can try to launch FTL via /full/path/path/to/FTL in a terminal to see if you get any meaningfull error output. For instance, if the executable searches for libraries in the current working directory, you might have to do a launcher script which does something along the lines of pushd <path>; ./FTL; popd and point the Exec specifier in the desktop file to the launcher script instead. Commented Dec 1, 2013 at 16:35
  • 1
    correction: it works from inside the directory Commented Dec 1, 2013 at 20:36