From f62867b9f9ac14698520353545e0964fbbef8a72 Mon Sep 17 00:00:00 2001 From: lenemter Date: Sat, 24 Aug 2024 22:58:16 +0900 Subject: [PATCH] Use new gala dbus name --- src/DesktopIntegration.vala | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/DesktopIntegration.vala b/src/DesktopIntegration.vala index 5281840e..fb0536ae 100644 --- a/src/DesktopIntegration.vala +++ b/src/DesktopIntegration.vala @@ -3,7 +3,7 @@ * SPDX-License-Identifier: LGPL-2.1-or-later */ -[DBus (name = "org.pantheon.gala.DesktopIntegration")] +[DBus (name = "io.elementary.gala.DesktopIntegration")] public interface Gala.DesktopIntegration : Object { public struct RunningApplications { string app_id; @@ -15,8 +15,8 @@ public interface Gala.DesktopIntegration : Object { HashTable details; } - private const string NAME = "org.pantheon.gala"; - private const string PATH = "/org/pantheon/gala/DesktopInterface"; + private const string NAME = "io.elementary.gala"; + private const string PATH = "/io/elementary/gala/DesktopInterface"; public signal void running_applications_changed ();