Force Quit a Frozen App Mac: 5 Ways That Actually Work

August 24, 2026

Force Quit a Frozen App Mac: 5 Ways That Actually Work

You click. Nothing happens. You click again, harder, as if that ever works. The cursor turns into a spinning, rainbow-colored beach ball, and whatever app you were using is now completely ignoring you. It happens to every Mac eventually — Safari with too many tabs open, a video editor chewing through a big export, Preview choking on a corrupted PDF.

The good news is that macOS gives you more than one way out, and you don’t need to restart your whole computer just to shut down one stubborn program.

To force quit a frozen app Mac, press Option + Command + Esc to open the Force Quit Applications window, select the unresponsive app, and click Force Quit. If the shortcut doesn’t respond, you can also use the Apple menu, right-click the app’s Dock icon while holding Option, or open Activity Monitor and stop the process directly.

What “Frozen” Actually Means (and What It Doesn’t)

Not every slow app is a frozen app, and the fix is different depending on which one you’re dealing with.

A genuinely frozen app usually shows one or more of these signs:

  • The spinning beach ball cursor appears and never clears
  • The Dock shows “Not Responding” when you hover over the app’s icon
  • The window stops redrawing — menus don’t open, buttons don’t react
  • Keyboard and mouse input inside that window simply does nothing

If your cursor still moves freely and other apps respond normally, it’s almost always just the one app — not your whole Mac — that’s stuck. That distinction matters, because it tells you whether you need a targeted force quit or a full system restart. A common mistake is assuming the whole machine has locked up and holding the power button, when a ten-second wait plus a simple force quit would have solved it without losing work in other open apps.

Sometimes what looks like a freeze is really just an app working hard — exporting a large video file, indexing a big photo library, or opening a bloated spreadsheet. Give it a minute or two before reaching for force quit. If the progress bar is still crawling forward, it’s busy, not broken.

5 Ways to Force Quit a Frozen App Mac

Work through these roughly in order. Start with the fastest option and only move down the list if the app still won’t budge.

1. The keyboard shortcut (fastest)

Press Option (⌥) + Command (⌘) + Esc at the same time. This opens the Force Quit Applications window — think of it as a lightweight, Mac version of a task manager. Click the unresponsive app (it’s often labeled “Not Responding” in red), then click Force Quit.

This shortcut is worth memorizing because it works even when the frozen app’s own window is completely unresponsive — you’re not clicking inside the broken app, you’re triggering a system-level window that sits above it.

2. From the Apple menu

Click the Apple logo in the top-left corner of your screen, then choose Force Quit. You’ll see the same Force Quit Applications window as the shortcut opens. Select the app and confirm.

This is a good backup if, for whatever reason, your keyboard shortcuts aren’t registering.

3. From the Dock

If the app icon is still visible in the Dock, hold down the Option key and right-click (or Control-click) on it. The regular “Quit” option changes to Force Quit — click it, and the app closes immediately.

This method is handy when you’re mid-freeze and don’t want to navigate menus at all.

4. Activity Monitor (when you need more control)

Activity Monitor is the closest thing macOS has to Windows’ Task Manager, and it’s useful when the app doesn’t show up cleanly in the Force Quit window, or when you also want to see what’s actually consuming your Mac’s resources.

  1. Open Activity Monitor via Spotlight (Command + Space, then type “Activity Monitor”) or from Finder > Applications > Utilities.
  2. Find the app in the Process Name list — an unresponsive one is usually marked “(Not Responding)” and shown in red.
  3. Select it, then click the Stop button (the X in a circle) near the top of the window.
  4. You’ll be asked to choose between Quit and Force Quit. Quit asks the app to close gracefully and can be blocked if it might cause data loss; Force Quit terminates it immediately, no questions asked.

One thing most guides skip: some apps, especially browsers, spawn multiple helper processes alongside the main one. If force-quitting the primary process doesn’t fully clear the freeze, search Activity Monitor for related helper processes tied to the same app and stop those too.

5. Force quitting Finder specifically

Finder is technically always running, so it doesn’t have a normal “quit” option — but it can still freeze. Open the Force Quit Applications window and select Finder; you’ll notice the button reads Relaunch instead of Force Quit. Click it, and Finder restarts itself without affecting your other open apps.

Force Quit From Terminal (For When Nothing Else Works)

Terminal is overkill for most day-to-day freezes, but it’s the most reliable fallback when the graphical tools themselves are unresponsive.

Open Terminal from Finder > Applications > Utilities (or via Spotlight), then use one of these:

killall AppName

This closes every process matching that app’s name. If the app’s name has a space in it — System Settings, for example — wrap it in quotes:

killall "System Settings"

If killall doesn’t work, or you need to target one specific process rather than everything matching a name, find its Process ID (PID) first:

top

top lists every running process along with its PID and how much CPU it’s using — this doubles as a quick way to spot what’s actually hogging resources. Note the PID of the frozen app, then run:

kill -9 [PID]

The -9 flag sends a SIGKILL signal, which terminates the process immediately with zero chance for it to hang around. It’s blunt, but it works even on apps that ignore everything else. pkill AppName is another option if you’d rather match by name than by PID.

A word of caution: Terminal commands don’t ask for confirmation the way the GUI does. Double-check the app name or PID before hitting Return — killing the wrong process, especially a system one, can cause bigger problems than the freeze you started with.

When the Whole Mac Is Frozen, Not Just One App

