ssrm

Crates.iossrm
lib.rsssrm
version1.0.0
created_at2026-01-25 18:13:40.93873+00
updated_at2026-01-25 18:13:40.93873+00
descriptionCLI tool to remove macOS screenshots and screen recordings
homepage
repositoryhttps://github.com/GriffinCanCode/ssrm
max_upload_size
id2069224
size45,426
Griffin (GriffinCanCode)

documentation

README

ssrm

CLI tool to remove macOS screenshots and screen recordings.

Installation

cargo install ssrm

Usage

# Remove screenshots from Desktop (default)
ssrm

# Remove from specific directory
ssrm ~/Downloads

# Include screen recordings
ssrm -v

# Preview without deleting (dry run)
ssrm -n

# Move to trash instead of permanent delete
ssrm -t

# Recursive search
ssrm -r

# Filter by date
ssrm --before 2024-06-01 --after 2024-01-01

# Skip confirmation
ssrm -y

Options

Flag Description
-n, --dry-run Preview files without removing
-t, --trash Move to trash instead of delete
-v, --videos Include screen recordings
-r, --recursive Search subdirectories
-y, --yes Skip confirmation prompt
-q, --quiet Suppress output
--verbose Show detailed output
--before DATE Only files before date (YYYY-MM-DD)
--after DATE Only files after date (YYYY-MM-DD)

Config File

Create ~/.config/ssrm.toml:

use_trash = true
include_videos = false
recursive = false
default_dir = "~/Desktop"

License

MIT

Commit count: 5

cargo fmt