2024-05-21 21:53:46 +00:00
|
|
|
{ config, lib, ... }:
|
2023-04-16 00:13:47 +00:00
|
|
|
let
|
2024-05-13 20:33:16 +00:00
|
|
|
inherit (config.catppuccin) sources;
|
2023-04-16 00:13:47 +00:00
|
|
|
cfg = config.programs.btop.catppuccin;
|
2023-07-13 16:17:51 +00:00
|
|
|
enable = cfg.enable && config.programs.btop.enable;
|
|
|
|
|
2024-05-22 00:23:55 +00:00
|
|
|
themeFile = "catppuccin_${cfg.flavor}.theme";
|
2023-11-02 15:49:39 +00:00
|
|
|
themePath = "/themes/${themeFile}";
|
2023-11-02 17:55:47 +00:00
|
|
|
theme = sources.btop + themePath;
|
2023-04-19 00:01:16 +00:00
|
|
|
in
|
|
|
|
{
|
2024-06-28 16:29:30 +00:00
|
|
|
options.programs.btop.catppuccin = lib.ctp.mkCatppuccinOpt { name = "btop"; };
|
2023-04-16 00:13:47 +00:00
|
|
|
|
2024-05-21 21:53:46 +00:00
|
|
|
config = lib.mkIf enable {
|
|
|
|
xdg.configFile."btop${themePath}".source = theme;
|
2023-04-16 00:13:47 +00:00
|
|
|
|
2024-05-21 21:53:46 +00:00
|
|
|
programs.btop.settings.color_theme = themeFile;
|
|
|
|
};
|
2023-04-16 00:13:47 +00:00
|
|
|
}
|