Skip to content

Commit

Permalink
feat(home-manager): add transparent option for k9s (#138)
Browse files Browse the repository at this point in the history
  • Loading branch information
henrisota authored Apr 23, 2024
1 parent cc89781 commit ade2e73
Showing 1 changed file with 15 additions and 10 deletions.
25 changes: 15 additions & 10 deletions modules/home-manager/k9s.nix
Original file line number Diff line number Diff line change
Expand Up @@ -7,22 +7,27 @@ let
cfg = config.programs.k9s.catppuccin;
enable = cfg.enable && config.programs.k9s.enable;

themeFile = "catppuccin-${cfg.flavour}.yaml";
themeName = "catppuccin-${cfg.flavour}" + lib.optionalString cfg.transparent "-transparent";
themeFile = "${themeName}.yaml";
themePath = "/skins/${themeFile}";
theme = sources.k9s + "/dist/${themeFile}";
in
{
options.programs.k9s.catppuccin =
lib.ctp.mkCatppuccinOpt "k9s";
lib.ctp.mkCatppuccinOpt "k9s"
// {
transparent = lib.mkEnableOption "transparent version of flavour";
};

config = lib.mkIf enable
{
assertions = [
(lib.ctp.assertXdgEnabled "k9s")
];
config =
lib.mkIf enable
{
assertions = [
(lib.ctp.assertXdgEnabled "k9s")
];

xdg.configFile."k9s${themePath}".source = theme;
xdg.configFile."k9s${themePath}".source = theme;

programs.k9s.settings.k9s.ui.skin = "catppuccin-${cfg.flavour}";
};
programs.k9s.settings.k9s.ui.skin = themeName;
};
}

0 comments on commit ade2e73

Please sign in to comment.