21 lines
641 B
Nix
Raw Normal View History

2021-01-13 14:24:22 +03:00
{ 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;
2021-02-25 19:32:13 +03:00
backgroundColor = "${config.themes.colors.bg}AA";
2021-01-13 14:24:22 +03:00
textColor = config.themes.colors.fg;
2021-02-25 19:32:13 +03:00
borderColor = "${config.themes.colors.blue}AA";
2021-01-13 14:24:22 +03:00
progressColor = "over ${config.themes.colors.green}";
2021-02-25 19:32:13 +03:00
iconPath = "${pkgs.papirus-icon-theme}/share/icons/Papirus-Dark";
maxIconSize = 24;
2021-01-13 14:24:22 +03:00
};
};
2020-02-17 16:00:59 +03:00
}