diff --git a/src/settings.rs b/src/settings.rs index c822598..d26e679 100644 --- a/src/settings.rs +++ b/src/settings.rs @@ -5,13 +5,12 @@ use serde::{Deserialize, Serialize}; const NOTIFICATION_TIMEOUT: u8 = 5; const NOTIFICATION_BODY: &str = - "Playing: {title} \n album: {album} \n Artist: {artist} - {date}"; + "album: {album} \n Artist: {artist} - {date}"; const NOTIFICATION_SUMMARY: &str = "{title}"; const NOTIFICATION_APP_NAME: &str = "C* Music Player"; const DEFAULT_REMOTE_COMMAND: &str = "cmus-remote"; const DEFAULT_MAX_DEPTH: u8 = 3; -const DEFAULT_INTERVAL_TIME: u64 = 1000; -// 1000 ms +const DEFAULT_INTERVAL_TIME: u64 = 1000; // 1000 ms const DEFAULT_STATUS_CHANGE_NOTIFICATION_BODY: &str = "{status}"; const DEFAULT_STATUS_CHANGE_NOTIFICATION_SUMMARY: &str = "{title}"; const DEFAULT_STATUS_CHANGE_NOTIFICATION_TIMEOUT: u8 = 1;