From 549e8074443cc43a8533f48229121e1e3249250e Mon Sep 17 00:00:00 2001 From: Anas Elgarhy Date: Thu, 23 Feb 2023 10:41:39 +0200 Subject: [PATCH] Update notification body to include the track's release date --- src/settings.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/settings.rs b/src/settings.rs index 47c6992..4c0d5d6 100644 --- a/src/settings.rs +++ b/src/settings.rs @@ -5,7 +5,7 @@ use serde::{Deserialize, Serialize}; pub const NOTIFICATION_TIMEOUT: u8 = 5; pub const NOTIFICATION_BODY: &str = - "Playing: {title} \n album: {album} \n Artist: {artist} - {year}"; + "Playing: {title} \n album: {album} \n Artist: {artist} - {date}"; pub const NOTIFICATION_SUMMARY: &str = "{title}"; pub const NOTIFICATION_APP_NAME: &str = "C* Music Player"; pub const DEFAULT_REMOTE_COMMAND: &str = "cmus-remote";