Fix screen resolution detection in-office

This commit is contained in:
Kevin Alberts 2025-09-05 11:26:08 +02:00
parent 8f5e1e282a
commit c58e1d4e5c

View file

@ -106,7 +106,7 @@ class Config(GeneralConfig):
{'x': 1920, 'y': 0, 'width': 1080, 'height': qtile_height}, {'x': 1920, 'y': 0, 'width': 1080, 'height': qtile_height},
] ]
# Dual 1680x1050 # 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 = [ cls.screen_kwargs = [
{'x': 0, 'y': 0, 'width': 1680, 'height': 1050}, {'x': 0, 'y': 0, 'width': 1680, 'height': 1050},
{'x': 1680, 'y': 0, 'width': 1680, 'height': 1050}, {'x': 1680, 'y': 0, 'width': 1680, 'height': 1050},