How to increase the size of the OS X user interface without lowering the resolution?

There is a feature that's currently experimental called HiDPI that may do what you want. Like the retina displays on the iPhone and iPad, HiDPI mode creates a "logical" resolution that's half the current resolution on your display but uses all the physical pixels to keep the image sharp. This results in all the user interface elements appearing much larger, but with no lack in clarity. For example, if you're outputting to a 1080p TV with a resolution of 1920x1080, the HiDPI resolution would be 960x540, and all the elements on the screen would be the same size as if you were outputting that physical resolution.

To enable HiDPI mode in Mac OS X Lion:

  1. Download the "Graphics Tools for Xcode" download from Apple. This download requires you to enter an Apple ID, which you most likely have and can get for free.

  2. Mount the DMG

  3. Open the "Quartz Debug" app

  4. In the menu bar, select "Window", then "UI Resolution"

    enter image description here

  5. Check "Enable HiDPI display modes"

  6. You'll be prompted to log out and log back in. If multiple accounts are logged in, they must all log out for the change to work.

  7. Once you log back in, go to System Preferences, then Displays. You will see the new HiDPI modes there.

    enter image description here

  8. For your 1080p TV, select "960x540 (HiDPI)"

P.S. If you're curious what HiDPI mode looks like, the screenshots I've taken are both in HiDPI. Click on them to see them full sized.

Better yet, open a terminal and type:

sudo defaults write /Library/Preferences/com.apple.windowserver DisplayResolutionEnabled -bool YES

(enter the admin password).

Log out and back in, and Bob's yer uncle.

As of Mountain Lion (OS X 10.8), the HiDPI feature is no longer experimental. It's available in standard installs of the OS, without messing around with developer tools. But it still doesn't work as well as I'd like for this purpose, because if you're using a TV at the normal full HD resolution (1080P, or 1920x1080), the HiDPI resolution of 960x540 is too small for a lot of apps. iTunes, the Mac App Store, and even the Mountain Lion installer and welcome screens either force scrollbars on all screens (annoying) or truncate content without letting you scroll to see it (even worse).

HiDPI is probably the only answer to this problem we're going to get from Apple, but it's really not the right one. It would be nice if people would design their apps to run well at 960x540, but I'm not betting on it.

You can also enable the HiDPI modes without Quartz Debug by changing DisplayResolutionDisabled to DisplayResolutionEnabled in /Library/Preferences/com.apple.windowserver.plist and logging out and back in.

The maximum effective resolutions are half of the native resolutions.