This repository has been archived on 2024-04-14. You can view files and clone it, but cannot push or open issues or pull requests.
nixos-dotfiles/user/configs/wayland/wob/default.nix

21 lines
393 B
Nix
Raw Normal View History

2022-12-16 08:10:28 +00:00
{ config, pkgs, lib, ... }:
2023-03-14 15:23:24 +00:00
let
colors = config.colorScheme.colors;
in
2022-12-16 08:10:28 +00:00
{
xdg.configFile."wob/wob.ini".text = lib.generators.toINIWithGlobalSection { } {
globalSection = {
height = "40";
border_size = "2";
2023-03-14 15:23:24 +00:00
border_color = "${colors.base0F}FF";
2022-12-16 08:10:28 +00:00
2023-03-14 15:23:24 +00:00
background_color = "${colors.base00}FF";
bar_color = "${colors.base0F}FF";
2022-12-16 08:10:28 +00:00
};
sections = { };
};
}