const CONFIG_ENV_VARIABLE: &str = "LYRICLI_CONFIG_DIRECTORY";
const CONFIG_DEFAULT_LOCATION: &str = "XDG_CONFIG_HOME";
const CONFIG_FALLBACK_LOCATION: &str = ".config";
-const CONFIG_SUBDIRECTORY: &str = ".config";
+const CONFIG_SUBDIRECTORY: &str = "lyricli";
const CONFIG_FILENAME: &str = "lyricli.conf";
#[derive(Serialize, Deserialize, Debug)]
Configuration {
enabled_sources: vec![
"apple_music".to_string(),
- "spotify".to_string()
+ "spotify".to_string(),
+ "strawberry".to_string()
]
}
}