惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

U
Unit 42
Microsoft Azure Blog
Microsoft Azure Blog
Engineering at Meta
Engineering at Meta
博客园 - 【当耐特】
人人都是产品经理
人人都是产品经理
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
WordPress大学
WordPress大学
有赞技术团队
有赞技术团队
Blog — PlanetScale
Blog — PlanetScale
酷 壳 – CoolShell
酷 壳 – CoolShell
aimingoo的专栏
aimingoo的专栏
Jina AI
Jina AI
小众软件
小众软件
博客园 - 叶小钗
MongoDB | Blog
MongoDB | Blog
大猫的无限游戏
大猫的无限游戏
博客园 - 聂微东
Y
Y Combinator Blog
云风的 BLOG
云风的 BLOG
I
InfoQ
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
Martin Fowler
Martin Fowler
P
Proofpoint News Feed
MyScale Blog
MyScale Blog

DEV Community

Authentication Security Deep Dive: From Brute Force to Salted Hashing (With Java Examples) Why AI Systems Don’t Fail — They Drift Spilling beans for how i learn for exam😁"Reinforcement Learning Cheat Sheet" I Replaced Chrome with Safari for AI Browser Automation. Here's What Broke (and What Finally Worked) How Python Borrows Other People's Work The $40 Architecture: Processing 1 Billion API Requests with 99.99% Uptime Vibe Coding: A Workflow Guide (From Zero to SaaS) Most webhook security guides protect the wrong side. The scary part is delivery. Headless CMS for TanStack Start: Build a Blog with Cosmic EU Age Verification App "Hacked in 2 Minutes" — What Actually Happened Comfy Cloud’s delete function does not actually remove files Running AI Models on GPU Cloud Servers: A Beginner Guide Event-driven media intelligence with AWS Step Functions and Bedrock I scored 500 AI prompts across 8 quality dimensions — here's what broke How to Call Google Gemini API from Next.js (Free Tier, No Backend Needed) The Portal Protocol: Reclaiming Human Connection in the Age of AI How to Fix Your Team's Scattered Knowledge Problem With a Self-Hosted Forum Intro to tc Cloud Functors: A Graph-First Mental Model for the Modern Cloud Designing Multi-Tenant Backends With Both Ownership and Team Access I Built a Neumorphic CSS Library with 77+ Components — Here's What I Learned PostgreSQL Performance Optimization: Why Connection Pooling Is Critical at Scale Cómo construí un SaaS multi-rubro para gestionar expensas en Argentina con FastAPI + Vue 3 🚀 I Built an Ethical Hacking Scanner Tool – Open Source Project I Replaced /usage and /context in Claude Code With a Single Statusline A Pythonic Way to Handle Emails (IMAP/SMTP) with Auto-Discovery and AI-Ready Design I Collected 8.9 Million Polymarket Price Points — Here's What I Found About How Markets Really Move EcoTrack AI — Carbon Footprint Tracker & Dashboard Everyone's Using AI. No One Agrees How. 5 self-hosted ebook managers worth trying in 2026 Building Your First AI Agent with LangChain: From Chatbot to Autonomous Assistant
I built a silent, privacy-first file organizer that lives...
Krystian · 2026-05-10 · via DEV Community
Cover image for I built a silent, privacy-first file organizer that lives in your system tray and sorts your Downloads folder automatically

Krystian

I don't know about you, but my Downloads folder has always been a disaster zone. PDFs next to memes, installers tangled with family photos, zip files from six months ago still sitting there unopened. Every few weeks I'd open it, sigh, and spend ten minutes manually dragging things into folders. Then two days later it'd be chaos again.

So I built Mouzi — a tiny desktop app that watches your Downloads folder and automatically sorts every file by type into the right subfolder. All while living silently in your system tray.

🤔 The Problem

Let's be honest — we all download files constantly:

  • That one PDF invoice you need for taxes
  • A Zoom installer for tomorrow's meeting
  • Screenshots from the last debugging session
  • The .zip someone sent you on Slack three months ago

They all land in the same flat folder. Finding a specific file becomes a hunt. The Downloads folder becomes a digital black hole.

✨ The Solution

Mouzi in action

Mouzi sits in your system tray and monitors your Downloads folder for new files. When something appears, it moves it to the appropriate subfolder based on its extension:

File Type Extensions Target Folder
Images .jpg, .png, .gif, .webp Downloads/Images/
Documents .pdf, .docx, .xlsx Downloads/Documents/
Archives .zip, .rar, .7z Downloads/Archives/
Installers .exe, .msi, .dmg Downloads/Installers/

No popups, no notifications, no interruptions. It just works.

🛠️ Use Case: My Real-Life Workflow

Here's how Mouzi actually fits into my day:

  1. Client sends a contract as PDF → lands in Downloads
  2. Mouzi moves it to Downloads/Documents/
  3. I download a logo asset as PNG → lands in Downloads/Images/
  4. I grab a new tool as .exe → lands in Downloads/Installers/

I don't think about it. I just know where my files are. When I need that contract, I know it's in Documents. When I need that logo, it's in Images. No manual sorting, no mental overhead.

🧠 Key Features

  • 100% Local & Private — Your file names and contents never leave your machine. No cloud, no telemetry, no tracking. Period.
  • Open Source (MIT) — The full code is on GitHub. You can audit every line, fork it, modify it, build it yourself.
  • Silent System Tray Operation — Runs in the background, completely invisible until you need it.
  • Undo Any Action — Every file move is logged in the History tab. Undo with one click if something goes wrong.
  • Custom Rules Engine — Coming soon: define your own sorting rules by extension, name pattern, size, or date. Dynamic placeholders like {year} or {month} will let you build powerful, automated folder structures.
  • Multi-Folder Support — Watch more than just Downloads. Point Mouzi at any folder and it'll apply your rules there too.

⚙️ Tech Stack

Layer Technology
Desktop Framework Tauri v2
Backend Rust
Frontend React 19 + TypeScript
Build Tool Vite
Styling Tailwind CSS
System Tray tauri-plugin-tray

Why Tauri instead of Electron?

  • Bundle size: ~5 MB vs 100+ MB
  • Memory: Uses the system WebView, not a bundled Chromium
  • Rust backend: Native performance for file system operations
  • Security: Minimal attack surface, explicit permissions model

🔒 Privacy Philosophy

I built Mouzi because I couldn't find a file organizer that didn't want to upload my file names to some cloud or charge a subscription. Mouzi is built on three principles:

  1. Local-first — everything runs on your machine
  2. Open source — transparent and auditable
  3. Zero friction — no accounts, no paywalls, no features locked behind payments

📥 Try It

Mouzi is free forever. If it saves you time and you want to support ongoing development, you can buy me a coffee on Ko-fi.

🚧 What's Next

This is an early beta. I'm actively working on:

  • Custom rules engine with pattern matching
  • Scheduled folder cleanup for Downloads older than N days
  • Dark mode
  • Native Acrylic/Mica effects on Windows
  • macOS and Linux builds

🙏 Feedback Welcome

I'd love honest feedback — bugs, feature ideas, code reviews, everything. I'm a self-taught dev and this is a project I genuinely use daily. If Mouzi could help you too, I'd be thrilled.

Drop a comment below, star or open an issue on GitHub, or reach out directly. Thanks for reading!