X-Git-Url: https://git.r.bdr.sh/rbdr/lyricli/blobdiff_plain/616cee0382cb0b9e287d1037ec82813aa859c1a0..040b91a7a5b085f8aa0bec3580bf7d68450e6fc9:/src/configuration.rs diff --git a/src/configuration.rs b/src/configuration.rs index f678461..55443eb 100644 --- a/src/configuration.rs +++ b/src/configuration.rs @@ -8,7 +8,7 @@ use serde_json; 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)] @@ -55,7 +55,8 @@ impl Configuration { Configuration { enabled_sources: vec![ "apple_music".to_string(), - "spotify".to_string() + "spotify".to_string(), + "strawberry".to_string() ] } }