If your browser's title bar is crowded with extension icons, tab buttons, and toolbar controls, it can be surprisingly hard to find a spot to grab the window:
And here's how little of that frame is actually draggable (highlighted in green):
macOS has a hidden setting that lets you drag any window from anywhere inside it — middle of a webpage, blank space, doesn't matter.
In Terminal:
defaults write -g NSWindowShouldDragOnGesture -bool trueThen log out and back in (or quit and relaunch apps individually) so they pick up the change.
Hold Ctrl + Cmd and drag from anywhere inside a window. The window moves with the cursor — no need to aim for the title bar.
defaults write -g NSWindowShouldDragOnGesture -bool falseOr remove the override entirely:
defaults delete -g NSWindowShouldDragOnGesture- Works in Chrome, Safari, Finder, and most native apps.
- A handful of apps use
Ctrl+Cmdfor their own shortcuts and may behave oddly — rare in practice. - This is a long-standing macOS feature; it's just undocumented rather than deprecated.



