Update notification body to include album in bold

This commit is contained in:
Anas Elgarhy 2023-02-18 14:47:06 +02:00
parent 5c7a8fc694
commit f975803fc4
No known key found for this signature in database
GPG Key ID: 0501802A1D496528
1 changed files with 1 additions and 1 deletions

View File

@ -5,7 +5,7 @@ use serde::{Deserialize, Serialize};
const NOTIFICATION_TIMEOUT: u8 = 5;
const NOTIFICATION_BODY: &str =
"<b>Playing:</b> {title} \nfrom {album} \n <b>Artist:</b> {artist} - {year}";
"<b>Playing:</b> {title} \n <b>album:</b> {album} \n <b>Artist:</b> {artist} - {year}";
const NOTIFICATION_SUMMARY: &str = "{artist} - {title}";
const NOTIFICATION_APP_NAME: &str = "C* Music Player";
const DEFAULT_MAX_DEPTH: u8 = 3;