mirror of
https://gitlab.com/upRootNutrition/dotfiles.git
synced 2025-06-17 02:25:12 -05:00
feat: expanded all lists
This commit is contained in:
parent
59cc199722
commit
bb0b55b011
144 changed files with 1798 additions and 507 deletions
31
home/modules/dunst/config/settings.nix
Executable file
31
home/modules/dunst/config/settings.nix
Executable file
|
@ -0,0 +1,31 @@
|
|||
{flake, ...}: let
|
||||
inherit
|
||||
(flake.config.aesthetics.themes.theme)
|
||||
colors
|
||||
font
|
||||
;
|
||||
makeColor = c: "#" + c;
|
||||
in {
|
||||
global = {
|
||||
font = "${font} 10";
|
||||
background = makeColor colors.base;
|
||||
corner_radius = 10;
|
||||
fade_in_duration = 1000;
|
||||
foreground = makeColor colors.text;
|
||||
frame = 10000;
|
||||
frame_color = makeColor colors.mauve;
|
||||
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 = {
|
||||
frame_color = makeColor colors.peach;
|
||||
timeout = 0;
|
||||
};
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue