2025-01-18 03:50:54 -06:00
|
|
|
{ flake, ... }:
|
|
|
|
let
|
|
|
|
|
|
|
|
inherit (flake.config.aesthetics.themes)
|
2025-01-28 20:45:11 -06:00
|
|
|
currentThemes
|
2025-01-18 03:50:54 -06:00
|
|
|
palettes
|
2025-01-28 20:45:11 -06:00
|
|
|
fonts
|
2025-01-08 19:06:14 -06:00
|
|
|
;
|
2025-01-18 03:50:54 -06:00
|
|
|
|
2025-01-28 20:45:11 -06:00
|
|
|
el = palettes.${currentThemes.theme0}.colours;
|
2025-01-18 03:50:54 -06:00
|
|
|
|
2025-01-08 19:06:14 -06:00
|
|
|
makeColor = c: "#" + c;
|
2025-01-18 03:50:54 -06:00
|
|
|
in
|
|
|
|
{
|
2025-01-08 19:06:14 -06:00
|
|
|
global = {
|
2025-01-28 20:45:11 -06:00
|
|
|
font = "${fonts.names.name0} ${builtins.toString fonts.sizes.popups.size0}";
|
2025-01-18 03:50:54 -06:00
|
|
|
background = makeColor el.base01;
|
|
|
|
frame_color = makeColor el.base0E;
|
|
|
|
foreground = makeColor el.base05;
|
2025-01-08 19:06:14 -06:00
|
|
|
corner_radius = 10;
|
|
|
|
fade_in_duration = 1000;
|
|
|
|
frame = 10000;
|
|
|
|
frame_width = 1;
|
|
|
|
icon_corner_radius = 10;
|
|
|
|
monitor = 1;
|
|
|
|
offset = "20x20";
|
|
|
|
origin = "bottom-right";
|
|
|
|
progress_bar_corner_radius = 4;
|
|
|
|
timeout = 10;
|
|
|
|
transparecncy = true;
|
|
|
|
};
|
|
|
|
|
|
|
|
urgency_critical = {
|
2025-01-18 03:50:54 -06:00
|
|
|
frame_color = makeColor el.base09;
|
2025-01-08 19:06:14 -06:00
|
|
|
timeout = 0;
|
|
|
|
};
|
|
|
|
}
|