From 47736f594174b34bdea22e7a311eb1e01487ece8 Mon Sep 17 00:00:00 2001 From: Marty Oehme Date: Sat, 23 Aug 2025 12:36:28 +0200 Subject: [PATCH] kanshi: Add aliases to config --- desktop/.config/kanshi/config | 16 ++++++++++------ 1 file changed, 10 insertions(+), 6 deletions(-) diff --git a/desktop/.config/kanshi/config b/desktop/.config/kanshi/config index 1f5765e..347040d 100644 --- a/desktop/.config/kanshi/config +++ b/desktop/.config/kanshi/config @@ -1,20 +1,24 @@ + +output "LG Electronics W2442 0x000574E1" alias $left-screen +output "LG Electronics W2442 0x000574FD" alias $right-screen + profile docked { - output "LG Electronics W2442 0x000574FD" position 1920,0 - output "LG Electronics W2442 0x000574E1" position 0,0 + output $left-screen position 0,0 transform 0 + output $right-screen position 1920,0 transform 0 output eDP-1 disable exec notify-send "💻 Display changed" "Applying docked LG profile" } profile dockedall { - output "LG Electronics W2442 0x000574FD" position 1920,0 - output "LG Electronics W2442 0x000574E1" position 0,0 + output $left-screen position 0,0 + output $right-screen position 1920,0 output eDP-1 enable position 960,1080 exec notify-send "💻 Display changed" "Applying docked 3-screen profile" } profile portableforce { - output "LG Electronics W2442 0x000574FD" disable - output "LG Electronics W2442 0x000574E1" disable + output $left-screen disable + output $right-screen disable output eDP-1 enable position 0,0 exec notify-send "💻 Display changed" "Applying portable profile" }