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/mako/default.nix

24 lines
389 B
Nix
Raw Normal View History

2022-12-16 08:10:28 +00:00
{
2023-10-08 10:51:15 +01:00
config,
pkgs,
...
}: {
2023-03-14 15:23:24 +00:00
services.mako = {
2022-12-16 08:10:28 +00:00
enable = true;
anchor = "top-right";
defaultTimeout = 5000;
2023-05-14 10:23:49 +01:00
width = 440;
height = 320;
2022-12-16 08:10:28 +00:00
2023-05-26 02:42:33 +01:00
backgroundColor = "#282828B3";
2023-05-29 16:43:26 +01:00
borderColor = "#665C54ff";
2023-05-26 02:42:33 +01:00
textColor = "#ebdbb2";
progressColor = "over #665c54";
2022-12-16 08:10:28 +00:00
borderRadius = 10;
borderSize = 2;
2023-05-14 10:23:49 +01:00
font = "JetBrainsMono Nerd Font Regular 10";
2022-12-16 08:10:28 +00:00
};
}