MacOS – disable Dashboard in Mountain Lion

dashboardmacospreferencesterminal

I'm wondering if there's a way to disable the dashboard in Mountain Lion. I never use it and I think it's consuming processor and memory powers.

Best Answer

With macOS 10.10 Yosemite or later, you can go to
System PreferencesMission Control and switch Dashboard to Off.

                                                      

On any OS with Dashboard, you can disable it through Terminal with the following command:

defaults write com.apple.dashboard mcx-disabled -boolean YES && killall Dock

It can be re-enabled with:

defaults delete com.apple.dashboard mcx-disabled && killall Dock