Andrew Kennedy

Disable Dashboard in OSX 10.9 Mavericks

September 24, 2013

In 10.9, Apple added this checkbox to “Mission Control” in “System Preferences”:

I’ve wanted that feature for a hella long time.

In the past, you threw this into terminal to remove the Dashboard:

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

However this code doesn’t work in 10.9. Not knowing about the checkbox in “Mission Control” in 10.9, I ran the above code and noticed it did nothing. So I googled around and finally discovered the checkbox … which also didn’t do anything. Why would Apple make something that doesn’t work? More googling led to nothing. Then I had an idea. Maybe setting the mcx-disabled property of the dashboard to true disabled the checkbox’s control over the dashboard. So I reset it by setting mcx-disabled back to NO:

1
2
defaults write com.apple.dashboard mcx-disabled -boolean NO
killall Dock

Bam, the checkbox works! Goodbye dashboard.

Spot a typo? The source of this blog is available on GitHub. Pull requests and issues are welcome. You can also check out this post's revision history.