mirror of
https://github.com/kdheepak/taskwarrior-tui.git
synced 2025-08-27 06:37:19 +02:00
67 lines
2.9 KiB
Markdown
67 lines
2.9 KiB
Markdown
# Taskwarrior TUI
|
|
|
|
[](https://github.com/kdheepak/taskwarrior-tui/actions?query=workflow%3ACI)
|
|
[](./LICENSE)
|
|
[](https://github.com/kdheepak/taskwarrior-tui/releases/latest)
|
|
[](https://github.com/kdheepak/taskwarrior-tui/releases/latest)
|
|
|
|
A Terminal User Interface for [Taskwarrior](https://taskwarrior.org/).
|
|
|
|

|
|
|
|
## Installation
|
|
|
|
You will need to install `taskwarrior` first. See <https://taskwarrior.org/download/> for more information.
|
|
|
|
**Manual**
|
|
|
|
1. Download the tar.gz file for your OS from [the latest release](https://github.com/kdheepak/taskwarrior-tui/releases/latest).
|
|
2. Unzip the tar.gz file
|
|
3. Run with `./taskwarrior-tui`.
|
|
|
|
**Using [`zdharma/zinit`](https://github.com/zdharma/zinit)**
|
|
|
|
Add the following to your `~/.zshrc`:
|
|
|
|
```zsh
|
|
zinit ice wait:2 lucid extract"" from"gh-r" as"command" mv"taskwarrior-tui* -> tt"
|
|
zinit load kdheepak/taskwarrior-tui
|
|
```
|
|
|
|
**Using `cargo`**
|
|
|
|
```
|
|
git clone https://github.com/kdheepak/taskwarrior-tui.git
|
|
cd taskwarrior-tui
|
|
cargo build --release
|
|
```
|
|
|
|
**Using `AUR`**
|
|
|
|
Use your favorite installation method to download the [AUR package](https://aur.archlinux.org/packages/taskwarrior-tui-git/) maintained by [**@loki7990**](https://github.com/loki7990).
|
|
|
|
## Usage
|
|
|
|
- `/`: `task {string}` - Filter task report
|
|
- `a`: `task add {string}` - Add new task
|
|
- `d`: `task {selected} done` - Mark task as done
|
|
- `e`: `task {selected} edit` - Open selected task in editor
|
|
- `j`: `{selected+=1}` - Move down in task report
|
|
- `k`: `{selected-=1}` - Move up in task report
|
|
- `l`: `task log {string}` - Log new task
|
|
- `m`: `task {selected} modify {string}` - Modify selected task
|
|
- `q`: `exit` - Quit
|
|
- `s`: `task {selected} start/stop` - Toggle start and stop
|
|
- `u`: `task undo` - Undo
|
|
- `x`: `task delete {selected}` - Delete
|
|
- `A`: `task {selected} annotate {string}` - Annotate current task
|
|
- `?`: `help` - Help menu
|
|
- `!`: `{string}` - Custom shell command
|
|
|
|

|
|
|
|
## Thanks
|
|
|
|
- [taskwarrior](https://github.com/GothenburgBitFactory/taskwarrior)
|
|
- [tui-rs](https://github.com/fdehau/tui-rs)
|
|
- [task-hookrs](https://github.com/matthiasbeyer/task-hookrs)
|