Skip to content
This repository has been archived by the owner on Jun 4, 2024. It is now read-only.

Commit

Permalink
feat(home-manager): linux added mako
Browse files Browse the repository at this point in the history
  • Loading branch information
storopoli committed Nov 25, 2023
1 parent 5a11ee4 commit d05a74f
Show file tree
Hide file tree
Showing 2 changed files with 27 additions and 0 deletions.
1 change: 1 addition & 0 deletions home-manager/linux/hyprland/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@
./waybar
./gtk.nix
./rofi
./mako.nix
];
programs = {
bash = {
Expand Down
26 changes: 26 additions & 0 deletions home-manager/linux/hyprland/mako.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
{ ... }:

{
services.mako = {
enable = true;

defaultTimeout = 30000; # milliseconds

font = "Hack Nerd Font Propo 12";
width = 256;
height = 500;
margin = "10";
padding = "5";
borderSize = 3;
borderRadius = 3;
backgroundColor = "#1a1b26";
borderColor = "#c0caf5";
progressColor = "over #302D41";
textColor = "#c0caf5";
extraConfig = ''
text-alignment=center
[urgency=high]
border-color=#F8BD96
'';
};
}

0 comments on commit d05a74f

Please sign in to comment.