From 6484c34bec698582d3a00ea68ed5043657c7ee81 Mon Sep 17 00:00:00 2001 From: Tim Culverhouse Date: Fri, 15 Sep 2023 03:22:48 -0500 Subject: [PATCH] linux: don't presume install location in desktop file The app.desktop file shipped with the default build presumes the install location of the binary. Let the OS determine the executable through it's normal PATH variables. --- dist/linux/app.desktop | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/dist/linux/app.desktop b/dist/linux/app.desktop index 043ab1aeb..a26862179 100644 --- a/dist/linux/app.desktop +++ b/dist/linux/app.desktop @@ -2,7 +2,7 @@ Name=Ghostty Type=Application Comment=A terminal emulator -Exec=/usr/bin/ghostty +Exec=ghostty Icon=com.mitchellh.ghostty Keywords=terminal;tty;pty; StartupNotify=true @@ -11,4 +11,4 @@ Actions=new-window [Desktop Action new-window] Actions=new-window -Exec=/usr/bin/ghostty +Exec=ghostty