Open Source · GPL-3.0 · macOS 14+

Your displays,
under control.

A lightweight, open-source macOS menu bar app for managing displays and creating virtual monitors.

< 2 MB
App size
GPL-3.0
License
Universal
Apple Silicon & Intel

Everything you need, nothing you don't

Simple display management that lives in your menu bar and stays out of the way.

Enable / Disable Displays

Toggle monitors on and off without unplugging them. Handles edge cases like disabling the main display safely.

Virtual Displays

Create virtual monitors with custom resolutions and device presets — iPhone, iPad, Mac, TV, and more.

Set Main Display

Change your primary monitor from the menu bar. Menu bar and dock reposition automatically.

HiDPI Support

Create Retina virtual displays. HiDPI and standard modes properly grouped and labeled.

Sleep / Wake Safe

Automatically handles display state across sleep cycles. Your setup is restored without manual intervention.

ColorSync Fix

Prevents the ColorSync deadlock that occurs with identical monitors on macOS Sequoia.

Real monitors, created in software

macOS limits resolution when no physical monitor is connected. SimpleDisplay creates virtual displays that the system treats as real screens — perfect for remote access, testing, and headless setups.

Remote access

Full resolution over VNC, Screen Sharing, Parsec, AnyDesk, or TeamViewer.

Headless Macs

Run Mac minis and Mac Studios with no monitor attached at any resolution.

Responsive testing

Test layouts at specific device resolutions without extra hardware.

Hidden screens

Keep apps running on a virtual display while working on your main screen.

iPhone iPad MacBook 1080p 4K Ultrawide Custom
Created "iPad Pro 11" 2420×1668 @ 60Hz
Reconfigured to 2732×2048 @ 60Hz

Displays:
  ● Mi Monitor    3440×1440  main
  ○ J560T09 (1)  disabled
  ● iPad Pro 11"  2732×2048  virtual

Built on Apple's display APIs

SimpleDisplay uses macOS private frameworks to give you control that the built-in settings don't offer.

Virtual monitors

Uses Apple's private CGVirtualDisplay API to create displays that appear as real monitors to macOS — useful for screen sharing specific resolutions, testing responsive layouts, or keeping apps running on a "hidden" screen.

Disabling a display

Mirrors it to another active display via CGConfigureDisplayMirrorOfDisplay, effectively turning it off. This is reversed by removing the mirror relationship.

Why private APIs?

These capabilities aren't available through public frameworks. SimpleDisplay can't be distributed on the Mac App Store, but it can do things no App Store app can.

// Virtual display creation
let desc = CGVirtualDisplayDescriptor()
desc.name = "iPad Pro 11"

// Display toggling via mirror
CGConfigureDisplayMirrorOfDisplay(
  config, targetID, mirrorID
)

Up and running in seconds

Download the DMG or build from source — your choice.

Recommended

Download

Grab the latest DMG from GitHub Releases. Open it, drag to Applications, and you're done.

First launch: Right-click the app → Open (required for unsigned apps).

Download latest release
For developers

Build from source

Clone the repo and build with a single command. Requires Xcode Command Line Tools.

# clone & build
git clone https://github.com/SamuelRioTz/SimpleDisplay.git
cd SimpleDisplay
make dmg

# run
open SimpleDisplay.app
View on GitHub

Known limitations

SimpleDisplay uses private Apple APIs. Here's what that means in practice.

Cannot be distributed on the Mac App Store — private APIs are not allowed by Apple's review guidelines.

Virtual display refresh rate is capped at 60 Hz (API limitation).

Display identification uses names, so two identical monitors may not be distinguishable in all scenarios.

The CGVirtualDisplay API may change or be removed in future macOS versions.

GPL-3.0

Built in the open

SimpleDisplay is free software. Built with insights from the macOS display management community, including BetterDisplay, DeskPad, and displayplacer. Contributions of all kinds are welcome.