macos-defaults/docs/finder/nstableviewdefaultsizemode.md
2024-10-04 11:22:10 +02:00

1.5 KiB

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

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