Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions src/DesktopIntegration.vala
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand All @@ -15,8 +15,8 @@ public interface Gala.DesktopIntegration : Object {
HashTable<string, Variant> 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 ();

Expand Down