From 13b9c345c7a976468cbbb126bd3ee37428b06cdb Mon Sep 17 00:00:00 2001 From: Michael Adams Date: Sat, 19 Oct 2024 19:33:13 -0400 Subject: [PATCH] wob: init (#594) --- modules/wob/hm.nix | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 modules/wob/hm.nix diff --git a/modules/wob/hm.nix b/modules/wob/hm.nix new file mode 100644 index 00000000..e4f221b0 --- /dev/null +++ b/modules/wob/hm.nix @@ -0,0 +1,19 @@ +{ config, lib, ... }: + +{ + options.stylix.targets.wob.enable = + config.lib.stylix.mkEnableTarget "wob" true; + + config = lib.mkIf (config.stylix.enable && config.stylix.targets.wob.enable) { + services.wob.settings = { + "" = { + border_color = config.lib.stylix.colors.base05; + background_color = config.lib.stylix.colors.base00; + bar_color = config.lib.stylix.colors.base0A; + overflow_bar_color = config.lib.stylix.colors.base08; + overflow_background_color = config.lib.stylix.colors.base00; + overflow_border_color = config.lib.stylix.colors.base05; + }; + }; + }; +}