cleanup desktop entry

This commit is contained in:
tobtoht 2023-11-28 01:41:26 +01:00
parent a73d715b72
commit 33035a21a8
No known key found for this signature in database
GPG key ID: E45B10DD027D2472

View file

@ -265,16 +265,14 @@ void copyColumn(QModelIndex *index, int column) {
QString xdgDesktopEntry(){ QString xdgDesktopEntry(){
return QString( return QString(
"[Desktop Entry]\n" "[Desktop Entry]\n"
"Name=Feather\n" "Name=Feather Wallet\n"
"GenericName=Feather\n" "Comment=A free Monero desktop wallet\n"
"X-GNOME-FullName=Feather\n"
"Comment=a free, open source Monero desktop wallet\n"
"Keywords=Monero;\n" "Keywords=Monero;\n"
"Exec=\"%1\" %u\n" "Exec=\"%1\"\n"
"Terminal=false\n" "Terminal=false\n"
"Type=Application\n" "Type=Application\n"
"Icon=feather\n" "Icon=feather\n"
"Categories=Network;GNOME;Qt;\n" "Categories=Network;\n"
"StartupNotify=false\n" "StartupNotify=false\n"
).arg(applicationFilePath()); ).arg(applicationFilePath());
} }