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:
parent
4131d726d5
commit
7436a7b5e7
|
@ -47,7 +47,7 @@ in
|
||||||
};
|
};
|
||||||
|
|
||||||
NSGlobalDomain = {
|
NSGlobalDomain = {
|
||||||
_HIHideMenuBar = true;
|
_HIHideMenuBar = false;
|
||||||
AppleShowScrollBars = "Always";
|
AppleShowScrollBars = "Always";
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in a new issue