If your MacBook came with a 256 GB or 512 GB SSD, the "your disk is almost full" notification has probably interrupted you at least once. This guide walks you through how to optimize storage on macOS Ventura — including where Apple moved the controls in the redesigned System Settings, what the built-in options actually do, and how to safely reclaim space yourself.
Where to Find Storage Settings in macOS Ventura
macOS Ventura (13) replaced System Preferences with the iOS-style System Settings. The storage panel moved with it. Here is how to get there:
- Click the Apple menu () in the top-left corner.
- Choose System Settings.
- Click General in the left sidebar.
- Click Storage.
You will see a color-coded storage bar and a list of categories (Applications, Documents, iCloud Drive, System Data, and so on). Each category can be expanded or opened to reveal what is taking up space.
For reference, in macOS Monterey and earlier the same panel lived at Apple menu → About This Mac → Storage → Manage.
Ventura Storage Settings: What Each Option Does
Below the storage bar, Ventura offers four built-in recommendations. It is worth understanding what each one actually does before enabling it.
| Option | What it does | Safe to enable? |
|---|---|---|
| Store in iCloud | Moves Desktop, Documents, and Photos to iCloud, keeping only recent files local. Files redownload on demand. | Yes — requires sufficient iCloud storage and a reliable connection. |
| Optimize Mac Storage | Removes locally stored iTunes/Apple TV purchases after you watch them; keeps them in the cloud for re-download. | Yes — originals stay in Apple's servers; nothing is permanently deleted. |
| Empty Trash Automatically | Permanently deletes items that have been in the Trash for 30 days. | Yes, but understand that after 30 days those files are gone without confirmation. |
| Reduce Clutter | Opens a file browser showing large files, downloads, and unsupported apps so you can manually delete them. | Yes — you choose what to delete. Review carefully before removing anything. |
Understanding "System Data" — Ventura's Biggest Mystery Category
Many users open Storage and see a huge System Data wedge — sometimes 20–60 GB — with no way to drill into it. This category is an umbrella that includes caches, logs, Time Machine local snapshots, language files, swap files, and more. Apple deliberately does not let you delete System Data contents directly from the panel.
Some of this space is genuinely purgeable (macOS reclaims it under pressure), but some of it lingers indefinitely. That gap is where manual cleaning becomes worthwhile.
macOS Ventura Free Up Space: Manual Cleaning
1. Clear User Caches
Application caches accumulate over time. They are safe to delete — apps regenerate them — but you should quit the relevant app first.
# Open your user cache folder in Finder
open ~/Library/Caches
Sort by size (View → Show View Options → Sort By Size). Delete folders for apps you recognize; leave anything system-level or anything you do not recognize if you are unsure. Do not delete the folder itself — only its contents.
2. Clear System-Level Logs
System and application logs in /Library/Logs and ~/Library/Logs are safe to delete. macOS creates new ones automatically.
sudo rm -rf /Library/Logs/*
rm -rf ~/Library/Logs/*
The sudo command requires your administrator password. Logs are not needed for normal operation, so this is low risk.
3. Remove Time Machine Local Snapshots
Ventura stores local Time Machine snapshots on your startup disk until they are uploaded to your backup drive. You can list and delete them:
# List local snapshots
tmutil listlocalsnapshots /
# Delete a specific snapshot (replace the date string)
sudo tmutil deletelocalsnapshots 2024-05-01-120000
Only delete snapshots if you have a current backup elsewhere. Local snapshots are your safety net if a file disappears before the next backup cycle.
4. Clean Up Xcode Derived Data and Archives (Developers Only)
If you develop with Xcode, derived data and old archives can consume tens of gigabytes:
rm -rf ~/Library/Developer/Xcode/DerivedData/*
# Archives — review before deleting; they may be your only signed build copy
open ~/Library/Developer/Xcode/Archives
5. Remove Unused Language Files
Many apps ship with dozens of localizations. Tools like localizations strippers can reclaim a few gigabytes, but this requires modifying app bundles. It is generally not recommended unless you are comfortable with the risk of breaking code-signature verification or Gatekeeper checks.
What Is Actually Safe to Delete — and What Is Not
- Safe: Contents of
~/Library/Caches,~/Library/Logs,/Library/Logs, the Trash, large files in Downloads you no longer need, old iOS/iPadOS backups in Finder. - Safe with caution: Time Machine local snapshots (only if you have an up-to-date external backup), Xcode derived data (regenerated on next build).
- Risky — do not delete: Contents of
~/Library/Application Supportwithout research (app data, preferences, saved states live here), anything inside/Systemor/usr, swap files (/private/var/vm), or files inside app bundles.
The rule of thumb: if you do not know exactly what a folder does, do not delete it. Cleaning is permanent. Time Machine or a backup is your only recovery path.
When Manual Cleaning Gets Tedious: A Tool for Tight SSDs
Running Terminal commands every few weeks works fine if you are comfortable at the command line, but it is easy to miss categories or accidentally skip something large. If you are managing a cramped 256 GB MacBook and need a repeatable, safer workflow, Crumb is worth a look. It runs as a native macOS menu-bar app and performs a one-click clean of user and system caches, logs, temp files, and purgeable System Data — the same categories covered above — without requiring Terminal commands. It also shows a disk treemap so you can see exactly what is consuming space before you delete anything, and it flags what is risky vs. routine. If you want to try it, you can download Crumb directly (notarized, no account required).
That said, the built-in Ventura tools handle the basics well, and for many users enabling iCloud storage offloading plus a periodic manual cache sweep is sufficient.
Summary: Quick Checklist for Ventura Storage Optimization
- Open System Settings → General → Storage and enable Store in iCloud and Optimize Mac Storage if they suit your workflow.
- Use Reduce Clutter to find and delete large, old files in Downloads and Documents.
- Clear
~/Library/Cachescontents for apps you use regularly. - Delete old iOS device backups (Finder → your device → Manage Backups).
- If you use Xcode, purge Derived Data.
- Consider enabling Empty Trash Automatically if you are comfortable with the 30-day auto-delete behavior.
- Repeat every month or two — caches regrow.
Storage pressure on a small SSD is a constant battle rather than a one-time fix. Building a light monthly habit — checking the Storage panel, clearing caches, reviewing Downloads — keeps things manageable without drastic measures.