From 582ddf6d835d1c5b7ad66182415a82f1d8ee8ebb Mon Sep 17 00:00:00 2001 From: Thierry Pouplier Date: Fri, 18 Sep 2026 12:50:18 -0400 Subject: [PATCH] feat(hypr): pin dual-Dell EXTERNAL monitors by desc instead of $EXTERNAL_* Vertical and double-vertical setups now use stable Dell SE2725H desc identifiers (BML2X14 left, 34R2X14 right) rather than the env vars, so monitor attach is robust to dock/hotplug enumeration order. --- hypr/.config/hypr/hyprland.conf | 14 +++++--------- 1 file changed, 5 insertions(+), 9 deletions(-) diff --git a/hypr/.config/hypr/hyprland.conf b/hypr/.config/hypr/hyprland.conf index 51bbc19..69f6187 100755 --- a/hypr/.config/hypr/hyprland.conf +++ b/hypr/.config/hypr/hyprland.conf @@ -39,17 +39,13 @@ monitor=DP-3, 1920x1080, 1920x0, 1 # HDMI screen #monitor=DP-5,1920x1080,960x-1080,1 # Right screen #monitor=DP-7,1920x1080,960x-1080,1 # Right screen -# Vertical setup -# monitor=$EXTERNAL_L1, 1920x1080, 0x-1080, 1, transform, 0 # Left screen -# monitor=$EXTERNAL_L2, 1920x1080,0x-1080,1,transform,0 # Left screen -# monitor=$EXTERNAL_R1, 1920x1080, 1920x-1480, 1, transform, 1 # Right screen -# monitor=$EXTERNAL_R2, 1920x1080,1920x-1480,1,transform,1 # Right screen +# Vertical setup (left horizontal, right vertical) +# monitor=desc:Dell Inc. DELL SE2725H BML2X14, 1920x1080, 0x-1080, 1, transform, 0 # Left screen (horizontal) +# monitor=desc:Dell Inc. DELL SE2725H 34R2X14, 1920x1080, 1920x-1480, 1, transform, 1 # Right screen (vertical) # Double Vertical setup -monitor=$EXTERNAL_L1, 1920x1080, -1080x-1480, 1, transform, 3 # Left screen -monitor=$EXTERNAL_L2, 1920x1080, -1080x-1480, 1, transform, 3 # Left screen -monitor=$EXTERNAL_R1, 1920x1080, 1920x-1480, 1, transform, 1 # Right screen -monitor=$EXTERNAL_R2, 1920x1080, 1920x-1480, 1, transform, 1 # Right screen +monitor=desc:Dell Inc. DELL SE2725H BML2X14, 1920x1080, -1080x-1480, 1, transform, 3 # Left screen (vertical) +monitor=desc:Dell Inc. DELL SE2725H 34R2X14, 1920x1080, 1920x-1480, 1, transform, 1 # Right screen (vertical) ################### ### MY PROGRAMS ###