diff --git a/kuro/config/ppc1006083.py b/kuro/config/ppc1006083.py index 06f171a..f3f6939 100644 --- a/kuro/config/ppc1006083.py +++ b/kuro/config/ppc1006083.py @@ -120,12 +120,15 @@ class Config(GeneralConfig): # Single 1920x1080 elif qtile_width == 1920 and (qtile_height > 1070 and qtile_height <= 1080): cls.screen_kwargs = [{'x': 0, 'y': 0, 'width': 1920, 'height': 1080}] + cls.fake_screen_count = 1 # Single 1680x1050 elif qtile_width == 1680 and (qtile_height > 1040 and qtile_height <= 1050): cls.screen_kwargs = [{'x': 0, 'y': 0, 'width': 1680, 'height': 1050}] + cls.fake_screen_count = 1 # Else, configure for 1 large screen else: cls.screen_kwargs = [{'x': 0, 'y': 0, 'width': qtile_width, 'height': qtile_height}] + cls.fake_screen_count = 1 logger.warning(f"Kwargs: {cls.screen_kwargs}")