contact us

Use the form on the right to contact us.

You can edit the text in this area, and change where the contact form on the right submits to, by entering edit mode using the modes on the bottom right.


Oakland, CA
USA

My main blog is a Squarespace 5 blog located at saysbrad.com — I'm looking at migrating my technology/design site to Squarespace 6 (or perhaps another platform). It's quite a time consuming endeavor to do right and it's given me a lot to think about.

Life, Technology, Design

Filtering by Tag: terminal

OS X: Getting rid of Dashboard

Brad Chin

How to permanently* remove Dashboard in OS X Mavericks.

Now more than ever, Apple’s Dashboard feels redundant.

When Apple first announced Dashboard Widgets, it was sort of revolutionary to me; all of these mini-apps, adding functionality and usability to my computer with a tap. However, with the numerous innovations that have come about since multi-touch and iOS, Dashboard seems like a slow, unnecessary relic of OSX’s past.

Dashboard was designed before multi-touch mice and trackpad gestures, and was an innovation prior to the iPhone. But it’s still built into the latest Mac OS X release, Mavericks.

Don’t want it anymore? I didn’t. Why have something around that I’m not going to use that just slows down my computer and eats up bandwidth? Here’s how to kill it. Note: you need admin privileges.

Step one: Open Terminal.

Add the following line of code:

defaults write com.apple.dashboard mcx-disabled -boolean true

Two: Relaunch.

Add the next line:

killall Dock

Three DONE!

Now, Dashboard is finally a thing of the past.

Widgets are mini-apps. iPhone is a mini-computer.

I understand that some people will still benefit from Dashboard, I don’t need a list of reasons why it’s still valid. There are a number of really cool widgets available. Just nothing that I can’t do faster with Safari or more conveniently on my iPad or iPhone, devices that are always right next to me and can function as a second screen, mini-computer. Siri can do just about everything that standard widgets do (I can’t at the moment think of something I’d do with a widget that I can’t just tell my phone to do for me), without changing to a separate space or obscuring my main screen.

Not really permanent.

* However, sometimes we change our minds about things. If you need to bring Dashboard back, simply change true to false

defaults write com.apple.dashboard mcx-disabled -boolean false

Don’t forget!

killall Dock

Dashboard should now be back.

If you like this sort of post or it helps you out, please let me know!

I feel like I shouldn’t have to write this (but lest it become a problem somehow)…

You modify settings on your system at your own risk. Please don’t blame me if something goes wrong or doesn’t work on your system — I’m not there, I don’t know what happened. I’m basically just passing along information that helped me.

Removing Apps From Launchpad

Brad Chin

I prefer the Dock on the left to maximize vertical space.

Mac OS X Lion & Mountain Lion make Apple computers more like their iOS devices, but this isn’t always a good thing.


Apple’s Lions are pretty — there’s no denying that. However, in adding simplicity, Apple has limited functionality and control. In an attempt to make Mac OSX more user-friendly, Apple has hidden files and features. The multitouch trackpad and Launchpad make Macs function more like iPhones and iPads — the problem is that desktops and notebooks are more complex than their bite-sized brethren.

Want full control of your Launchpad?


"Too bad" seems to be the Apple response. According to Apple, you can rearrange icons and remove Mac App Store apps only. [To remove App Store apps, either click and hold over the app icon (similar to the iOS process of removing/re-arranging apps) or hold the “alt option” key. Click "X." To add any app to Launchpad, drag & drop the app from Finder onto the Launchpad icon (located on your Dock).]

But what if you want to remove an app without an “X”?


Since Apple won’t help, I will!


First, if you’ve used Mac OS prior to Lion, you’ll notice the absence of the Library folder. Apple decided that people don’t need to be bothered with such things and hid it. If you want to view it again, open Terminal.app, located in /Applications/Utilities. Copy/Paste the following:
chflags nohidden ~/Library

Like magic, Library will now appear in Finder. (Note: Before you go modifying your Launchpad, you may want to backup its current setup. To do that, backup the .db file located in /Library/Application Support/Dock)

If you want to remove ALL items from Launchpad, you can follow this guide at gnuu.org This might be best if you have a lot of clearing to do.

However, if you just want to remove some apps from Launchpad


Open /Applications/Utilities/Terminal.app and use the following;
sqlite3 ~/Library/Application\ Support/Dock/*.db "DELETE from apps WHERE title='APPNAME';" && killall Dock

REPLACING APPNAME with the name of the app you want to remove from Launchpad. For example, if I wanted to remove Reminders, I would open Terminal and enter:
sqlite3 ~/Library/Application\ Support/Dock/*.db "DELETE from apps WHERE title='Reminders';" && killall Dock


Note: This won’t delete the app, it just removes it from Launchpad.

Hopefully this helps you!


If it has, please leave a comment and consider liking my Says Brad Facebook page to keep in touch. I’d love to hear from you.

There are a lot of third-party apps out there for Dock, Desktop, Library and Launchpad management, but frankly, I don’t trust them; many aren’t free or are ad-supported, created by people I’ve never heard of. Not saying that they’re all illegitimate, but I can’t be certain. Luckily, a little Terminal magic can solve the bulk of your OSX issues. I’m an iOS guru (lol), not an OSX expert, but feel free to ask if you have questions — if I can help, I will.