mirror of
https://github.com/dortania/OpenCore-Legacy-Patcher.git
synced 2026-04-22 19:10:15 +10:00
defaults.py Don’t set new menubar as default
This commit is contained in:
@@ -5,7 +5,8 @@
|
|||||||
- Resolves Safari 16.4 rendering issue
|
- Resolves Safari 16.4 rendering issue
|
||||||
- Resolves left side menubar selections
|
- Resolves left side menubar selections
|
||||||
- Implements automatic menubar text color
|
- Implements automatic menubar text color
|
||||||
- New Menubar implementation can be disabled via `defaults write -g Amy.MenuBar2Beta -bool false`
|
- New experimental Menubar implementation can be enabled via `defaults write -g Amy.MenuBar2Beta -bool true`
|
||||||
|
- Note: If you experience issues with the new implementation, you can revert back to the old implementation by running `defaults delete -g Amy.MenuBar2Beta`
|
||||||
- Implement full IOUSBHostFamily downgrade for UHCI/OHCI
|
- Implement full IOUSBHostFamily downgrade for UHCI/OHCI
|
||||||
- Resolves panics on certain iMac models
|
- Resolves panics on certain iMac models
|
||||||
- Resolve unused KDKs not being properly cleaned up
|
- Resolve unused KDKs not being properly cleaned up
|
||||||
|
|||||||
@@ -303,7 +303,7 @@ class GenerateDefaults:
|
|||||||
# Only disable AMFI if we officially support Ventura
|
# Only disable AMFI if we officially support Ventura
|
||||||
self.constants.disable_amfi = True
|
self.constants.disable_amfi = True
|
||||||
|
|
||||||
for key in ["Moraea_BlurBeta", "Amy.MenuBar2Beta"]:
|
for key in ["Moraea_BlurBeta"]:
|
||||||
# Enable BetaBlur if user hasn't disabled it
|
# Enable BetaBlur if user hasn't disabled it
|
||||||
is_key_enabled = subprocess.run(["defaults", "read", "-g", key], stdout=subprocess.PIPE).stdout.decode("utf-8").strip()
|
is_key_enabled = subprocess.run(["defaults", "read", "-g", key], stdout=subprocess.PIPE).stdout.decode("utf-8").strip()
|
||||||
if is_key_enabled not in ["false", "0"]:
|
if is_key_enabled not in ["false", "0"]:
|
||||||
|
|||||||
Reference in New Issue
Block a user