Initial mako config

This commit is contained in:
Lyndon Sanche 2022-07-20 12:41:42 -06:00
parent 7794dbe521
commit 68eb771568
No known key found for this signature in database
GPG key ID: 6F8E82F60C799B18
2 changed files with 29 additions and 0 deletions

View file

@ -65,6 +65,7 @@
./modules/helix.nix
./modules/kitty.nix
./modules/lightdm.nix
./modules/mako.nix
./modules/plymouth
./modules/qutebrowser.nix
./modules/sway.nix

28
modules/mako.nix Normal file
View file

@ -0,0 +1,28 @@
{pkgs, config, lib, ... }:
with config.lib.stylix.colors.withHashtag;
with config.stylix.fonts;
{
# Referenced https://github.com/stacyharper/base16-mako
home-manager.sharedModules = [{
programs.mako = {
backgroundColor = base00;
borderColor = base0D;
textColor = base05;
progressColor = "over ${base02}";
font = sansSerif.name;
# I wish the mako hm module was like the dunst one
extraConfig = ''
[urgency=low]
background-color=${base00}
border-color=${base0D}
text-color=${base0A}
[urgency=high]
background-color=${base00}
border-color=${base0D}
text-color=${base08}
'';
};
}];
}