mirror of
https://github.com/danth/stylix
synced 2024-11-22 04:03:09 +00:00
wob: init (#594)
This commit is contained in:
parent
6616348cac
commit
fb9399b7e2
1 changed files with 19 additions and 0 deletions
19
modules/wob/hm.nix
Normal file
19
modules/wob/hm.nix
Normal file
|
@ -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;
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
Loading…
Reference in a new issue