Toggle menu bar hiding to false in macOS config

This change modifies the NSGlobalDomain settings to make the menu bar always visible by setting `_HIHideMenuBar` to false. This ensures a consistent user interface by keeping the menu bar accessible at all times.
This commit is contained in:
Harald Hoyer 2024-11-25 18:26:49 +01:00
parent 4131d726d5
commit 7436a7b5e7

View file

@ -47,7 +47,7 @@ in
}; };
NSGlobalDomain = { NSGlobalDomain = {
_HIHideMenuBar = true; _HIHideMenuBar = false;
AppleShowScrollBars = "Always"; AppleShowScrollBars = "Always";
}; };
}; };