On the Mac you may have noticed the Dashboard, it is the desktop on very left. It allows you to view stocks, time zones etc and can be very useful. However, if you are like me you may never use it and not want Mac OSX to load it every time you start your Mac. In this post I will show you how to disable (and enable) the dashboard.
Step 1.
Open the terminal Applications > Utilities > Terminal.app
Step 2.
Type the following code into your Terminal and this will disable your Dashboard.
defaults write com.apple.dashboard mcx-disabled -boolean YES
Step 3.
Now all you need to do is restart your Dock. This will take a few seconds but it will come back and you will not know any difference except that you can no longer access the Dashboard Desktop.
Type this code into your Terminal (thus is case sensitive).
killall Dock
Note
If you want to restart your dashboard, all you have to do is follow the steps again except in step 2 change the code to
defaults write com.apple.dashboard mcx-disabled -boolean NO
This will then restart the Dashboard.

