This commit is contained in:
joygnu 2024-09-16 22:05:52 +02:00
parent b3cea13b16
commit 7d15ed9f31
2 changed files with 30 additions and 20 deletions

View file

@ -4,5 +4,7 @@
./idle ./idle
./land ./land
./theme ./theme
./clip
./misc
]; ];
} }

View file

@ -1,27 +1,35 @@
{...}: { { lib, ... }: {
home-manager.users.joy.services.dunst = { home-manager.users.joy.services.dunst = {
enable = true; enable = true;
# settings = { settings = {
# global = { global = {
# frame_color = "#89b4fa"; background = lib.mkForce "#282828";
# separator_color = "frame"; foreground = lib.mkForce "#D5C4A1";
# }; geometry = "300x60-3+200";
padding = 8;
horizontal_padding = 8;
separator_height = 2;
frame_width = 4;
corner_radius = 5;
font = lib.mkForce "DejaVuSansMono 12";
alignment = "center";
vertical_alignment = "center";
ellipsize = "middle";
ignore_newline = false;
};
# urgency_low = { urgency_low = {
# background = "#1e1e2e"; frame_color = lib.mkForce "#98971a";
# foreground = "#cdd6f4"; };
# };
# urgency_normal = { urgency_normal = {
# background = "#1e1e2e"; frame_color = lib.mkForce "#458588";
# foreground = "#cdd6f4"; };
# };
# urgency_critical = { urgency_critical = {
# background = "#1e1e2e"; frame_color = lib.mkForce "#98971a";
# foreground = "#cdd6f4"; };
# frame_color = "#fab387"; };
# };
# };
}; };
} }