Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'd like to be able to add a #! comment at the top of my .desktop file so that if it has execute permissions and is executed, it'll actually run. However, I don't know what the interpreter for .desktop files is, so I don't know which /usr/bin/ file to write in the hashbang. Any ideas?


Edit:

So far, I've made a small bash script, execdesktop, that can execute desktop files:

`sed -nr 's/Exec=(.*)$/\\1/p' $1`

If I then add the following to my .desktop files:

#!/usr/bin/execdesktop

Then it runs fine. This method works, but I'd prefer not to have to use it since it requires the installation of execdesktop.

share|improve this question

2 Answers

up vote 2 down vote accepted

You can always use xdg-open for your shebang, as in:

#!/usr/bin/env xdg-open

This won't cause any trouble because # starts comments also in .desktop files.

share|improve this answer
Interesting, though xdg-open seems to want to open all of my .desktop files in gedit instead of actually launching them. – Reinderien May 16 '11 at 19:06
@Reinderien: have you associated .desktop files to gedit? What does xdg-mime query default application/x-desktop return? – ninjalj May 16 '11 at 19:12
1  
@Reinderien: anyway, you should be able to use #!/bin/sed -ne s/^Exec=//e as your shebang line. – ninjalj May 18 '11 at 19:05
2  
@ninjalj The xdg-open issue (opens in gedit) is due to a bug in gnome. Still there is a workaround. Please see my answer to the same question at [askubuntu] (askubuntu.com/questions/5172/…) – Carlo Pellegrini Jan 11 at 12:37
1  
This answer is wrong. Desktop files are not intended to be executed EVER. The fact that in some machines xdg-open MIGHT work is just a question of the association of files, but it's still wrong. Don't run .desktop files, don't make them executable. – Marga Manterola Apr 9 at 18:59
show 5 more comments

There isn't one; .desktop files aren't intended to be executed. Run the executable given in the Exec key instead.

share|improve this answer
They're executed one way or another. There's absolutely no way to invoke a .desktop file from the command line? That doesn't seem very linux-like... – Reinderien May 16 '11 at 18:00
Desktop files are NOT executed. The line inside them that has an executable command line is the one that gets executed. The rest of the file is parsed by the Desktop Environment. – Marga Manterola Apr 9 at 19:00

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.