From 6afd762abfb7e40ea8e5f50e86c68b83e3e10a70 Mon Sep 17 00:00:00 2001 From: rope Date: Fri, 24 Jul 2026 16:19:50 +0100 Subject: [PATCH] hyprland: disable blur on macbook (haswell igpu frame budget) --- settings/hyprland.nix | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/settings/hyprland.nix b/settings/hyprland.nix index 399d8e5..709e7c9 100644 --- a/settings/hyprland.nix +++ b/settings/hyprland.nix @@ -117,7 +117,9 @@ in decoration = { rounding = 8; blur = { - enabled = true; + # Haswell iGPU can't afford 3-pass blur every frame — the + # blown frame budget shows up as pointer/input latency. + enabled = !isMacbook; size = 1; passes = 3; };