Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/u8slvn/hyperfocus
📝 Minimalist daily task manager.
https://github.com/u8slvn/hyperfocus
cli command-line-app productivity python task-list todo todo-list todolist
Last synced: 9 days ago
JSON representation
📝 Minimalist daily task manager.
- Host: GitHub
- URL: https://github.com/u8slvn/hyperfocus
- Owner: u8slvn
- License: mit
- Created: 2022-02-08T21:20:41.000Z (almost 3 years ago)
- Default Branch: main
- Last Pushed: 2024-09-11T07:55:51.000Z (2 months ago)
- Last Synced: 2024-10-06T07:17:01.498Z (about 2 months ago)
- Topics: cli, command-line-app, productivity, python, task-list, todo, todo-list, todolist
- Language: Python
- Homepage: https://hyperfocus.readthedocs.io
- Size: 425 KB
- Stars: 8
- Watchers: 3
- Forks: 3
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
README
---
**HyperFocus** is a minimalist CLI daily tasks manager that helps you stay focused on your work by avoiding distractions.
## 📜 Philosophy
You won't anticipate more than your daily goal with **HyperFocus**. No tasks prepared for the next week or month. The workflow is designed around the idea that, on a daily basis, you will review each unfinished tasks from the past day and choose whether you want to add it to the daily tasks. You are then able to prepare all your tasks for the day and update them to follow your work. The intention is to avoid overwhelming yourself and focus only on what you have prepared to do, for you and only you.
## 🚀 Quickstart
### Installation
The library [pipx](https://pypa.github.io/pipx/) allows to install and run Python applications in isolated environments so it does not mess around with your local installed library versions by keeping your local machine clean even after an uninstallation.
```bash
pipx install hyperfocus
```Test your installation:
```bash
hyf --version
```### Initialization
In order to work properly, **HyperFocus** needs to initialize a database and a configuration file. Both are generated into your home directory, unless you specified another location.
```bash
hyf init
```### Example Usage
Add a new task:
```bash
hyf add "Implement the new super feature"
```Add a new task with details:
```bash
hyf add "Read the great article about Python" -d "https://python-article.com"
```Follow your daily tasks:
```bash
hyf status
```or:
```bash
hyf
```Find more information about all the commands in the documentation: [hyperfocus.readthedocs.io](https://hyperfocus.readthedocs.io)