mirror of
https://git.sr.ht/~neverness/ultima
synced 2025-01-09 19:03:53 +00:00
36 lines
828 B
Nix
36 lines
828 B
Nix
|
{ lib, config, True, ... }:
|
||
|
|
||
|
with lib;
|
||
|
|
||
|
let cfg = config.module.wm.misc.wob;
|
||
|
in {
|
||
|
options = { module.wm.misc.wob = { enable = mkEnableOption ""; }; };
|
||
|
|
||
|
config = mkIf cfg.enable {
|
||
|
services.wob = with config.lib.stylix.colors;
|
||
|
True // {
|
||
|
systemd = true;
|
||
|
settings = {
|
||
|
"" = {
|
||
|
background_color = "${base00}";
|
||
|
bar_color = "${base03}";
|
||
|
border_color = "${base0E}";
|
||
|
anchor = "top right";
|
||
|
|
||
|
overflow_background_color = "${base00}";
|
||
|
overflow_bar_color = "${base03}";
|
||
|
overflow_border_color = "${base0C}";
|
||
|
|
||
|
margin = 30;
|
||
|
height = 50;
|
||
|
width = 400;
|
||
|
border_size = 10;
|
||
|
bar_padding = 6;
|
||
|
output_mode = "focused";
|
||
|
};
|
||
|
};
|
||
|
};
|
||
|
};
|
||
|
}
|
||
|
|