dunst: Set border color to primary color

This commit is contained in:
Donovan Glover 2024-09-04 20:43:08 -04:00
parent 190da5ed57
commit 455ad36e56
No known key found for this signature in database
GPG Key ID: EA7408A77AE1BE65

View File

@ -1,5 +1,12 @@
{ pkgs, ... }: { config, pkgs, lib, ... }:
let
inherit (lib) mkForce;
inherit (config.lib.stylix.colors.withHashtag)
base0D
;
in
{ {
services.dunst = { services.dunst = {
enable = true; enable = true;
@ -25,6 +32,10 @@
min_icon_size = 32; min_icon_size = 32;
max_icon_size = 128; max_icon_size = 128;
}; };
urgency_low.frame_color = mkForce base0D;
urgency_normal.frame_color = mkForce base0D;
urgency_critical.frame_color = mkForce base0D;
}; };
}; };
} }