From 33d904ebb8ccfaa918f98572484fe270ae3b6d0d Mon Sep 17 00:00:00 2001 From: AramJonghu Date: Sun, 23 Aug 2026 14:54:47 +0200 Subject: [PATCH] fix: touchscreen now transforms as well --- modules/binds.lua | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/modules/binds.lua b/modules/binds.lua index 4febbee..f405737 100644 --- a/modules/binds.lua +++ b/modules/binds.lua @@ -66,13 +66,15 @@ hl.bind("SUPER + T", function() if m == nil then return end + local t = m.transform == 0 and 1 or 0 hl.monitor({ output = "eDP-1", - mode = "1800x2880@120", + mode = "2880x1800@120", position = "0x0", scale = 1.125, bitdepth = 10, cm = "srgb", - transform = m.transform == 0 and 1 or 0, + transform = t, }) + hl.config({ input = { touchdevice = { transform = t }, tablet = { transform = t } } }) end)