Screenshots on MacBook Air: what you need to know

MacBook Air uses the same screenshot shortcuts as every other Mac. Whether you have a 2020 M1, 2022 M2, 2024 M3, or 2025 M4 MacBook Air, the keyboard shortcuts, save locations, and built-in tools are identical. There's no special screenshot app for the Air — macOS handles it the same way across all models.

If you're new to Mac (especially coming from Windows where you'd press Print Screen), the key difference is that macOS uses multi-key shortcuts instead of a single dedicated key. Here are all the ways to capture your MacBook Air screen.

Method 1: Capture the entire screen

Press Cmd+Shift+3 to capture everything visible on your MacBook Air display.

The screen flashes briefly, a thumbnail appears in the bottom-right corner, and the screenshot saves to your Desktop as a PNG file. The filename follows the pattern Screenshot 2026-05-13 at 10.30.00 AM.png.

MacBook Air screen resolutions

Your screenshot dimensions depend on which MacBook Air you have, because macOS captures at the full Retina resolution (2x the display's logical resolution):

MacBook Air model Display Screenshot size
MacBook Air 13" (M1, 2020) 2560 × 1600 2560 × 1600 px
MacBook Air 13" (M2, 2022) 2560 × 1664 2560 × 1664 px
MacBook Air 15" (M2/M3, 2023–24) 2880 × 1864 2880 × 1864 px
MacBook Air 13" (M3/M4, 2024–25) 2560 × 1664 2560 × 1664 px

These are larger than what you see on screen because Retina displays render at 2x density. If you need smaller images for the web or documentation, you'll want to resize the screenshot after capturing.

Method 2: Capture a selected area

Press Cmd+Shift+4 to turn your cursor into a crosshair. Click and drag to select any rectangular area of the screen. Release the mouse button (or trackpad) to capture just that selection.

Tips for precise selections

  • Watch the pixel dimensions displayed next to the crosshair as you drag — useful for capturing specific sizes
  • Hold Space while dragging to move the entire selection without resizing it
  • Hold Shift while dragging to lock one axis (width or height) and adjust only the other
  • Hold Option while dragging to resize from the center instead of the corner
  • Press Escape to cancel the capture at any time

Method 3: Capture a specific window

Press Cmd+Shift+4, then immediately press Space. Your cursor changes to a camera icon. Hover over any window — it highlights in blue — and click to capture just that window.

By default, macOS adds a drop shadow around the captured window. To capture without the shadow, hold Option while clicking the window.

What counts as a “window”

The window capture mode detects more than just app windows. It also captures:

  • The menu bar
  • The Dock
  • The Desktop (wallpaper only, no icons)
  • Individual dialog boxes and sheets
  • Notification Center widgets

LazyScreenshots captures, annotates, and beautifies MacBook Air screenshots in one step — no extra tools needed.

Try LazyScreenshots Free

Method 4: Use the Screenshot app (Cmd+Shift+5)

Press Cmd+Shift+5 to open the Screenshot toolbar at the bottom of your screen. This gives you a visual interface with buttons for each capture mode:

Button What it does
Capture Entire Screen Same as Cmd+Shift+3
Capture Selected Window Same as Cmd+Shift+4+Space
Capture Selected Portion Drag a resizable selection box
Record Entire Screen Start a full-screen video recording
Record Selected Portion Record a specific area of the screen

The Options menu

Click Options in the Screenshot toolbar to change settings:

  • Save To: Change where screenshots are saved (Desktop, Documents, Clipboard, Mail, Messages, or a custom folder)
  • Timer: Set a 5-second or 10-second delay before capture
  • Show Floating Thumbnail: Toggle the preview thumbnail on or off
  • Remember Last Selection: Keep the last selection area when you open the tool again
  • Show Mouse Pointer: Include or exclude the cursor in screenshots

Method 5: Copy screenshots to clipboard instead of saving

Add Ctrl to any screenshot shortcut to copy the capture to your clipboard instead of saving a file:

  • Cmd+Ctrl+Shift+3 — Copy full screen to clipboard
  • Cmd+Ctrl+Shift+4 — Copy selected area to clipboard
  • Cmd+Ctrl+Shift+4, then Space — Copy window to clipboard

This is the fastest workflow for pasting screenshots into Slack, emails, Google Docs, or AI coding tools — no file to find and drag.

Method 6: Take screenshots without a keyboard

If your keyboard shortcuts aren't working or you prefer a visual approach:

  1. Open Finder
  2. Go to Applications > Utilities
  3. Open the Screenshot app (or search for it with Spotlight: Cmd+Space, type "Screenshot")

You can also take screenshots using Preview: open Preview, then go to File > Take Screenshot and choose your capture mode.

MacBook Air function key row differences

The MacBook Air's top row has full-size function keys (F1–F12) with icons for brightness, volume, and other system controls. Unlike older MacBook Pro models that had a Touch Bar, the Air has always used physical function keys — so screenshot shortcuts work the same whether your function key behavior is set to standard or media.

If Cmd+Shift+3 doesn't work, check System Settings > Keyboard and make sure the shortcut isn't disabled or reassigned. On rare occasions, third-party apps (like Karabiner-Elements or screen recording software) can intercept these key combos.

Change where MacBook Air screenshots are saved

The fastest way to change the save location:

  1. Press Cmd+Shift+5
  2. Click Options
  3. Under Save to, select your preferred location (or click Other Location to choose a custom folder)

Or use Terminal for a permanent change:

# Save screenshots to a Screenshots folder
mkdir -p ~/Pictures/Screenshots
defaults write com.apple.screencapture location ~/Pictures/Screenshots
killall SystemUIServer

Change the screenshot format from PNG

MacBook Air screenshots default to PNG. If you need smaller file sizes (for email, Slack, or web uploads), switch to JPG:

# Switch to JPG
defaults write com.apple.screencapture type jpg
killall SystemUIServer

# Switch back to PNG
defaults write com.apple.screencapture type png
killall SystemUIServer

On macOS Tahoe with HDR-capable MacBook Air displays, screenshots may default to HEIC format. If your screenshots suddenly changed format after a macOS update, check our macOS Tahoe HEIC fix guide for the solution.

Quick reference: MacBook Air screenshot shortcuts

Shortcut Action
Cmd+Shift+3 Capture entire screen
Cmd+Shift+4 Capture selected area
Cmd+Shift+4, then Space Capture a window
Cmd+Shift+5 Open Screenshot toolbar
Add Ctrl to any above Copy to clipboard instead of saving
Escape Cancel screenshot in progress