Modern CLI task manager with priorities, deadlines and desktop notifications
Powerful command-line task management with priorities, deadlines, system notifications, and a beautiful colorful interface.
Modern Task Management: CLI ToDo Manager is a powerful command-line task management application with support for priorities, deadlines, system notifications, and a beautiful colorful interface.
⚡ MAIN MENU ⚡ ──────────────────────────────────────────────────────── 1. 📋 List Tasks - View active tasks 2. 📚 All Tasks - View all tasks (including completed) 3. ➕ Create Task - Add new task 4. ✏️ Edit Task - Modify existing task 5. ✅ Complete Task - Mark task as done 6. 🗑️ Delete Task - Remove task 7. 📊 Statistics - View task statistics 8. 🖥️ Create Shortcut - Create desktop shortcut 9. ℹ️ About - Show application information 10. ❓ Help - Show help and documentation 11. 🌐 GitHub - Open GitHub repository ──────────────────────────────────────────────────────── 0. 🚪 Exit - Quit application
Creating a Task
📝 Task name (can include emojis): Complete project 🚀 📄 Description (optional): Finish CLI ToDo Manager by the end of the week 🎯 Select priority: 1. 🟢 Low 2. 🟡 Medium 3. 🔴 Critical Choice: 3 ⏰ Add deadline? (y/n): y 📅 Deadline (YYYY-MM-DD HH:MM): 2026-04-30 10:00
Task Management
| Color | Meaning |
|---|---|
| 🟢 Green | Low priority / Completed |
| 🟡 Yellow | Medium priority / Deadline soon |
| 🔴 Red | Critical priority / Overdue |
| 🔵 Cyan | Information / Headers |
| ⚪ White | Normal deadline (>1 day left) |
| 🟡 Yellow | Deadline ≤ 1 day |
| 🔴 Red | Overdue deadline |
The application automatically monitors deadlines and sends system notifications:
Notifications are grouped by type to prevent sound spam when multiple tasks are due.
# Clone the repository git clone https://github.com/aixandrolab/cli-todo-manager.git cd cli-todo-manager # Run the application python app.py
System Requirements
Install dependencies on Ubuntu/Debian:
sudo apt install python3 libnotify-bin sound-theme-freedesktop
cli-todo-manager/ ├── core/ │ ├── database/ # Database operations │ │ └── db_manager.py │ ├── models/ # Data models │ │ └── todo.py │ ├── ui/ # User interface │ │ ├── ascii_art.py │ │ ├── colors.py │ │ └── menu.py │ └── utils/ # Utilities │ ├── config.py │ ├── desktop_entry.py │ └── notifications.py ├── data/ │ └── icons/ # Application icons │ └── icon.png ├── app.py # Entry point └── README.md # Documentation