Files
empeve/src/lib.rs
vikingowl b4ae635464 Add browse command with curated popular mpv scripts catalog
- Add src/catalog.rs with 15+ popular mpv scripts organized by category
- Categories: UI/OSC, Playback, Subtitles, Media, Utility
- Add 'browse' command to display catalog with descriptions
- Support category filtering (e.g., 'mpv-mgr browse ui')
- Mark already-configured repos with checkmark indicator
- Include custom repo: somegit.dev/anonfunc/mpv-scripts

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2025-12-15 00:38:31 +01:00

10 lines
136 B
Rust

pub mod catalog;
pub mod cli;
pub mod commands;
pub mod config;
pub mod error;
pub mod paths;
pub mod repo;
pub mod script;
pub mod ui;