nixos-config/modules/workspace/mako.nix

21 lines
641 B
Nix
Raw Normal View History

2021-01-13 15:24:22 +04: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 20:32:13 +04:00
backgroundColor = "${config.themes.colors.bg}AA";
2021-01-13 15:24:22 +04:00
textColor = config.themes.colors.fg;
2021-02-25 20:32:13 +04:00
borderColor = "${config.themes.colors.blue}AA";
2021-01-13 15:24:22 +04:00
progressColor = "over ${config.themes.colors.green}";
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-02-17 17:00:59 +04:00
}