Occasionally it isn’t a single app — it’s the entire system. You’ll know because none of the above methods respond at all: the cursor doesn’t move, the Dock doesn’t react, and nothing on screen changes no matter what you click or type.

In that case, force quitting an individual app won’t help, because the operating system itself isn’t processing input. Instead:

  1. Press and hold the power button for about 10 seconds until the screen goes black and the Mac shuts down.
  2. Wait a few seconds.
  3. Press the power button again to turn it back on.

This is a last resort, not a first step — it’s the equivalent of pulling the plug, and any unsaved work across every open app will be lost. Before you go this route, confirm the cursor genuinely doesn’t move at all. Even a slightly sluggish cursor usually means the system is still alive underneath, just overloaded, and the shortcut-based methods above are still worth trying first.

Is Force Quitting Safe? What You Might Lose

Force quitting isn’t dangerous to your Mac itself — you won’t damage macOS or your hardware by doing it. What you’re risking is unsaved work inside that specific app. Because Force Quit skips the normal shutdown process, the app doesn’t get a chance to save open documents or finish writing files to disk.

This is really the core difference between Quit and Force Quit in Activity Monitor: regular Quit asks the app to close on its own terms, and macOS will actually block it if closing right then could cause data loss. Force Quit removes that safety net entirely and ends the process the instant you click it.

Practically, that means:

  • Save your work manually and often, especially in apps prone to freezing (large spreadsheets, video editors, design tools)
  • After force quitting, reopen the app — many will offer to recover unsaved documents automatically
  • If the same document caused the freeze, try opening a different file next; a single corrupted or oversized file is a common culprit
  • If a specific peripheral (a printer, an external drive) was connected right before the freeze, disconnect it — compatibility issues are a frequent, overlooked trigger

Stopping the Freezes Before They Start

Force quitting fixes the moment, but if one app keeps freezing, it’s worth addressing why.

  • Keep macOS and the app updated. Freezes are disproportionately common right after a major OS update when app developers haven’t caught up yet.
  • Check Activity Monitor periodically, even when nothing’s frozen, to spot apps quietly eating CPU or memory in the background — these are often the ones that eventually lock up.
  • Remove incompatible plug-ins or add-ons, particularly in browsers and creative apps, since third-party extensions are a common freeze source after updates.
  • Consider a lightweight menu-bar utility if you regularly juggle many open apps. Tools like QuitAll sit in the menu bar and let you close everything — or the whole system — with one click, which can be faster than repeating the steps above every time. They’re a convenience layer on top of the built-in tools, not a replacement for them.
  • Run Safe Mode occasionally if freezes are frequent and unexplained. Booting into Safe Mode (hold Shift at startup) clears certain caches and disables non-essential software, which can help you isolate whether a third-party tool is the root cause.

Conclusion

Most frozen-app situations on a Mac come down to the same short list: try the Option + Command + Esc shortcut first, fall back to the Apple menu or Dock if needed, use Activity Monitor when you want more visibility, and keep Terminal in your back pocket for the rare case nothing else responds. Reserve the power-button restart for when the entire system, not just one app, has genuinely stopped responding.

If this is happening often with the same app, that’s your cue to look at updates, extensions, or file size rather than just force quitting on repeat. Bookmark this page, and the next time the beach ball shows up, you’ll know exactly which method to reach for first.

NEED MORE ANSWERS? BROWSE THE SOFTARABIA HOMEPAGE FOR MORE FREE SOFTWARE GUIDES.

FAQ Section

How do I force quit an app on Mac that won’t close?

Press Option + Command + Esc to open the Force Quit Applications window, select the app, and click Force Quit. If that doesn’t work, try Activity Monitor: select the app’s process and click the Stop button, then choose Force Quit.

What is the keyboard shortcut to force quit on Mac?

The shortcut is Option (⌥) + Command (⌘) + Esc, pressed together. It opens the Force Quit Applications window listing every running app, so you can select the frozen one and close it directly.

Why won’t my Mac let me force quit an app?

Usually this means the app itself, or the entire system, is too overloaded to respond to the shortcut. Try the Apple menu or Dock method instead, and if none of those work, use Activity Monitor or Terminal, which operate independently of the frozen app.

What happens if I force quit an app on Mac?

The app closes immediately without saving open documents. macOS itself isn’t harmed, but any unsaved changes inside that app are typically lost, so reopen the app afterward to check for a recovered draft.

How do I force quit when my whole Mac is frozen?

If the cursor doesn’t move and nothing responds at all, hold the power button for about 10 seconds to force a shutdown, wait a few seconds, then power it back on. This should only be used when individual force-quit methods have no effect whatsoever.

Is it bad to force quit apps on Mac?

Occasional force quitting won’t damage your Mac or macOS. The real risk is losing unsaved work in that specific app, since Force Quit skips the normal save-and-close process that a regular Quit goes through.

How do I find the process ID on Mac?

Open Terminal and type top to see a live list of running processes along with their PID and resource usage. You can also see PIDs in Activity Monitor by adding the PID column to the process list view.

How do I stop apps from freezing on Mac?

Keep macOS and your apps updated, periodically check Activity Monitor for resource-heavy background processes, and remove browser extensions or plug-ins that haven’t been updated for your current macOS version.

Article by Daniel Carter

A technology editor and software troubleshooting specialist with over 12 years of experience creating reliable, easy-to-follow guides. Focused on software installation, system optimization, error resolution, and practical how-to tutorials that help users solve technical problems with confidence.