Enhanced terminal commands.
hcmd is a Rust-based CLI tool that provides enhanced terminal utilities including:
- Pomodoro Timer - Create, manage, and run customizable timer sessions
- File Discovery (fd) - Interactive TUI-based fuzzy file finder with preview
# Create a quick timer (duration in minutes)
hcmd pomo create --name "Focus" --duration 25
# Add a timer to storage
hcmd pomo add --name "Break" --duration 5
# Run a stored timer by name
hcmd pomo run --name "Focus"
# List all stored timers
hcmd pomo list
# Remove a stored timer by name
hcmd pomo remove --name "Focus"
# Remove all stored timers
hcmd pomo nuke# Launch interactive file browser
hcmd fdKeybindings in fd:
j/k- Navigate up/downEnter- Toggle selectiona- Create new file/directoryr- Renamed- Deleteq- Quit
# Build the project
cargo build
# Run in development
cargo run
# Build release version
cargo build --release
# Install using cargo (requires Rust installed)
cargo install --git https://github.com/yourusername/hcmd.git