From b9cacd5423e46dbef5ca75b92615a4ed99fcc7c7 Mon Sep 17 00:00:00 2001 From: tobtoht Date: Mon, 6 Feb 2023 13:27:31 +0100 Subject: [PATCH] utils: fix create desktop file --- src/utils/Utils.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/utils/Utils.cpp b/src/utils/Utils.cpp index 36a505ea..6555d121 100644 --- a/src/utils/Utils.cpp +++ b/src/utils/Utils.cpp @@ -235,14 +235,14 @@ QString xdgDesktopEntry(){ "Name=Feather\n" "GenericName=Feather\n" "X-GNOME-FullName=Feather\n" - "Comment=a free Monero desktop wallet\n" + "Comment=a free, open source Monero desktop wallet\n" "Keywords=Monero;\n" "Exec=\"%1\" %u\n" "Terminal=false\n" "Type=Application\n" - "Icon=monero\n" + "Icon=feather\n" "Categories=Network;GNOME;Qt;\n" - "StartupNotify=true\n" + "StartupNotify=false\n" ).arg(QApplication::applicationFilePath()); } @@ -273,7 +273,7 @@ bool xdgDesktopEntryRegister() { if (!fileExists(pathIcon)) { pixmapWrite(pathIcon, appIcon); } - xdgDesktopEntryWrite(QStandardPaths::writableLocation(QStandardPaths::ApplicationsLocation)); + xdgDesktopEntryWrite(QStandardPaths::writableLocation(QStandardPaths::ApplicationsLocation) + "/feather-wallet.desktop"); xdgRefreshApplications(); return true; -- 2.52.0