Use the X-GNOME-FullName desktop file key

This commit is contained in:
Přemysl Eric Janouch 2022-02-21 22:22:48 +01:00
parent 41bd25e711
commit 31f9feab7b
Signed by: p
GPG Key ID: A0420B94F92B9493
3 changed files with 5 additions and 2 deletions

View File

@ -2,6 +2,7 @@
Type=Application
Name=fiv
GenericName=Image Browser
X-GNOME-FullName=fiv Image Browser
Icon=fiv
Exec=fiv --browse -- %u
NoDisplay=true

View File

@ -704,8 +704,9 @@ append_opener(GtkWidget *menu, GAppInfo *opener, const OpenContext *template)
ctx->content_type = g_strdup(template->content_type);
ctx->app_info = opener;
// XXX: Would g_app_info_get_display_name() be any better?
gchar *name = g_strdup_printf("Open With %s", g_app_info_get_name(opener));
// On Linux, this prefers the obsoleted X-GNOME-FullName.
gchar *name =
g_strdup_printf("Open With %s", g_app_info_get_display_name(opener));
// It's documented that we can touch the child, if we want to use markup.
#if 0

View File

@ -2,6 +2,7 @@
Type=Application
Name=fiv
GenericName=Image Viewer
X-GNOME-FullName=fiv Image Viewer
Icon=fiv
Exec=fiv -- %u
Terminal=false