Skip to content
This repository was archived by the owner on Feb 16, 2025. It is now read-only.

Commit 3e40d5c

Browse files
committed
fix(namespace): change dbus interface name
1 parent 9d6d1d8 commit 3e40d5c

File tree

2 files changed

+9
-7
lines changed

2 files changed

+9
-7
lines changed

Diff for: src/desktop_entry.rs

+5-5
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
1-
//! # D-Bus interface proxy for: `org.desktopintegration.DesktopEntry`
1+
//! # D-Bus interface proxy for: `io.ryanabx.DesktopEntry`
22
//!
33
//! This code was generated by `zbus-xmlgen` `4.1.0` from D-Bus introspection data.
4-
//! Source: `Interface '/org/desktopintegration/DesktopEntry' from service 'org.desktopintegration.DesktopEntry' on system bus`.
4+
//! Source: `Interface '/io/ryanabx/DesktopEntry' from service 'io.ryanabx.DesktopEntry' on system bus`.
55
//!
66
//! You may prefer to adapt it, instead of using it verbatim.
77
//!
@@ -21,9 +21,9 @@
2121
//! [D-Bus standard interfaces]: https://dbus.freedesktop.org/doc/dbus-specification.html#standard-interfaces,
2222
use zbus::proxy;
2323
#[proxy(
24-
interface = "org.desktopintegration.DesktopEntry",
25-
default_service = "org.desktopintegration.DesktopEntry",
26-
default_path = "/org/desktopintegration/DesktopEntry"
24+
interface = "io.ryanabx.DesktopEntry",
25+
default_service = "io.ryanabx.DesktopEntry",
26+
default_path = "/io/ryanabx/DesktopEntry"
2727
)]
2828
trait DesktopEntry {
2929
/// NewPersistentEntry method

Diff for: systemd/container-desktop-entries.service

+4-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[Unit]
2-
Description=Container desktop entries server service
2+
Description=Provides desktop entries for container apps
33
WantedBy=desktop-entry-daemon.service
44
Requires=desktop-entry-daemon.service
55
After=desktop-entry-daemon.service
@@ -9,4 +9,6 @@ Type=simple
99
Environment="RUST_LOG=debug"
1010
ExecStart=container-desktop-entries
1111
RuntimeDirectory=container-desktop-entries
12-
Slice=session.slice
12+
13+
[Install]
14+
WantedBy=desktop-entry-daemon.service

0 commit comments

Comments
 (0)