https://github.com/thepuzzlemaker/task-list
A simple Rust program to track tasks to do regularly. It does not save completed tasks.
https://github.com/thepuzzlemaker/task-list
Last synced: about 1 year ago
JSON representation
A simple Rust program to track tasks to do regularly. It does not save completed tasks.
- Host: GitHub
- URL: https://github.com/thepuzzlemaker/task-list
- Owner: ThePuzzlemaker
- Created: 2020-03-09T20:52:22.000Z (about 6 years ago)
- Default Branch: master
- Last Pushed: 2023-05-01T11:59:42.000Z (about 3 years ago)
- Last Synced: 2025-01-29T16:12:23.779Z (over 1 year ago)
- Language: Rust
- Size: 20.5 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# task-list
A simple program to track tasks to do regularly. It does not save completed tasks.
Put a list of tasks (separated by newlines) in `~/.task-list` on Linux/Mac/*nix or `C:\Users\\.task-list` on Windows.
For example, this file will display "Some task 1" and "Some task 2" as needing to be completed when the program is run:
```
Some task 1
Some task 2
```