MacOS – How to always show menubar with fullscreen apps

command linedefaultsmacos

Does anyone know if it is possible to keep the menubar in Mac OS Lion visible for fullscreen apps instead of hidden until hovered over with a mouse or trackpad?

I imagine there's some Terminal command I can enter to adjust this preference.

Best Answer

You can adjust this on a per-app basis by editing the plist. My memory is rusty but here are instructions, if I remember correctly.

  1. Show package contents for the app you want
  2. Edit the file Contents/info.plist
  3. Search for "LSUIPresentationMode" (you may want to use a plist editor). It will look like this if you use a regular text editor:

    <key>LSUIPresentationMode</key>
    <integer>4</integer>
    

    If the property does not exist, then you can create it - it must be inserted in the correct alphabetical order.

  4. Change the value of the integer accordingly:

    • LSUI PresentationMode 0 - Does not hide Dock or Menu Bar.
    • LSUIPresentationMode 1 - Hides Dock. Dock will appear if mouse moved to where it is located. Menu Bar will remain.
    • LSUIPresentationMode 2 - Removes Dock. Menu Bar will remain.
    • LSUIPresentationMode 3 - Removes Menu Bar and Dock.
    • LSUIPresentationMode 4 - Hides Menu Bar and Dock. Menu Bar or Dock will appear if mouse moved to where Menu Bar or Dock is located.

For more information on LSUIPresentationMode usage, see the developer documentation:

http://developer.apple.com/library/mac/#documentation/General/Reference/InfoPlistKeyReference/Articles/LaunchServicesKeys.html#//apple_ref/doc/uid/TP40009250-113616-TPXREF134