diff --git a/CHANGELOG.md b/CHANGELOG.md index 739c0d7e9..b31ce8509 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -20,6 +20,7 @@ - Enforces ACPI_SMC_PlatformPlugin matching - Add NVMe Enhanced Power Management configuration - Disables NVMe adjustments on Skylake and newer Macs by default +- Resolve Catalyst Scrolling on non-Metal GPUs ## 0.4.1 - Add XHCI Boot Support to pre-UEFI 2.0 Macs diff --git a/resources/sys_patch.py b/resources/sys_patch.py index b049691a9..664f9dec6 100644 --- a/resources/sys_patch.py +++ b/resources/sys_patch.py @@ -212,9 +212,9 @@ class PatchSysVolume: print("- Failed to revert snapshot via bless, falling back on manual restoration") self.manual_root_patch_revert() else: - if (Path(self.mount_application_support) / Path("/Library/Application Support/SkylightPlugins")).exists(): + if (Path(self.mount_application_support) / Path("SkyLightPlugins")).exists(): print("- Found SkylightPlugins folder, removing") - utilities.process_status(utilities.elevated(["rm", "-rf", "/Library/Application Support/SkylightPlugins"], stdout=subprocess.PIPE, stderr=subprocess.STDOUT)) + utilities.process_status(utilities.elevated(["rm", "-rf", f"{self.mount_application_support}/SkyLightPlugins"], stdout=subprocess.PIPE, stderr=subprocess.STDOUT)) print("- Unpatching complete") print("\nPlease reboot the machine for patches to take effect") else: