From d578529f49021f31280429549f01ca0f68a64efc Mon Sep 17 00:00:00 2001 From: Airradda <3744856+Airradda@users.noreply.github.com> Date: Wed, 11 Oct 2023 14:40:28 +0000 Subject: [PATCH] Fix Group Variable Changes in Hyprland Module This resolve the issues introduce in Hyprland PR [#3522](https://github.com/hyprwm/Hyprland/pull/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; };