# Adjust toolbar title rollover delay

Choose the delay of the auto-hidden document-proxy icon.

  • Tested on macOS:
    • Monterey
    • Big Sur
  • Parameter type: float

# Set to 0.5 (default value)

By default, the toolbar title hovering delay takes 0.5 seconds

defaults write NSGlobalDomain "NSToolbarTitleViewRolloverDelay" -float "0.5" && killall Finder

# Set to 0

Remove the delay when hovering the toolbar title

defaults write NSGlobalDomain "NSToolbarTitleViewRolloverDelay" -float "0" && killall Finder

# Set to 1

Increase the delay when hovering the toolbar title

defaults write NSGlobalDomain "NSToolbarTitleViewRolloverDelay" -float "1" && killall Finder

# Read current value

defaults read NSGlobalDomain "NSToolbarTitleViewRolloverDelay"

# Reset to default value

defaults delete NSGlobalDomain "NSToolbarTitleViewRolloverDelay" && killall Finder