Complete Uninstall Guide
This guide walks you through completely removing Pieces from your Mac, including all application data, saved snippets, and Long-Term Memory.
Complete Uninstall
To remove Pieces and all associated data:
```
~/Library/
```
Delete the following folders if they exist:
- `com.pieces.os` — Contains your snippets, Long-Term Memory, and engine data
- `com.pieces.pfd` — Contains Desktop App settings and logs
```
~/Library/Preferences/com.pieces.*
```
```
~/Library/Caches/com.pieces.*
```
Homebrew Users
If you installed Pieces via Homebrew, run this command instead of manually removing the applications:
brew uninstall --cask pieces
Then continue with Steps 3-6 above to remove application data.
Terminal Commands (Advanced)
For users comfortable with Terminal, you can run these commands to remove everything at once:
# Quit Pieces processes
pkill -f "Pieces" 2>/dev/null
pkill -f "PiecesOS" 2>/dev/null
# Remove applications
rm -rf /Applications/Pieces.app
rm -rf /Applications/PiecesOS.app
# Remove application data
rm -rf ~/Library/com.pieces.os
rm -rf ~/Library/com.pieces.pfd
# Remove preferences
rm -f ~/Library/Preferences/com.pieces.*
# Remove caches
rm -rf ~/Library/Caches/com.pieces.*
Verify Removal
To confirm Pieces has been completely removed:
- Open Spotlight (Cmd + Space) and search for "Pieces" — no results should appear
- Open Finder, press
Cmd + Shift + G, and check that~/Library/com.pieces.osno longer exists
Reinstalling
If you want to reinstall Pieces later, see the macOS installation guide for fresh install instructions.