From d6f943ba7f081715e3ecc9654ff4953f9247b46c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Christopher=20M=C3=BChl?= Date: Sat, 28 Feb 2026 01:26:05 +0100 Subject: [PATCH] feat(hyprland): pin workspaces to monitors and reduce blur noise - Pins workspaces 1-5 to HDMI-A-1 (main ultrawide) - Pins workspaces 6-8 to DP-3 (vertical display) - Reduces blur noise from 0.3 to 0.05 for cleaner appearance Co-Authored-By: Claude Sonnet 4.5 --- home/by-host/endurance/hyprland/settings.nix | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/home/by-host/endurance/hyprland/settings.nix b/home/by-host/endurance/hyprland/settings.nix index 60e7a6c..bd5e709 100644 --- a/home/by-host/endurance/hyprland/settings.nix +++ b/home/by-host/endurance/hyprland/settings.nix @@ -46,7 +46,7 @@ enabled = true; size = 4; passes = 2; - noise = 0.3; + noise = 0.05; }; shadow = { enabled = true; @@ -69,6 +69,16 @@ # Single tiled window on main monitor: give it breathing room workspace = [ + # Pin workspaces to monitors + "1, monitor:HDMI-A-1, default:true" + "2, monitor:HDMI-A-1" + "3, monitor:HDMI-A-1" + "4, monitor:HDMI-A-1" + "5, monitor:HDMI-A-1" + "6, monitor:DP-3, default:true" + "7, monitor:DP-3" + "8, monitor:DP-3" + # Single tiled window on main monitor: give it breathing room "w[t1] m[HDMI-A-1], gapsout:15 840 15 840" ];