From 709ca3e5b9017542668020fc2498022cddca15fd Mon Sep 17 00:00:00 2001 From: Elisiei Yehorov Date: Wed, 28 Jan 2026 02:47:15 +0100 Subject: [PATCH] fix: dunst colors --- home/modules/user/dunst/default.nix | 18 +++++++++--------- home/modules/wm/sway/default.nix | 5 ++--- nixos/modules/programs.nix | 2 +- 3 files changed, 12 insertions(+), 13 deletions(-) diff --git a/home/modules/user/dunst/default.nix b/home/modules/user/dunst/default.nix index c7533dd..e544af4 100644 --- a/home/modules/user/dunst/default.nix +++ b/home/modules/user/dunst/default.nix @@ -15,23 +15,23 @@ }; urgency_low = { - background = "#1e2030"; - foreground = "#c8d3f5"; - frame_color = "#c8d3f5"; + background = "#000000"; + foreground = "#ffffff"; + frame_color = "#ffffff"; timeout = 3; }; urgency_normal = { - background = "#222436"; - foreground = "#c8d3f5"; - frame_color = "#c8d3f5"; + background = "#000000"; + foreground = "#ffffff"; + frame_color = "#ffffff"; timeout = 3; }; urgency_critical = { - background = "#2f334d"; - foreground = "#c53b53"; - frame_color = "#c53b53"; + background = "#000000"; + foreground = "#ffffff"; + frame_color = "#ffffff"; timeout = 5; }; }; diff --git a/home/modules/wm/sway/default.nix b/home/modules/wm/sway/default.nix index 19d6f22..b6b5498 100644 --- a/home/modules/wm/sway/default.nix +++ b/home/modules/wm/sway/default.nix @@ -60,19 +60,18 @@ in keybindings = lib.mkOptionDefault { # screenshots "${modifier}+Shift+Print" = "exec ~/bin/grimblast copy screen"; - "${modifier}+Print" = "exec ~/bin/grimblast copy area"; + "${modifier}+Print" = "exec ~/bin/grimblast copy area --freeze"; # launchers "${modifier}+space" = "exec ${menu}"; "${modifier}+w" = "exec ${wallpaperScript}/bin/random-wallpaper"; "${modifier}+t" = "exec ${terminal}"; - "${modifier}+z" = "exec librewolf"; + "${modifier}+z" = "exec firefox"; # window "${modifier}+q" = "kill"; "${modifier}+v" = "floating toggle"; "${modifier}+s" = "sticky toggle"; - "${modifier}+Shift+m" = "exit"; # focus move "${modifier}+Left" = "focus left"; diff --git a/nixos/modules/programs.nix b/nixos/modules/programs.nix index 6b90c3f..2c743d8 100644 --- a/nixos/modules/programs.nix +++ b/nixos/modules/programs.nix @@ -34,7 +34,7 @@ thunderbird # browser - librewolf + firefox # wayland wbg