aboutsummaryrefslogtreecommitdiff
path: root/src/configuration.rs
diff options
context:
space:
mode:
authorRuben Beltran del Rio <git@r.bdr.sh>2024-03-16 11:01:41 +0100
committerRuben Beltran del Rio <git@r.bdr.sh>2024-03-16 11:01:41 +0100
commit040b91a7a5b085f8aa0bec3580bf7d68450e6fc9 (patch)
treef27088c562fea977c9cbb97ffde3e81590db91fa /src/configuration.rs
parent616cee0382cb0b9e287d1037ec82813aa859c1a0 (diff)
Add linux config
Diffstat (limited to 'src/configuration.rs')
-rw-r--r--src/configuration.rs5
1 files changed, 3 insertions, 2 deletions
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()
]
}
}