From 59be3fbd673d64c12a1a831081b40f4ae888c939 Mon Sep 17 00:00:00 2001 From: Natasha Moongrave Date: Tue, 31 Mar 2026 12:31:00 +0200 Subject: Moved the original i3 config to /home/rices/original to be in line with the other refactored configs --- home/rices/original/dunst.nix | 41 +++++++++++++++++++++++++++++++++++++++++ 1 file changed, 41 insertions(+) create mode 100644 home/rices/original/dunst.nix (limited to 'home/rices/original/dunst.nix') diff --git a/home/rices/original/dunst.nix b/home/rices/original/dunst.nix new file mode 100644 index 0000000..9978d38 --- /dev/null +++ b/home/rices/original/dunst.nix @@ -0,0 +1,41 @@ +{ config, pkgs, lib, ... }: + +let + vars = import ./variables.nix; +in { + services.dunst = { + enable = true; + + settings = { + global = { + width = "(200,300)"; + height = "(0,150)"; + offset = "(30,50)"; + origin = "bottom-right"; + transparency = 10; + frame_width = 0; + font = "Fira Code 10"; + }; + + urgency_low = { + background = vars.colors.background; + foreground = vars.colors.foreground; + timeout = 8; + }; + + urgency_normal = { + background = vars.colors.background; + foreground = vars.colors.foreground; + frame-size = "0"; + timeout = 10; + }; + + urgency_critical = { + background = vars.colors.background; + foreground = vars.colors.foreground; + frame-size = "5"; + frame-color = vars.colors.alert; + }; + }; + }; +} -- cgit v1.2.3