# Path bar

Show path bar in the bottom of the Finder windows

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

# Set to true

Show path bar

defaults write com.apple.finder "ShowPathbar" -bool "true" && killall Finder

Example output with value set to true

# Set to false (default value)

Hide path bar

defaults write com.apple.finder "ShowPathbar" -bool "false" && killall Finder

Example output with value set to false

# Read current value

defaults read com.apple.finder "ShowPathbar"

# Reset to default value

defaults delete com.apple.finder "ShowPathbar" && killall Finder