From f54e69719bcbe83ed4b28c90152df9a08c0aed33 Mon Sep 17 00:00:00 2001 From: Hadi <112569860+anotherhadi@users.noreply.github.com> Date: Fri, 21 Mar 2025 21:40:35 +0100 Subject: [PATCH] Spotify theme update --- home/programs/spicetify/default.nix | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/home/programs/spicetify/default.nix b/home/programs/spicetify/default.nix index f64a9e6..cabfa6e 100644 --- a/home/programs/spicetify/default.nix +++ b/home/programs/spicetify/default.nix @@ -3,6 +3,7 @@ let spicePkgs = inputs.spicetify-nix.legacyPackages.${pkgs.system}; accent = "${config.lib.stylix.colors.base0D}"; + background = "${config.lib.stylix.colors.base00}"; in { imports = [ inputs.spicetify-nix.homeManagerModules.default ]; @@ -10,7 +11,7 @@ in { programs.spicetify = { enable = true; - theme = lib.mkForce spicePkgs.themes.text; + theme = lib.mkForce spicePkgs.themes.dribbblish; colorScheme = "custom"; @@ -18,6 +19,9 @@ in { button = accent; button-active = accent; tab-active = accent; + player = background; + main = background; + sidebar = background; }; enabledExtensions = with spicePkgs.extensions; [ @@ -27,7 +31,7 @@ in { hidePodcasts adblock fullAppDisplay - shuffle + keyboardShortcut ]; }; }