feat: a11y

This commit is contained in:
Ashley Wulber 2024-11-01 08:30:48 -04:00 committed by Ashley Wulber
parent 5a0df6afb6
commit 2612282fcf
5 changed files with 97 additions and 1 deletions

View file

@ -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");