Clean RAM, wipe caches, and snipe the bloated files you forgot you had — all from a snappy keyboard-driven TUI.
> /snipe_
────────────────────────────────────────────────────────────
SNIPER — 12 groups ↑↓:navigate SPACE:select A:all ESC:back
────────────────────────────────────────────────────────────
[x] [DMG] DMG Installers 2.4 GB │ iOS Backups
[ ] [XCD] Xcode DerivedData 18.1 GB │ ─────────────────
[x] [OLD] Old Downloads (60d+) 910 MB │ iPhone — Mathieu 7.2 GB
[ ] [BCK] iOS Backups 7.2 GB │ iPad — Studio 4.0 GB
────────────────────────────────────────────────────────────
CPU[███░░░░░░░]28% RAM[██████░░░░]61% SSD 412/994GB
- 🧹 One-shot cleanup — free inactive RAM and wipe caches/logs in a single command.
- 🎯 Smart file sniper —
/snipescans your system for the heavy stuff you probably don't need (stale downloads, disk images, build artifacts, simulators, backups) and groups them so you can select a whole group and delete it at once. - 📊 Live system bars — CPU, RAM and disk usage update in real time, color-coded green → yellow → red.
- 🔍 Disk breakdown —
/scanshows where your space actually went, with inline bars. - 🧠 Top processes —
/toplists the biggest memory hogs. - ⌨️ Pure keyboard TUI — tab-completion, command history, arrow-key navigation, plus mouse click support where the terminal allows it.
- 🎨 Hot-reloadable config — colors, command names and bar glyphs live in a JSON file that reloads while running.
- 🖥️ Cross-platform — one codebase, native system APIs on each OS.
curl -fsSL https://raw.githubusercontent.com/MathieuDvv/Blimp-cli/main/install.sh | bashThis grabs the prebuilt binary for your OS/arch from the latest release
(macOS ships a universal arm64 + x86_64 binary; Linux ships x86_64 and arm64),
verifies its checksum, and installs to /usr/local/bin or ~/.local/bin. If no
prebuilt binary matches your platform it falls back to building from source.
Pin a version or install dir with env vars:
BLIMP_VERSION=v1.0.0 BLIMP_INSTALL=~/bin \
curl -fsSL https://raw.githubusercontent.com/MathieuDvv/Blimp-cli/main/install.sh | bashGrab the tarball for your platform from the
Releases page, extract,
and drop blimp on your PATH. Windows users: download blimp.exe.
Requires Swift 5.9+.
git clone https://github.com/MathieuDvv/Blimp-cli.git
cd Blimp-cli
swift build -c release
cp .build/release/blimp ~/.local/bin/blimp # ensure ~/.local/bin is on $PATHThen just run:
blimp| Command | Description |
|---|---|
/clean |
Full sweep — free RAM and wipe caches/logs |
/clean ram |
Purge inactive memory pages |
/clean cache |
Wipe caches & logs (platform-aware targets) |
/snipe |
Interactive large-file sniper (see below) |
/scan |
Disk-usage breakdown with bars |
/top |
Top processes by memory |
/trash |
Empty the Trash / Recycle Bin |
/brew |
Run brew cleanup --prune=all (macOS/Linux) |
/config |
Open the hot-reloadable config file |
/help |
Show the command matrix |
/quit |
Exit (or press Esc / Ctrl-C) |
| Command | Description |
|---|---|
/xcode |
Nuke Xcode DerivedData |
/apps |
List all applications |
/apps installed |
List user-installed (non-Apple) apps |
/uninstall <name> |
Deep-uninstall an app and its support/cache files |
/ui |
Launch the companion menu-bar UI |
/ui autostart |
Toggle launch-at-login for the menu-bar UI |
/ui quit |
Dismiss the menu-bar UI |
/snipe is the headline feature. It scans for the categories of files that
quietly eat your disk, groups them, and lets you delete entire groups in
one keystroke.
SPACE toggle the highlighted group
↑ / ↓ move between groups
A select / deselect all
ENTER delete selected groups (asks for confirmation)
ESC back out
The right pane previews every file in the highlighted group with its size, so you always see exactly what's about to go.
What it hunts for:
| Everywhere | macOS | Linux | Windows |
|---|---|---|---|
Archives (.zip, .tar, …) |
DMG & PKG installers | npm / yarn / pip / gradle / cargo cache | %TEMP% |
| Old downloads (60+ days) | Xcode DerivedData & Archives | Go module cache | npm / pip / yarn caches |
| Large videos (>100 MB) | iOS Simulators & Backups | Big ~/.cache dirs (>50 MB) |
gradle / maven repos |
| Homebrew cache, logs, Trash | Trash, your /tmp files |
Deletions try a permanent
rmfirst and fall back to moving items to the Trash if that fails. Always glance at the preview pane before hitting Enter.
Blimp talks to each OS through its native APIs — no shelling out for stats:
| Subsystem | macOS | Linux | Windows |
|---|---|---|---|
| Memory | Mach vm_statistics64 |
/proc/meminfo |
GlobalMemoryStatusEx |
| CPU | host_cpu_load_info |
/proc/stat |
GetSystemTimes |
| Terminal | POSIX termios / poll |
POSIX termios / poll |
WinSDK console + VT sequences |
| Disk | Foundation volume keys | Foundation volume keys | Foundation volume keys |
All OS-specific paths (home, cache, logs, temp, trash) are centralized in
Platform.swift, and platform-only commands are compiled out where they don't
apply.
On first run Blimp writes a config file you can edit live:
~/.config/blimp/config.json
It's hot-reloaded — save the file and the TUI updates instantly. You can remap command strings, change the ANSI colors, and swap the progress-bar glyphs:
{
"colors": {
"topBarBg": "#1a1a2e",
"accent": "#4f8ef7"
},
"misc": {
"barFill": "█",
"barEmpty": "░"
}
}Run /config inside Blimp to open it directly.
Sources/blimp/
├── blimp.swift # Entry point, TUI loop, command routing, rendering
├── Platform.swift # Cross-platform paths & OS detection
├── Terminal.swift # Raw mode, key input, window size (per-OS)
├── SystemMonitor.swift # RAM / CPU / storage stats & clean actions (per-OS)
├── DiskAnalyzer.swift # Snipe groups & disk-usage scanning (per-OS)
└── AppManager.swift # App listing & deep uninstall (macOS-only)
MIT — see LICENSE.