mirror of
https://github.com/yannbertrand/macos-defaults
synced 2024-11-14 23:57:07 +00:00
1.2 KiB
1.2 KiB
title | description | head | ||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
Path bar | Finder | Show path bar in the bottom of the Finder windows |
|
Path bar
Show path bar in the bottom of the Finder windows
- Tested on macOS:
- Sonoma
- Ventura
- Monterey
- Big Sur
- Parameter type: bool
Set to true
Show path bar
defaults write com.apple.finder "ShowPathbar" -bool "true" && killall Finder
Set to false
(default value)
Hide path bar
defaults write com.apple.finder "ShowPathbar" -bool "false" && killall Finder
Read current value
defaults read com.apple.finder "ShowPathbar"
Reset to default value
defaults delete com.apple.finder "ShowPathbar" && killall Finder