Terminal is a fantastic way to customize random little settings in OS X, but it’s hard for new Mac users to know what commands do what. So over the next few days I’ll be posting random Terminal commands that I’ve found useful.
[1] defaults write com.apple.dashboard devmode YES
This will allow you to drag widgets out of Dashboard and onto the desktop. In order for it to take effect, the dock to be relaunched, so next you’ll type killall Dock
and press enter. Now, if you click and hold on a widget in the dashboard and press F12 to return to the desktop, the widget won’t disappear with the rest. To reverse, change YES
to NO
.
[2] defaults write com.apple.CrashReporter DialogType none
Disables the application unexpectedly quit dialog that usually appears when an application crashes. Replace none
with prompt
to enable again.
[3] defaults write com.apple.finder AppleShowAllFiles TRUE
Shows hidden files in the finder. Replace TRUE
with FALSE
to hide hidden files again.
Leave a Reply
You must be logged in to post a comment.