19 lines
531 B
Nix
19 lines
531 B
Nix
{ pkgs, config, ... }: {
|
|
home-manager.users.balsoft = {
|
|
wayland.windowManager.sway.config.startup = [{ command = "mako"; }];
|
|
programs.mako = {
|
|
enable = true;
|
|
layer = "overlay";
|
|
font = "IBM Plex 13";
|
|
width = 500;
|
|
height = 80;
|
|
defaultTimeout = 10000;
|
|
maxVisible = 10;
|
|
backgroundColor = config.themes.colors.bg;
|
|
textColor = config.themes.colors.fg;
|
|
borderColor = config.themes.colors.blue;
|
|
progressColor = "over ${config.themes.colors.green}";
|
|
};
|
|
};
|
|
}
|