2
rated 0 times
[
2]
[
0]
/ answers: 1 / hits: 7411
/ 10 Months ago, mon, december 19, 2022, 8:55:50
I have a .desktop file:
[Desktop Entry]
Type=Application
Terminal=true
Name=RunMe
Exec=run.sh
When I double click the .desktop file, I get There was an error launching the application.
my run.sh
is:
#!/bin/sh
xulrunner-sdk/bin/xulrunner-stub --app xulrunner-sdk/bin/application.ini 2>~log.log
Double clicking on run.sh
and clicking run
runs the application fine. Both run.sh
and my .desktop
are executable.
What do I need to change in my desktop file to make this work?
More From » command-line