mirror of
https://github.com/dortania/OpenCore-Legacy-Patcher.git
synced 2026-04-18 05:34:42 +10:00
Fix formatting
This commit is contained in:
@@ -632,7 +632,7 @@ handle acceleration tasks.
|
||||
print("")
|
||||
print(self.constants.computer)
|
||||
input("\nPress [ENTER] to exit: ")
|
||||
|
||||
|
||||
def applealc_support(self):
|
||||
utilities.cls()
|
||||
utilities.header(["Set AppleALC usage"])
|
||||
@@ -656,7 +656,7 @@ If AppleALC is detected, the Patcher will not install AppleHDA.
|
||||
print("Returning to previous menu")
|
||||
else:
|
||||
self.applealc_support()
|
||||
|
||||
|
||||
def dGPU_switch_support(self):
|
||||
utilities.cls()
|
||||
utilities.header(["Set Windows GMUX support"])
|
||||
@@ -677,7 +677,7 @@ for Windows may prefer to only work with the dGPU and eGPU active.
|
||||
print("Returning to previous menu")
|
||||
else:
|
||||
self.dGPU_switch_support()
|
||||
|
||||
|
||||
def set_surplus(self):
|
||||
utilities.cls()
|
||||
utilities.header(["Override SurPlus MaxKernel"])
|
||||
@@ -703,7 +703,7 @@ the event there's issues.
|
||||
print("Returning to previous menu")
|
||||
else:
|
||||
self.set_surplus()
|
||||
|
||||
|
||||
def credits(self):
|
||||
utilities.TUIOnlyPrint(
|
||||
["Credits"],
|
||||
@@ -749,7 +749,7 @@ system_profiler SPHardwareDataType | grep 'Model Identifier'
|
||||
input("\nPress [ENTER] to continue")
|
||||
else:
|
||||
defaults.generate_defaults.probe(self.constants.custom_model, False, self.constants)
|
||||
|
||||
|
||||
def PatchVolume(self):
|
||||
utilities.cls()
|
||||
utilities.header(["Patching System Volume"])
|
||||
@@ -771,7 +771,7 @@ system_profiler SPHardwareDataType | grep 'Model Identifier'
|
||||
sys_patch.PatchSysVolume(self.constants.custom_model or self.constants.computer.real_model, self.constants).start_unpatch()
|
||||
else:
|
||||
print("Returning to main menu")
|
||||
|
||||
|
||||
def advanced_patcher_settings(self):
|
||||
response = None
|
||||
while not (response and response == -1):
|
||||
@@ -791,7 +791,6 @@ system_profiler SPHardwareDataType | grep 'Model Identifier'
|
||||
menu.add_menu_option(option[0], function=option[1])
|
||||
|
||||
response = menu.start()
|
||||
|
||||
|
||||
def patcher_settings(self):
|
||||
response = None
|
||||
@@ -831,9 +830,7 @@ system_profiler SPHardwareDataType | grep 'Model Identifier'
|
||||
[f"Enable OpenCore DEBUG:\tCurrently {self.constants.opencore_debug}", MenuOptions(self.constants.custom_model or self.constants.computer.real_model, self.constants).change_oc],
|
||||
[f"Enable Kext DEBUG:\t\tCurrently {self.constants.kext_debug}", MenuOptions(self.constants.custom_model or self.constants.computer.real_model, self.constants).change_kext],
|
||||
] + (
|
||||
[
|
||||
[f"Set SurPlus Settings:\tCurrently {self.constants.force_surplus}", MenuOptions(self.constants.custom_model or self.constants.computer.real_model, self.constants).set_surplus]
|
||||
]
|
||||
[[f"Set SurPlus Settings:\tCurrently {self.constants.force_surplus}", MenuOptions(self.constants.custom_model or self.constants.computer.real_model, self.constants).set_surplus]]
|
||||
if (smbios_data.smbios_dictionary[self.constants.custom_model or self.constants.computer.real_model]["CPU Generation"] <= cpu_data.cpu_data.sandy_bridge)
|
||||
else []
|
||||
)
|
||||
@@ -909,13 +906,19 @@ system_profiler SPHardwareDataType | grep 'Model Identifier'
|
||||
[f"Set ShowPicker Mode:\tCurrently {self.constants.showpicker}", MenuOptions(self.constants.custom_model or self.constants.computer.real_model, self.constants).change_showpicker],
|
||||
[f"Set Wake on WLAN:\t\tCurrently {self.constants.enable_wake_on_wlan}", MenuOptions(self.constants.custom_model or self.constants.computer.real_model, self.constants).allow_wowl],
|
||||
[f"Set Ivy iMac iGPU:\t\tCurrently {self.constants.allow_ivy_igpu}", MenuOptions(self.constants.custom_model or self.constants.computer.real_model, self.constants).allow_ivy],
|
||||
[f"Set TeraScale 2 Accel:\tCurrently {self.constants.allow_ts2_accel}", MenuOptions(self.constants.custom_model or self.constants.computer.real_model, self.constants).terascale_2_accel],
|
||||
[
|
||||
f"Set TeraScale 2 Accel:\tCurrently {self.constants.allow_ts2_accel}",
|
||||
MenuOptions(self.constants.custom_model or self.constants.computer.real_model, self.constants).terascale_2_accel,
|
||||
],
|
||||
[
|
||||
f"Disable Thunderbolt:\tCurrently {self.constants.disable_tb}",
|
||||
MenuOptions(self.constants.custom_model or self.constants.computer.real_model, self.constants).disable_tb,
|
||||
],
|
||||
[f"Set AppleALC Usage:\t\tCurrently {self.constants.set_alc_usage}", MenuOptions(self.constants.custom_model or self.constants.computer.real_model, self.constants).applealc_support],
|
||||
[f"Set Windows GMUX support:\tCurrently {self.constants.dGPU_switch}", MenuOptions(self.constants.custom_model or self.constants.computer.real_model, self.constants).dGPU_switch_support],
|
||||
[
|
||||
f"Set Windows GMUX support:\tCurrently {self.constants.dGPU_switch}",
|
||||
MenuOptions(self.constants.custom_model or self.constants.computer.real_model, self.constants).dGPU_switch_support,
|
||||
],
|
||||
]
|
||||
|
||||
for option in options:
|
||||
@@ -943,9 +946,6 @@ system_profiler SPHardwareDataType | grep 'Model Identifier'
|
||||
|
||||
response = menu.start()
|
||||
|
||||
|
||||
|
||||
|
||||
big_sur = """Patches Root volume to fix misc issues such as:
|
||||
|
||||
- Non-Metal Graphics Acceleration
|
||||
@@ -1012,4 +1012,4 @@ install that requires root patches such as macOS Big Sur or Monterey
|
||||
Supported Options:
|
||||
|
||||
B. Exit
|
||||
"""
|
||||
"""
|
||||
|
||||
Reference in New Issue
Block a user