Disabling the Mac OSX Dashboard
1 min read read
I never liked the idea of widgets in Windows and I donât intend to start liking them when Iâm using OSX. In OSX widgets are kept separate from the desktop and only appear when you press fn+f12, to me this defeats the purpose of having widgets in the first place.
So I hear you ask, why not disable it? Thatâs exact what I did and here is how. To disable the dashboard, open up your terminal and type:
defaults write com.apple.dashboard mcx-disabled -boolean YES
Then type the command below to push the change into effect.
killall Dock
To get back the dashboard just change YES to NO.
defaults write com.apple.dashboard mcx-disabled -boolean NO