From 040b91a7a5b085f8aa0bec3580bf7d68450e6fc9 Mon Sep 17 00:00:00 2001 From: Ruben Beltran del Rio Date: Sat, 16 Mar 2024 11:01:41 +0100 Subject: Add linux config --- src/configuration.rs | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to '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() ] } } -- cgit