From 7629d5e10f8b6b1e596231557d8e2de13eb19f46 Mon Sep 17 00:00:00 2001 From: sefidel Date: Sun, 9 Jan 2022 00:42:54 +0900 Subject: home/base: add dunst --- home/modules/profiles/base/config/dunst.nix | 47 +++++++++++++++++++++++++++++ 1 file changed, 47 insertions(+) create mode 100644 home/modules/profiles/base/config/dunst.nix (limited to 'home/modules/profiles/base/config') diff --git a/home/modules/profiles/base/config/dunst.nix b/home/modules/profiles/base/config/dunst.nix new file mode 100644 index 0000000..6b018ab --- /dev/null +++ b/home/modules/profiles/base/config/dunst.nix @@ -0,0 +1,47 @@ +{ neotheme }: + +with neotheme.colors; +{ + global = { + padding = 8; + width = "330"; + height = "500"; + origin = "top-right"; + offset = "8x25"; + notification_limit = 5; + frame_width = 2; + vertical_alignment = "center"; + horizontal_padding = 8; + icon_position = "left"; + corner_radius = 10; + + markup = "full"; + word_wrap = true; + show_indicators = false; + format = "%s\\n\\n%b"; + font = "Dina 10"; + frame_color = "#${color3}"; + separator_color = "auto"; + max_icon_size = 80; + }; + + urgency_low = { + foreground = "#${foreground}"; + background = "#${background}"; + frame_color = "#${color4}"; + timeout = 4; + }; + + urgency_normal = { + foreground = "#${foreground}"; + background = "#${background}"; + frame_color = "#${color3}"; + timeout = 8; + }; + + urgency_critical = { + foreground = "#${foreground}"; + background = "#${background}"; + frame_color = "#${color1}"; + }; +} -- cgit 1.4.1