https://github.com/decodingchris/tasknow
Focus on one task at a time with this simple terminal to-do app.
https://github.com/decodingchris/tasknow
cli focus productivity python task-manager terminal todo
Last synced: about 2 months ago
JSON representation
Focus on one task at a time with this simple terminal to-do app.
- Host: GitHub
- URL: https://github.com/decodingchris/tasknow
- Owner: decodingchris
- Created: 2025-04-07T16:57:41.000Z (about 2 months ago)
- Default Branch: main
- Last Pushed: 2025-04-07T18:26:57.000Z (about 2 months ago)
- Last Synced: 2025-04-07T18:29:13.050Z (about 2 months ago)
- Topics: cli, focus, productivity, python, task-manager, terminal, todo
- Language: Python
- Homepage:
- Size: 12.7 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# TaskNow
A super simple terminal to-do app that helps you focus on one task at a time.
[](https://pypi.org/project/tasknow/)
[](https://opensource.org/licenses/MIT)---
## Why use TaskNow?
- **Stay focused:** See just your current task by default
- **Minimalist & distraction-free:** No accounts, no clutter — just your tasks
- **Full control:** Add, complete, edit, and manage tasks easily from the terminal
- **Simple commands:** Intuitive CLI interface
- **Lightweight:** Python-based with JSON storage, works seamlessly on Linux---
## Requirements
- **Python 3.10 or higher**
- Compatible with Ubuntu/Linux systems---
## Installation
Install TaskNow directly from PyPI:
```bash
pip install tasknow
```---
## Quick Start
Add a task:
```bash
tasknow add "Write report"
```See your current task:
```bash
tasknow
```Mark it done:
```bash
tasknow done
```List all tasks:
```bash
tasknow list
```Remove a task:
```bash
tasknow remove 3
```Show completed tasks:
```bash
tasknow completed
```Un-complete a task:
```bash
tasknow undone 3
```Edit a task:
```bash
tasknow edit 2 "New task description"
```---
For more commands and details, see the full documentation or run:
```bash
tasknow --help
```---
## Links
- **PyPI:** [https://pypi.org/project/tasknow/](https://pypi.org/project/tasknow/)
- **Source Code:** [https://github.com/decodingchris/tasknow](https://github.com/decodingchris/tasknow)
- **Issue Tracker:** [https://github.com/decodingchris/tasknow/issues](https://github.com/decodingchris/tasknow/issues)---
## License
This project is licensed under the **MIT License**. See the [LICENSE](https://opensource.org/licenses/MIT) file for details.
---
MIT License © Decoding Chris