From 03011cb6f13ac11f9ffff1e291ed9fc108c3c0ce Mon Sep 17 00:00:00 2001 From: Almarhoon Ibraheem Date: Mon, 17 Jun 2024 17:01:48 +0300 Subject: [PATCH] fix sway output position --- behavior.scm | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/behavior.scm b/behavior.scm index 5950fbd..9964a4a 100755 --- a/behavior.scm +++ b/behavior.scm @@ -1,8 +1,8 @@ (use-modules (swayipc dispatcher)) -(sway-output "HDMI-A-2" "resolution 1920x1080 position 0,0") -(sway-output "DP-1" "resolution 1920x1080 position 0,0") -(sway-output "DP-2" "resolution 1920x1080 position 0,0") +(sway-output "HDMI-A-2" "pos 0 0 res 1920x1080") +(sway-output "DP-1" "pos 1920 0 res 1920x1080") +(sway-output "DP-2" "pos 3840 0 res 1920x1080") (sway-output "*" "bg ~/.wallpapers/fixed/flat-20.png fill")