We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 70e16e2 commit 9d88398Copy full SHA for 9d88398
src/dbus/mod.rs
@@ -82,3 +82,21 @@ pub fn ready(common: &Common) -> Result<()> {
82
83
Ok(())
84
}
85
+
86
+/*
87
+/// Serve interfaces on session socket
88
+///
89
+/// (Currently only the a11y keyboard monitor interface)
90
+fn serve_interfaces(executor: &ThreadPool) {
91
+ let executor_clone = executor.clone();
92
+ executor.spawn_ok(async move {
93
+ serve_interfaces_inner(&executor_clone);
94
+ });
95
+}
96
97
+async fn serve_interfaces_inner(executor: &ThreadPool, a11y_clients: Arc<Mutex<a11y_keyboard_monitor::Clients>>) -> zbus::Result<()> {
98
+ let conn = zbus::Connection::session().await?;
99
+ name_owners::NameOwners::new(&conn, executor).await?;
100
+ Ok(())
101
102
+*/
0 commit comments