macos-defaults/docs/finder/nstableviewdefaultsizemode.md
2023-10-13 17:14:44 +02:00

1.5 KiB

title description head
Set sidebar icon size | Finder Choose the size of Finder sidebar icons
meta
property content
og:title macOS defaults > Finder > Set sidebar icon size
meta
property content
og:description Choose the size of Finder sidebar icons

Set sidebar icon size

Choose the size of Finder sidebar icons

  • Tested on macOS:
    • Sonoma
    • Ventura
    • Monterey
    • Big Sur
    • Catalina
  • Parameter type: int

Set to 1

Small

defaults write NSGlobalDomain "NSTableViewDefaultSizeMode" -int "1" && killall Finder

Example output with value set to 1

Set to 2 (default value)

Medium

defaults write NSGlobalDomain "NSTableViewDefaultSizeMode" -int "2" && killall Finder

Example output with value set to 2

Set to 3

Large

defaults write NSGlobalDomain "NSTableViewDefaultSizeMode" -int "3" && killall Finder

Example output with value set to 3

Read current value

defaults read NSGlobalDomain "NSTableViewDefaultSizeMode"

Reset to default value

defaults delete NSGlobalDomain "NSTableViewDefaultSizeMode" && killall Finder