Displays / manages the tasks in ~/tasks.md
, or from the file pointed by $TAX_FILE
if set.
Tasks are markdown:
```markdown
tax is meant to offer basic operations to handle a task list from the CLI, optionally displaying the tasks one at a time on your bash prompt and your tmux status line.
Displays the current list of open tasks.
Displays the first open task of the list.
Meant to be included in prompt or tmux status.
Picks one open task from the list and display it. The picked task changes every minute.
Meant to be included in prompt or tmux status.
Alias: tax view
.
Displays the content of the taxfile without any processing.
Checks/Unchecks the task corresponding to the given number $TASK_NUM
.
Focuses/Blurs the task corresponding to the given number $TASK_NUM
.
A focused task is a bold task in markdown formatting.
Ex:
markdown
- [ ] **This is a focused task**
Focused tasks will be displayed with priority over non focused tasks by the tax current
and tax cycle
commands.
Aliases: tax push
, tax prepend
.
Adds the given task on top of the first task of the list.
Appends the given task after the last task of the list.
Removes all checked tasks from the task list.
Opens the current task file in $EDITOR
.
Tells which tasks file is currently in use. Useful for scripting.
Building and installing requires Rust: https://www.rust-lang.org/tools/install
sh
cargo install tax
```sh
```
Then, to display the current task in your bash prompt:
```sh export PS1='= $(tax current)
' ```
Replace tax current
with tax cycle
for the displayed task to change every minute.
In your tmux.conf
, for instance:
sh
set -g status-right '[...your status config...] #(/path/to/tax cycle)'
If tax is running in the context of a TTY, it will emit ANSI escape sequences to display focused tasks in bold font, instead of markdown bold markup.
If tax is not running in a TTY (for instance, in a shell $PS1
), emitting ANSI escape sequences can be forced by setting the environment variable CLICOLOR_FORCE=1
.
You can disable all ANSI escape sequences by setting the environment variable NO_COLOR=1
.
Note: tmux status line does not interpret ANSI escape sequences (not a TTY).
If $TAX_CHANGE_CMD
is set in the environment and contains a valid command, tax will execute it as a sh
command after every change it makes to your task file.
tax exposes a set of environment variables to $TAX_CHANGE_CMD
to provide information about the change.
For all tax commands:
$TAX_FILE
: the absolute path of the changed tasks file$TAX_FILE_FOLDER
: the absolute path of the folder containing the tasks file$TAX_CMD
: the command that applied the change; one of add
, check
, edit
, focus
, prune
$TAX_OPERATION
: the operation applied to the file; one of APPEND
, PREPEND
, CHECK
, UNCHECK
, EDIT
, FOCUS
, BLUR
, PRUNE
$TAX_MESSAGE
: a human-readable description of the change, include the task name if availableFor commands add, check, uncheck, focus, blur (post-change values)
$TAX_TASK_NUM
: the number of the changed task in the task list (1-indexed)$TAX_TASK_NAME
: the name of the changed task$TAX_TASK_PLAIN_NAME
: the plain name of the changed task (without focus markup if present)$TAX_TASK_LINE
: the complete markdown line of the changed task$TAX_TASK_LINE_NUM
: the line number of the changed task$TAX_TASK_CHECKED
: 1
if the task is completed, 0
otherwise$TAX_TASK_FOCUSED
: 1
if the task is focused, 0
otherwiseI use it to version my task file using this command:
sh
export TAX_CHANGE_CMD='git -C "$TAX_TAXFILE_FOLDER" commit -am "$TAX_MESSAGE"'
See LICENSE.md