2024-05-21 21:53:46 +00:00
|
|
|
{ config, lib, ... }:
|
2023-10-22 19:28:28 +00:00
|
|
|
let
|
2024-05-13 20:33:16 +00:00
|
|
|
inherit (config.catppuccin) sources;
|
2023-10-22 19:28:28 +00:00
|
|
|
cfg = config.programs.fish.catppuccin;
|
|
|
|
enable = cfg.enable && config.programs.fish.enable;
|
|
|
|
|
2024-05-22 00:23:55 +00:00
|
|
|
themeName = "Catppuccin ${lib.ctp.mkUpper cfg.flavor}";
|
2023-11-02 17:55:47 +00:00
|
|
|
themePath = "/themes/${themeName}.theme";
|
2023-10-22 19:28:28 +00:00
|
|
|
in
|
|
|
|
{
|
2024-06-28 16:29:30 +00:00
|
|
|
options.programs.fish.catppuccin = lib.ctp.mkCatppuccinOpt { name = "fish"; };
|
2023-10-22 19:28:28 +00:00
|
|
|
|
2024-05-21 03:53:33 +00:00
|
|
|
config = lib.mkIf enable {
|
2023-11-03 17:25:24 +00:00
|
|
|
xdg.configFile."fish${themePath}".source = "${sources.fish}${themePath}";
|
2023-10-22 19:28:28 +00:00
|
|
|
|
|
|
|
programs.fish.shellInit = ''
|
|
|
|
fish_config theme choose "${themeName}"
|
|
|
|
'';
|
|
|
|
};
|
|
|
|
}
|