From 63023aa10b17be31307255179c707921d05ffdca Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Danielle=20For=C3=A9?= Date: Tue, 1 Apr 2025 13:46:08 -0700 Subject: [PATCH 1/2] Launcher: update to latest format --- data/io.elementary.monitor.desktop.in | 14 +++++++++----- 1 file changed, 9 insertions(+), 5 deletions(-) diff --git a/data/io.elementary.monitor.desktop.in b/data/io.elementary.monitor.desktop.in index 717c4051..b901057d 100644 --- a/data/io.elementary.monitor.desktop.in +++ b/data/io.elementary.monitor.desktop.in @@ -1,12 +1,16 @@ [Desktop Entry] +Version=1.5 +Type=Application + Name=Monitor -GenericName=System Monitor Comment=Manage processes and monitor resource usage of the system Categories=System;Utility; -Exec=io.elementary.monitor %U +Keywords=System monitor;System usage;Task manager; + Icon=io.elementary.monitor +Exec=io.elementary.monitor %U +SingleMainWindow=true +StartupNotify=true Terminal=false -Type=Application -X-GNOME-Gettext-Domain=monitor -Keywords=System monitor;System usage;Task manager; + X-GNOME-UsesNotifications=false From 73f57dbb609f1d8e840a79c9f71f8aa63932a848 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Danielle=20For=C3=A9?= Date: Tue, 1 Apr 2025 13:49:25 -0700 Subject: [PATCH 2/2] Rename in meson --- data/meson.build | 8 ++++---- ...o.elementary.monitor.desktop.in => monitor.desktop.in} | 0 2 files changed, 4 insertions(+), 4 deletions(-) rename data/{io.elementary.monitor.desktop.in => monitor.desktop.in} (100%) diff --git a/data/meson.build b/data/meson.build index 4924c47e..5cdc9724 100644 --- a/data/meson.build +++ b/data/meson.build @@ -30,12 +30,12 @@ install_data( ) i18n.merge_file( - input: meson.project_name() + '.desktop.in', + input: 'monitor.desktop.in', output: meson.project_name() + '.desktop', - po_dir: join_paths(meson.source_root(), 'po', 'extra'), + po_dir: meson.source_root() / 'po' / 'extra', type: 'desktop', install: true, - install_dir: join_paths(datadir, 'applications') + install_dir: datadir / 'applications' ) i18n.merge_file( @@ -82,4 +82,4 @@ css_gresource = gnome.compile_resources( c_name: 'as2', dependencies: [stylesheet_dark, stylesheet_light], -) \ No newline at end of file +) diff --git a/data/io.elementary.monitor.desktop.in b/data/monitor.desktop.in similarity index 100% rename from data/io.elementary.monitor.desktop.in rename to data/monitor.desktop.in