how move the path bar to the top in finder (is possible) ?

code4power

New member
AMD OS X Member
Joined
May 7, 2020
Messages
16
I found an older command, it doesn't work in Mojave.
(on)
defaults write com.apple.finder _FXShowPosixPathInTitle -bool YES; killall Finde
(off)
defaults write com.apple.finder _FXShowPosixPathInTitle -bool NO; killall Finder

exemple: as I would like :D :)
 

Attachments

  • as I would like - move the path bar to the top in finder.jpg
    as I would like - move the path bar to the top in finder.jpg
    94.1 KB · Views: 3
Last edited:

Shaneee

The AMD Guy
Staff member
Administrator
Joined
Mar 13, 2020
Messages
2,142
This will display the path as the Finder Title rather than move the path bar,

Code:
#Enable
defaults write com.apple.finder _FXShowPosixPathInTitle 1 && killall Finder

# Disable
defaults write com.apple.finder _FXShowPosixPathInTitle 0 && killall Finder
 
Top Bottom
  AdBlock Detected
Sure, ad-blocking software does a great job at blocking ads, but it also blocks some useful and important features of our website. For the best possible site experience please take a moment to disable your AdBlocker.