Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion linux-rust/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -145,7 +145,11 @@ async fn async_main(
command_tx: None,
ui_tx: Some(ui_tx.clone()),
};
let handle = tray.spawn().await.unwrap();
// LibrePods can be started by the session manager before the desktop's
// StatusNotifierWatcher is ready. Keep the tray service alive in that
// case so it can register when the watcher appears instead of aborting
// the entire process during login.
let handle = tray.assume_sni_available(true).spawn().await.unwrap();
Some(handle)
};

Expand Down