Skip to content

Commit

Permalink
defaults.py Don’t set new menubar as default
Browse files Browse the repository at this point in the history
  • Loading branch information
khronokernel committed Apr 11, 2023
1 parent 2e4517a commit 7a07a16
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,8 @@
- Resolves Safari 16.4 rendering issue
- Resolves left side menubar selections
- 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
- Resolves panics on certain iMac models
- Resolve unused KDKs not being properly cleaned up
Expand Down
2 changes: 1 addition & 1 deletion resources/defaults.py
Original file line number Diff line number Diff line change
Expand Up @@ -303,7 +303,7 @@ def _gpu_probe(self) -> None:
# Only disable AMFI if we officially support Ventura
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
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"]:
Expand Down

0 comments on commit 7a07a16

Please sign in to comment.