From 7a7987c7828050ef9a8ca6af07ca98485053776b Mon Sep 17 00:00:00 2001 From: Airradda <3744856+Airradda@users.noreply.github.com> Date: Sat, 28 Oct 2023 13:27:10 +0000 Subject: [PATCH] Fix group variable changes in Hyprland module (#169) This resolve the issues introduced in hyprwm/Hyprland#3522, which moved group variables out of general and into their own section. --- modules/hyprland/hm.nix | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/modules/hyprland/hm.nix b/modules/hyprland/hm.nix index b8a2084b1..1b498813d 100644 --- a/modules/hyprland/hm.nix +++ b/modules/hyprland/hm.nix @@ -11,9 +11,11 @@ let general = { "col.active_border" = rgb base0A; "col.inactive_border" = rgb base03; - "col.group_border" = rgb base0D; - "col.group_border_active" = rgb base06; - "col.group_border_locked_active" = rgb base06; + }; + group = { + "col.border_inactive" = rgb base0D; + "col.border_active" = rgb base06; + "col.border_locked_active" = rgb base06; }; misc.background_color = rgb base00; };