From 8bbda99dc929419940d1d3b77f47661ee228f6f3 Mon Sep 17 00:00:00 2001 From: Tait Hoyem Date: Wed, 20 Mar 2024 13:36:21 -0600 Subject: [PATCH] Use app names in notiication speech --- odilia/src/main.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/odilia/src/main.rs b/odilia/src/main.rs index 53f6f442..4c96d1be 100644 --- a/odilia/src/main.rs +++ b/odilia/src/main.rs @@ -40,7 +40,7 @@ async fn notifications_monitor( tokio::select! { Some(notification) = stream.next() => { let notification_message = - format!("new notification: {}, {}.", notification.title, notification.body); + format!("new notification: {}, {}, {}.", notification.app_name, notification.title, notification.body); state.say(Priority::Important, notification_message).await; }, () = shutdown.cancelled() => {