MacOS – Changing The Dock’s Appearance From 3D to 2D

dockmacosterminal

Sometimes the glossy finish to the Dock 3D's appearance annoys me, and I want something less bedazzling on the eyes.

Is there a simple terminal command I can use to convert it from a 3D glossy to a 2D plain dock in appearance ?

Best Answer

Yes, you can, but only in OS X 10.8 or earlier.

You can use the the following Terminal command:

defaults write com.apple.dock no-glass -boolean YES && killall -HUP Dock

To go back to 3D, run the following command (replace YES with NO):

defaults write com.apple.dock no-glass -boolean NO && killall -HUP Dock