wayle-audio 0.1.4

PulseAudio service with reactive state
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! D-Bus interface for the audio service.
//!
//! Contains the server-side daemon interface and client-side proxy.

mod client;
mod server;

pub use client::AudioProxy;
pub(crate) use server::AudioDaemon;

/// D-Bus service name.
pub const SERVICE_NAME: &str = "com.wayle.Audio1";

/// D-Bus object path.
pub const SERVICE_PATH: &str = "/com/wayle/Audio";