From 3504a6a8a993a3a37e7a50af322556257ea1abb6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Florian=20M=C3=BCllner?= Date: Tue, 20 Feb 2024 13:09:41 +0100 Subject: [PATCH] extensions-app: Fix service activation mix-up Starting the D-Bus service should not pop-up a window by itself, it should just register and wait for an explicit call to Activate(). The .desktop file on the other hand should fully activate the app when using the Exec line. https://gitlab.gnome.org/GNOME/gnome-shell/-/issues/7423 Part-of: --- .../extensions-app/data/org.gnome.Extensions.desktop.in.in | 2 +- subprojects/extensions-app/data/org.gnome.Extensions.service.in | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/subprojects/extensions-app/data/org.gnome.Extensions.desktop.in.in b/subprojects/extensions-app/data/org.gnome.Extensions.desktop.in.in index b68f5fff6..a935780b7 100644 --- a/subprojects/extensions-app/data/org.gnome.Extensions.desktop.in.in +++ b/subprojects/extensions-app/data/org.gnome.Extensions.desktop.in.in @@ -4,7 +4,7 @@ Name=Extensions # Translators: Do NOT translate or transliterate this text (this is an icon file name)! Icon=@app_id@ Comment=Configure GNOME Shell Extensions -Exec=@bindir@/@prgname@ --gapplication-service +Exec=@bindir@/@prgname@ DBusActivatable=true Categories=GNOME;GTK;Utility; OnlyShowIn=GNOME; diff --git a/subprojects/extensions-app/data/org.gnome.Extensions.service.in b/subprojects/extensions-app/data/org.gnome.Extensions.service.in index 2150999ca..ce41613ba 100644 --- a/subprojects/extensions-app/data/org.gnome.Extensions.service.in +++ b/subprojects/extensions-app/data/org.gnome.Extensions.service.in @@ -1,3 +1,3 @@ [D-BUS Service] Name=@app_id@ -Exec=@bindir@/@prgname@ +Exec=@bindir@/@prgname@ --gapplication-service