From 90cea2a5cb91e739cff7ca04214cdc76e8583616 Mon Sep 17 00:00:00 2001 From: Teemu Ikonen Date: Sat, 7 Feb 2026 17:15:46 +0200 Subject: [PATCH] Set desktop file name in main.cpp This allows Linux desktops to show the correct icon etc. --- src/main.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/main.cpp b/src/main.cpp index 3999846d..d0c9a83e 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -11,6 +11,7 @@ int main(int argc, char* argv[]) QCoreApplication::setOrganizationDomain("https://github.com/fstl-app/fstl"); QCoreApplication::setApplicationName("fstl"); QCoreApplication::setApplicationVersion(FSTL_VERSION); + QGuiApplication::setDesktopFileName("fstlapp-fstl.desktop"); App a(argc, argv); return a.exec();