mirror of
https://github.com/donovanglover/nix-config.git
synced 2025-06-26 04:31:21 +02:00
dunst: Set border color to primary color
This commit is contained in:
parent
190da5ed57
commit
455ad36e56
@ -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;
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user