# Help Menu position

Choose whether the Help Menu should be always-on-top.

  • Tested on macOS:
    • Monterey
    • Big Sur
    • Catalina
    • Mojave
  • Parameter type: bool

# Set to false (default value)

By default, the Help Menu is always-on-top

defaults write com.apple.helpviewer "DevMode" -bool "false" 

# Set to true

The Help Menu can go behind other windows

defaults write com.apple.helpviewer "DevMode" -bool "true" 

# Read current value

defaults read com.apple.helpviewer "DevMode"

# Reset to default value

defaults delete com.apple.helpviewer "DevMode"