2024-05-21 21:53:46 +00:00
|
|
|
{ config, lib, ... }:
|
2023-07-13 16:17:51 +00:00
|
|
|
let
|
2024-05-13 20:33:16 +00:00
|
|
|
inherit (config.catppuccin) sources;
|
2023-07-13 16:17:51 +00:00
|
|
|
cfg = config.services.polybar.catppuccin;
|
|
|
|
enable = cfg.enable && config.services.polybar.enable;
|
|
|
|
in
|
|
|
|
{
|
2024-06-28 16:29:30 +00:00
|
|
|
options.services.polybar.catppuccin = lib.ctp.mkCatppuccinOpt { name = "polybar"; };
|
2023-04-15 03:00:14 +00:00
|
|
|
|
2024-05-21 21:53:46 +00:00
|
|
|
config.services.polybar.extraConfig = lib.mkIf enable (
|
2024-05-22 00:23:55 +00:00
|
|
|
builtins.readFile "${sources.polybar}/themes/${cfg.flavor}.ini"
|
2024-05-21 21:53:46 +00:00
|
|
|
);
|
2023-04-15 03:00:14 +00:00
|
|
|
}
|