ncspot: init (#475)

This commit is contained in:
PedroMAdorno4 2024-07-21 11:57:29 -03:00 committed by GitHub
parent 6f36b27afd
commit 0ef70039a6
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

33
modules/ncspot/hm.nix Normal file
View file

@ -0,0 +1,33 @@
{ config, lib, ... }:
{
options.stylix.targets.ncspot.enable =
config.lib.stylix.mkEnableTarget "Ncspot" true;
config = lib.mkIf (config.stylix.enable && config.stylix.targets.ncspot.enable) {
programs.ncspot.settings =
let
colors = config.lib.stylix.colors.withHashtag;
in {
theme = with colors; {
background = base00;
primary = base05;
secondary = base03;
title = base06;
playing = base05;
playing_selected = base06;
playing_bg = base02;
highlight = base05;
highlight_bg = base02;
error = base07;
error_bg = base0F;
statusbar = base00;
statusbar_progress = base04;
statusbar_bg = base04;
cmdline = base05;
cmdline_bg = base00;
search_match = base05;
};
};
};
}