From c58e1d4e5c9c80588173ddc69844592f00342c9c Mon Sep 17 00:00:00 2001 From: Kevin Alberts Date: Fri, 5 Sep 2025 11:26:08 +0200 Subject: [PATCH] Fix screen resolution detection in-office --- kuro/config/ppc1006083.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kuro/config/ppc1006083.py b/kuro/config/ppc1006083.py index ceb9eae..8797168 100644 --- a/kuro/config/ppc1006083.py +++ b/kuro/config/ppc1006083.py @@ -106,7 +106,7 @@ class Config(GeneralConfig): {'x': 1920, 'y': 0, 'width': 1080, 'height': qtile_height}, ] # Dual 1680x1050 - elif qtile_width == 3360 and qtile_height == 1050: + elif qtile_width == 3360 and (qtile_height > 1040 and qtile_height <= 1050): cls.screen_kwargs = [ {'x': 0, 'y': 0, 'width': 1680, 'height': 1050}, {'x': 1680, 'y': 0, 'width': 1680, 'height': 1050},