feat: a11y
This commit is contained in:
parent
5a0df6afb6
commit
2612282fcf
5 changed files with 97 additions and 1 deletions
|
|
@ -2,6 +2,7 @@
|
|||
#[macro_use]
|
||||
extern crate tracing;
|
||||
|
||||
mod a11y;
|
||||
mod comp;
|
||||
mod notifications;
|
||||
mod process;
|
||||
|
|
@ -194,6 +195,9 @@ async fn start(
|
|||
systemd::stop_systemd_target();
|
||||
}
|
||||
|
||||
// start a11y if configured
|
||||
tokio::spawn(a11y::start_a11y(env_vars.clone(), process_manager.clone()));
|
||||
|
||||
let (panel_notifications_fd, daemon_notifications_fd) =
|
||||
notifications::create_socket().expect("Failed to create notification socket");
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue