[style]: Change mako and wofi style

This commit is contained in:
Sweetbread 2024-04-24 17:14:59 +03:00
parent 5850436e06
commit 999718f06e
3 changed files with 22 additions and 0 deletions

View File

@ -9,5 +9,7 @@
./wms/hyprland.nix
./wms/waybar.nix
./wms/wofi.nix
./wms/mako.nix
];
}

View File

@ -0,0 +1,12 @@
{
xdg.configFile."mako/config".text = ''
background-color=#303446
text-color=#c6d0f5
border-color=#8caaee
progress-color=over #414559
default-timeout=5000
[urgency=high]
border-color=#ef9f76
'';
}

View File

@ -0,0 +1,8 @@
{ pkgs, ... }: {
xdg.configFile."wofi/style.css".source = pkgs.requireFile {
xdg.configFile."wofi/style.css".source = pkgs.fetchurl {
name = "style.css";
url = "https://raw.githubusercontent.com/PaulGuerre/arch_dotfiles/main/wofi/style.css";
sha256 = "16lr4j0nn6kpggr4wdz9s0jymqmn05vm7i4vsdslzp5vlarcv03j";
};
}