From 29cc1ad2ced1f0e7ff637e080e1ff69bf98780ac Mon Sep 17 00:00:00 2001 From: Noa Aarts Date: Mon, 11 Nov 2024 01:01:25 +0100 Subject: [PATCH] add example dunst settings, TODO: make nice dunst notifs --- modules/dunst.nix | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) diff --git a/modules/dunst.nix b/modules/dunst.nix index bd3a105..e0911fe 100644 --- a/modules/dunst.nix +++ b/modules/dunst.nix @@ -15,6 +15,23 @@ in config = lib.mkIf cfg.enable { services.dunst = { enable = true; + # settings = { + # global = { + # width = 300; + # height = 300; + # offset = "30x50"; + # origin = "top-right"; + # transparency = 10; + # frame_color = "#293929"; + # font = "Droid Sans 9"; + # }; + # + # urgency_normal = { + # background = "#37474f"; + # foreground = "#293929"; + # timeout = 10; + # }; + # }; }; }; }