Skip to content

Commit

Permalink
Fix TryExec in Linux .desktop files (no quotes)
Browse files Browse the repository at this point in the history
On my virtual machine GNOME is refusing to display desktop entries
where TryExec is quoted. Indeed the spec only mentions quotes in Exec.

Regression in 5f9fe3e.
  • Loading branch information
slipher committed Apr 24, 2024
1 parent 6950265 commit 7aa8c28
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion resources/net.unvanquished.Unvanquished.desktop
Expand Up @@ -6,7 +6,7 @@ Icon=unvanquished
Terminal=false
Type=Application
Exec="%1/updater"
TryExec="%1/updater"
TryExec=%1/updater
Categories=Game;ActionGame;StrategyGame;
# Probably doesn't work since the updater is initially launched, not daemon
PrefersNonDefaultGPU=true
Expand Up @@ -5,7 +5,7 @@ NoDisplay=true
Terminal=false
Type=Application
Exec="%1/daemon" -connect %u
TryExec="%1/daemon"
TryExec=%1/daemon
MimeType=x-scheme-handler/unv
# Unclear if this will work when Breakpad is enabled
PrefersNonDefaultGPU=true

0 comments on commit 7aa8c28

Please sign in to comment.