Files
nix-config/modules/hm/mako.nix
Felix Schulze 0ec0dd5d6c wildfire: 453 current 2025-09-03 13:18:22 25.05.20250831.b4c2c57 6.16.4 *
Mako styling

wildfire: 454 current  2025-09-03 13:23:58  25.05.20250831.b4c2c57  6.16.4                          *

wildfire: 455 current  2025-09-03 13:25:58  25.05.20250831.b4c2c57  6.16.4                          *

wildfire: 456 current  2025-09-03 13:26:56  25.05.20250831.b4c2c57  6.16.4                          *

wildfire: 457 current  2025-09-03 13:27:36  25.05.20250831.b4c2c57  6.16.4                          *
2025-09-03 13:32:35 +02:00

26 lines
574 B
Nix

{...}: let
colors = import ../gruvbox-theme.nix;
in {
services.mako = {
enable = true;
settings = {
font = "Intel One Mono 10";
actions = true;
anchor = "bottom-right";
background-color = "${colors.gruvbox.bg0}";
text-color = "${colors.gruvbox.fg0}";
border-color = "${colors.gruvbox.yellow}";
border-radius = 5;
default-timeout = 15000;
height = 100;
width = 300;
icons = true;
layer = "top";
margin = 5;
padding = 15;
border-size = 1;
markup = true;
};
};
}