| Crates.io | judo |
| lib.rs | judo |
| version | 1.1.3 |
| created_at | 2025-08-24 16:46:10.688464+00 |
| updated_at | 2025-09-22 16:05:24.675397+00 |
| description | Judo - TUI for ToDo lists |
| homepage | https://github.com/giacomopiccinini/judo |
| repository | https://github.com/giacomopiccinini/judo |
| max_upload_size | |
| id | 1808606 |
| size | 246,237 |
██╗██╗ ██╗██████╗ ██████╗
██║██║ ██║██╔══██╗██╔═══██╗
██║██║ ██║██║ ██║██║ ██║
██ ██║██║ ██║██║ ██║██║ ██║
╚█████╔╝╚██████╔╝██████╔╝╚██████╔╝
╚════╝ ╚═════╝ ╚═════╝ ╚═════╝
A terminal-based todo list application.

Judo (Just Do It) is a simple TUI for managing todo lists. You can create multiple lists, add items to them, mark items as complete, and delete items or entire lists when you're done.
The interface shows your lists on the left side and the items from the selected list on the right side. You can manage multiple databases, switch between them, and create new ones on the fly. All your data is saved locally on your computer, so your todos persist between sessions.
Q: Who needs yet another todo app?
A: No one, really.
Q: Then why did you create Judo in the first place?
A: I am often having conversations in Slack, taking notes on todo's and sending them to my private channel. Which looks embarassing, actually. So, there you go. Plus, I wanted to understand how to work with TUIs.
Q: Why Rust?
A: No particular reason other than I wanted to familiarise more with it. No one cares about "blazing fast" performance for such a simple app.
Install Judo using Cargo:
cargo install judo
Then run it with:
judo
When you start Judo, you'll see the main interface with two panels:
Navigate between lists and items using the keyboard. You can switch between different databases, create new ones, and manage your todos across multiple databases. All changes are automatically saved to your local database.
| Key | Action |
|---|---|
w |
Move up in lists |
s |
Move down in lists |
↑ |
Move up in items |
↓ |
Move down in items |
← |
Deselect current item |
→ |
Select first item in list |
| Key | Action |
|---|---|
A |
Add new list |
a |
Add new item to selected list |
M |
Modify selected list |
m |
Modify selected item |
D |
Delete selected list |
d |
Delete selected item |
C |
Change/switch database |
Enter |
Toggle item completion status |
Ctrl + w |
Move list up in ordering |
Ctrl + s |
Move list down in ordering |
Ctrl + ↑ |
Move item up in ordering |
Ctrl + ↓ |
Move item down in ordering |
q |
Quit application |
| Key | Action |
|---|---|
↑ |
Move up in database list |
↓ |
Move down in database list |
Enter |
Switch to selected database |
A |
Add new database |
S |
Set selected database as default |
Esc |
Return to main screen |
| Key | Action |
|---|---|
Enter |
Save and return to previous screen |
Esc |
Cancel and return to previous screen |
Backspace |
Delete last character |
Delete |
Delete character after cursor |
← |
Move cursor left |
→ |
Move cursor right |
Judo uses a configuration file to manage multiple databases. The configuration is stored in:
~/.config/judo/judo.toml%APPDATA%\judo\judo.tomlThe configuration file is automatically created on first run with a default database. You can add new databases through the UI or manually edit the configuration file. The default database is called "dojo".
default = "dojo"
[[dbs]]
name = "dojo"
connection_str = "sqlite:/path/to/data/judo.db"
[[dbs]]
name = "work"
connection_str = "sqlite:/path/to/data/work.db"
[[dbs]]
name = "personal"
connection_str = "sqlite:/path/to/data/personal.db"
Your todo lists and items are stored in local SQLite databases on your computer. This means:
The databases and configuration are created automatically when you first run the application. Database files are stored in:
~/.local/share/judo/%APPDATA%\judo\