From 017e2bc812cba0c2763f58d9fa2977a0124a3086 Mon Sep 17 00:00:00 2001 From: LavaDesu Date: Mon, 17 Mar 2025 00:41:58 +1100 Subject: [PATCH] user/{dunst,eww-wayland}: use crust instead of surface for cat. colours --- modules/user/dunst.nix | 6 +++--- modules/user/eww-wayland.nix | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/modules/user/dunst.nix b/modules/user/dunst.nix index b8cfb07..2ae1404 100644 --- a/modules/user/dunst.nix +++ b/modules/user/dunst.nix @@ -49,19 +49,19 @@ in { }; urgency_low = { - background = config.catppuccin.hexcolors.surface1; + background = config.catppuccin.hexcolors.crust; foreground = config.catppuccin.hexcolors.text; timeout = 3; }; urgency_normal = { - background = config.catppuccin.hexcolors.surface1; + background = config.catppuccin.hexcolors.crust; foreground = config.catppuccin.hexcolors.text; timeout = 5; }; urgency_critical = { - background = config.catppuccin.hexcolors.surface1; + background = config.catppuccin.hexcolors.crust; foreground = config.catppuccin.hexcolors.text; frame_color = config.catppuccin.hexcolors.red; timeout = 0; diff --git a/modules/user/eww-wayland.nix b/modules/user/eww-wayland.nix index 7060037..e82f5ac 100644 --- a/modules/user/eww-wayland.nix +++ b/modules/user/eww-wayland.nix @@ -7,7 +7,7 @@ let installPhase = '' cp -r ${../../res/eww-wayland} $out substituteInPlace $out/eww.scss \ - --replace-warn "EWW_BACKGROUND" "${config.catppuccin.hexcolors.surface1}" \ + --replace-warn "EWW_BACKGROUND" "${config.catppuccin.hexcolors.crust}" \ --replace-warn "EWW_TEXT" "${config.catppuccin.hexcolors.text}" \ --replace-warn "EWW_ACCENT" "${config.catppuccin.hexcolors.${config.catppuccin.accent}}" '';