Skip to content

Commit

Permalink
wob: init (danth#594)
Browse files Browse the repository at this point in the history
  • Loading branch information
mich-adams authored and Mikilio committed Nov 4, 2024
1 parent fcdb93a commit 13b9c34
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions modules/wob/hm.nix
Original file line number Diff line number Diff line change
@@ -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;
};
};
};
}

0 comments on commit 13b9c34

Please sign in to comment.