From 92de9cc76b2279090a870a06578ab4deb4709c44 Mon Sep 17 00:00:00 2001 From: ediblerope Date: Mon, 11 May 2026 11:49:55 +0100 Subject: [PATCH] hyprland: adapt to 0.55.0 breaking changes MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 0.55.0 keeps traditional config syntax — Lua is added, not required — but two of our settings broke: - misc:vfr moved to debug:vfr - dwindle:pseudotile removed (it was a no-op anyway) Co-Authored-By: Claude Opus 4.7 --- settings/hyprland.nix | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/settings/hyprland.nix b/settings/hyprland.nix index 5356749..8fb21ae 100644 --- a/settings/hyprland.nix +++ b/settings/hyprland.nix @@ -147,7 +147,6 @@ dwindle = { preserve_split = true; - pseudotile = true; # New windows split the focused container 50/50 — your usual # 2-way layout falls out of dwindle's defaults. }; @@ -160,6 +159,10 @@ # below; without that, focus jumps drag the cursor with them. focus_on_activate = false; vrr = 2; # always on — should engage at the 180 Hz EDID mode + }; + + # vfr moved from misc: to debug: in Hyprland 0.55.0 + debug = { vfr = false; # keep compositor ticking, don't idle between frames };