Advertisement
Guest User

Untitled

a guest
May 25th, 2019
112
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.54 KB | None | 0 0
  1. # Show full directory path in Mac OS X Finder window
  2.  
  3. Follow the steps below to display the full file path within Finder window title bars as you navigate your mac.
  4.  
  5. ```bash
  6.  
  7. defaults write com.apple.finder _FXShowPosixPathInTitle -bool YES
  8.  
  9. ```
  10.  
  11. Now kill the Finder to see the change take effect.
  12.  
  13. ```bash
  14.  
  15. killall finder
  16.  
  17. ```
  18.  
  19. And if for some reason you need to revert this change, that's done by simply switching the `YES` to a `NO` in the cmd above.
  20.  
  21. ```bash
  22.  
  23. defaults write com.apple.finder _FXShowPosixPathInTitle -bool NO
  24. killall finder
  25.  
  26. ```
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement