From 342369eaf92dbb5a3d642d82da8429ce2f57e573 Mon Sep 17 00:00:00 2001 From: Ian Douglas Scott Date: Mon, 21 Oct 2024 12:50:36 -0700 Subject: [PATCH] Launch `cosmic-idle` --- debian/control | 1 + src/main.rs | 11 +++++++++++ 2 files changed, 12 insertions(+) diff --git a/debian/control b/debian/control index c3fd397..392f578 100644 --- a/debian/control +++ b/debian/control @@ -22,6 +22,7 @@ Depends: cosmic-files, cosmic-greeter, cosmic-icons, + cosmic-idle, cosmic-launcher, cosmic-notifications, cosmic-osd, diff --git a/src/main.rs b/src/main.rs index 2a315b1..3ee9d45 100644 --- a/src/main.rs +++ b/src/main.rs @@ -322,6 +322,17 @@ async fn start( ) .await; + let span = info_span!(parent: None, "cosmic-idle"); + start_component( + "cosmic-idle", + span, + &process_manager, + &env_vars, + &socket_tx, + Vec::new(), + ) + .await; + let span = info_span!(parent: None, "xdg-desktop-portal-cosmic"); let mut sockets = Vec::with_capacity(1); let extra_env = Vec::with_capacity(1);