#The numbers
Most notch dimensions floating around the internet are guesses read off screenshots. These are not: they were measured with Apple's own APIs on real hardware during the development of NotchBay, because when an app lives inside the notch, being a point off is visible.
| Model | Notch (points) | Default resolution | Share of width | Native pixels (@2x) |
|---|---|---|---|---|
| MacBook Pro 16″ (M1 Pro → M4 Max) | 220 × 38 pt | 1800 × 1169 | ≈12.2% | ≈440 × 76 px |
| MacBook Pro 14″ (M1 Pro → M4 Max) | 185 × 32 pt | 1512 × 982 | ≈12.2% | ≈370 × 64 px |
| MacBook Air 13″ / 15″ (M2 → M4) | notch present; height equals the menu bar (≈32 pt at default scaling)* | 1470 × 956 / 1710 × 1112 | ≈12%* | - |
* Air values are consistent with reports and the same design ratio, but only the Pro rows come from direct NSScreen measurement. Those rows are exact.
Two details most posts get wrong: the notch's height is exactly the menu bar's height at default scaling (that's by design, not coincidence), and if you change the display's scaled resolution, the notch's point size changes with it while its physical size obviously doesn't.
#Which MacBooks have a notch
Four MacBook lines have a notch: the 14-inch and 16-inch MacBook Pro, every model since the 2021 redesign, and the 13-inch and 15-inch MacBook Air, every model from the M2 generation on. Does the MacBook Air have a notch? Yes, every Air from the M2 onward does; the older wedge-shaped M1 and Intel Airs do not.
| Model | Notch since | Notch (points) |
|---|---|---|
| MacBook Pro 16″ | 2021 redesign (M1 Pro/Max onward) | 220 × 38 pt, measured |
| MacBook Pro 14″ | 2021 redesign (M1 Pro/Max onward; the base M-series 14″ has the same housing) | 185 × 32 pt, measured |
| MacBook Air 13″ | M2 (2022) onward | one menu bar tall, ≈32 pt at default scaling, reported |
| MacBook Air 15″ | M2 generation onward | one menu bar tall, ≈32 pt at default scaling, reported |
No notch: any Intel MacBook, the wedge-shaped M1 MacBook Air, the 13-inch Touch Bar MacBook Pro, the iMac, and every external display. The full model list is in which MacBooks have a notch.
If you own one of the four, the strip either side of the camera is a permanent, always-visible band that macOS leaves idle, and a category of apps turns it into a Dynamic Island for Mac. The exact closed and expanded geometry NotchBay draws around the numbers above, corner radii included, is published on the island design rules page.
#Measure your own in 10 lines
macOS exposes the notch through NSScreen. The safe-area inset gives you the height, and the auxiliary top areas give you everything to the left and right of the camera housing, subtract and you have the exact cutout:
// Swift, paste into a Playground on any notched MacBook import AppKit let screen = NSScreen.main! let notchHeight = screen.safeAreaInsets.top // 38 pt on a 16″ if let left = screen.auxiliaryTopLeftArea, let right = screen.auxiliaryTopRightArea { let notchWidth = screen.frame.width - left.width - right.width print("Notch: \(notchWidth) × \(notchHeight) pt") // 220.0 × 38.0 }
If safeAreaInsets.top returns 0, the Mac has no notch (or the app is running in a fullscreen space that hides it).
#The design details nobody documents
Building an app that pretends to be part of the notch forces you to learn its geometry the hard way. The details that matter:
- Corner radii: the hardware cutout's corners measure roughly 4 pt at the top and 8 pt at the bottom: the bottom flares wider, which is why software that mimics the notch with equal radii looks subtly wrong.
- The menu bar draws slightly deeper than the physical cutout, around 5 pt, so menu bar backgrounds fully cover the notch region with margin.
- No Face ID: the housing holds a 1080p camera, an ambient light sensor, and the camera indicator LED. No TrueDepth array, despite the space looking similar to an iPhone's.
- Menu bar items flow around it: macOS treats the notch as an exclusion zone: items that don't fit to its left simply don't render, which is why menu-bar managers exist.
For comparison, Apple's iPhone Dynamic Island is 230–250 pt wide with a 44 pt corner radius, per Apple's Human Interface Guidelines, the Mac notch is proportionally wider and squarer because it holds a bigger camera in a thinner lid.
#The notch doesn't cost you screen space
The most persistent myth: that the notch “eats” part of your display. It's the opposite. The 16″ panel is 1800×1169 points, that's 44 extra rows of points compared to the 16:10 frame (1800×1125) older MacBooks would have given you. The menu bar moved up into that bonus strip, and the notch lives there with it.
So hiding the notch with a black-bar utility doesn't reclaim anything, it just paints the bonus strip black. The more interesting move, and the reason NotchBay exists, is putting that strip to work: it's permanent, always visible, and sits exactly where your eyes already go for system status.
#Apps that put the notch to work
A small ecosystem has grown around this strip of screen. The landscape:
- NotchBay: this site’s own app, so weigh the placement. It wraps the cutout in Dynamic Island-style live activities, which is why every number on this page had to be exact; it needs macOS 26 and is designed for a notched MacBook (a floating pill on other Macs), $9 one-time with a 14-day money-back guarantee.
- boring.notch, the open-source option in the category; media controls and a file shelf.
- NotchNook: polished commercial option with media, mirror and tray features.
- Alcove: minimal, tasteful media and battery activities.
They differ on privacy models, macOS support and depth, the full feature-by-feature comparison is built from the same measure-don't-guess approach as this page, and Dynamic Island for Mac explains what the whole category does before you install anything.
#Frequently asked questions
How big is the MacBook Pro notch exactly?
220×38 points on the 16-inch (default 1800×1169 resolution) and 185×32 points on the 14-inch (default 1512×982), roughly 440×76 and 370×64 native pixels. Both measured with NSScreen APIs on real hardware.
Can you hide the notch?
Yes: macOS offers scaled modes that letterbox below it, and utilities can paint the menu bar black so the cutout disappears visually. You reclaim nothing by doing so; you only paint the bonus strip black. Apps like NotchBay take the opposite approach and make the area useful.
Do screenshots include the notch?
Full-screen screenshots capture the entire panel including the notch region, the cutout appears as part of the menu bar area. Window screenshots are unaffected.
- Apple Human Interface Guidelines, Live Activities (Dynamic Island dimensions)
- Apple Developer Documentation, NSScreen.safeAreaInsets
- Notchmeister (Iconfactory): open-source notch geometry reference
- Apple Support, if apps or menu bar items overlap with the camera housing (the scaled-mode and Get Info options)