2021-01-13 15:24:22 +04:00
|
|
|
{ pkgs, config, ... }: {
|
|
|
|
home-manager.users.balsoft = {
|
|
|
|
wayland.windowManager.sway.config.startup = [{ command = "mako"; }];
|
2021-06-10 19:58:51 +04:00
|
|
|
programs.mako = with pkgs.my-lib.thmHash; {
|
2021-01-13 15:24:22 +04:00
|
|
|
enable = true;
|
|
|
|
layer = "overlay";
|
2021-06-10 19:58:51 +04:00
|
|
|
font = with config.themes.fonts; "${main.family} ${toString main.size}";
|
2021-01-13 15:24:22 +04:00
|
|
|
width = 500;
|
|
|
|
height = 80;
|
|
|
|
defaultTimeout = 10000;
|
|
|
|
maxVisible = 10;
|
2021-06-10 19:58:51 +04:00
|
|
|
backgroundColor = "${base00}AA";
|
|
|
|
textColor = base05;
|
|
|
|
borderColor = "${base0D}AA";
|
|
|
|
progressColor = "over ${base0B}";
|
2021-02-25 20:32:13 +04:00
|
|
|
iconPath = "${pkgs.papirus-icon-theme}/share/icons/Papirus-Dark";
|
|
|
|
maxIconSize = 24;
|
2021-01-13 15:24:22 +04:00
|
|
|
};
|
2020-05-12 21:59:15 +04:00
|
|
|
};
|
2020-02-17 17:00:59 +04:00
|
|
|
}
|