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 <noreply@anthropic.com>
This commit is contained in:
Christopher Mühl 2026-02-28 01:26:05 +01:00
parent 85debcbcd4
commit d6f943ba7f
No known key found for this signature in database
GPG key ID: 925AC7D69955293F

View file

@ -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"
];