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

18 lines
304 B
Nix
Raw Normal View History

2023-05-26 02:42:33 +01:00
{ lib, ... }:
2022-12-16 08:10:28 +00:00
{
xdg.configFile."wob/wob.ini".text = lib.generators.toINIWithGlobalSection { } {
globalSection = {
height = "40";
border_size = "2";
2023-05-26 02:42:33 +01:00
border_color = "98971AFF";
2022-12-16 08:10:28 +00:00
2023-05-26 02:42:33 +01:00
background_color = "282828FF";
bar_color = "665C54FF";
2022-12-16 08:10:28 +00:00
};
sections = { };
};
}