Scroll to navigation

TuDu(1) User Manuals TuDu(1)

NAME

TuDu - A command-line tool to manage TODO lists hierarchically.

SYNOPSIS

tudu [-f tudu_file] [-c config_file] [-v[v]] [-h]

DESCRIPTION

TuDu is a commandline tool to manage hierarchical TODO lists, so that you can organize everything you have to do in a simple and efficient way. It does not use any database backend, but plain XML files.

Every TODO is composed by:

Status Currently only two options: Pending and Done.
Title A short sentence summarizing the task.
Description text A longer text providing more details. (Optional)
Priority The urgency of the task. (Optional)
Category A short tag such as @home, @work, @inet. (Optional)
Deadline The latest date the task should be done. (Optional)
Scheduled date The planned date to do the task. (Optional)
Subtasks Every task can have any number of subtasks. (Optional)

Tasks can be ordered by any of those fields, and categories can be used to show only some certain kinds of tasks. Tudu also warns when a deadline is approaching, and shows the percentage of the task done so far.

OPTIONS

-f tudu_file
Load the given tudu file
-c config-file
Load specific config file
Display the TuDu version number.
Display license and copyright information.
Display help.

INTERFACE

All the key bindings described here are the defaults in tudu. They can be changed in the config file.

Move the cursor one level out in the tree depth.
Move the cursor one level in in the tree depth.
Move the cursor to the next task.
Move the cursor to the previous task.
Move a task one position down.
Move a task one position up.
Mark a task as done.
Delete a task.
Remove the deadline of the task.
Remove the priority of the task.
Remove the scheduled date of the task.
Paste the last deleted task under the current cursor line.
Paste the last deleted task over the current cursor line.
Paste the last deleted task as a subtask of the currently selected task.
Add new task.
Add a new task over the current cursor line.
Edit the title of the task.
Edit the deadline.
Set the priority of the task.
Add or modify the category of the task.
Edit the description text of the task.
Scroll the text window upwards.
Scroll the text window downwards.
Edit the scheduled date of the task.
Scroll the schedule window upwards.
Scroll the schedule window downwards.
Collapse or expand the children of the current task.
Hide or show tasks marked as done.
/
Search for a pattern in tasks titles.
Search the next occurrence of last search.
Search the previous occurrence of the last searched tasks.
/
Search for a pattern in tasks titles.
Search the next occurrence of last search.
Search the previous occurrence of the last search.
:
Open the command input. See the COMMANDS section.
Sort by title.
Sort by title in reverse order.
Sort by done.
Sort by done in reverse order.
Sort by deadline.
Sort by deadline in reverse order.
Sort by priority.
Sort by priority in reverse order.
Sort by category.
Sort by category in reverse order.
Sort by user-defined order.
Sort by reversed user-defined order.
Sort by done.
Sort by done in reverse order.
Sort by deadline.
Sort by deadline in reverse order.
Sort by priority.
Sort by priority in reverse order.
Sort by category.
Sort by category in reverse order.
Sort by user.
Sort by user in reverse order.
Save all the changes.
?
Display the help.
Quit tudu saving the last changes.
Quit tudu without saving anything.

COMMANDS

Hide one or more categories.
Display one or more categories.
Display all the categories.
Hide all the categories except the ones given.
Display the man page.

CONFIG

The config file have several sections which start by a name between brackets, like [ general ]. Other config files can be included with the option:

@include = 'path'

The options of each section are:

general

Collapse the tasks by default.
Whether to hide tasks marked as done.
Whether to hide the percentage display on each task.
Toggle graphical tree. It shows marks, like (+) at the left of the tasks. It is necessary in some shells that can not display bold characters.
Hilight the parents with children with bold letters.
Whether to jump to the beginning (or end) when the end (or beginning) is reached.
How many days before the task is due will the deadline sport a warning remark. By default is 7.
Use US date format (mm/dd/yyyy), by default it uses dd/mm/yyyy.
Whether display or not past scheduled tasks on the scheduler. In case of yes the scheduled tasks for days already past will be displayed on warn color.
Location of the tudu xml to be load if no '-f' parameter is given. The path have to be a full path. If is not set ~/.tudu.xml will be use.
Default order in which tasks will be shown. Tasks are ordered by the 1st letter in the string, then by the 2nd, and so on.

The letters mean:

title
reverse title
done
reverse done
deadline
reverse deadline
category
reverse category
percentage done
reverse percentage done
user-defined order
reverse user-defined order

keys

This section defines any key binding on the program. See the example in the default config file.

theme

Window positions are described by rows; each row with the syntax:

row = [height]([width|]window[, [width|]window, ...])
The height and width can be the number of characters or a percentage followed by %. The possible windows are: help, tree, info, blank, vpipe, hpipe text, and schedule. The windows help, vpipe and info don't need to have height, neither hpipe needs to have width, because is predefined as 1. TuDu will try to guess the non given information.

Other options for the theme are:

Columns in tree window. The possible columns are: title, priority, category and deadline.
Number of characters to be displayed of the category.
The default colors for the text and background. If your terminal has support to change colora the colors can be defined as (r, g, b), where r, g and b are numbers from 0 to 1000, or with the words: black, red, green, yellow, blue, magenta, cyan, white, transparent.
For each window can be defined it's own colors. The colors of vpipe and hpipe are the same, and defined with the window name pipe.
Color for the items under the cursor.
Color for the warnings, like the mark of deadline soon or the color of the task scheduled on the past.

FILES

~/.tudurc
User configuration file.
/etc/tudurc
Global configuration file.
~/.tudu.xml
User default tudu.

NO WARRANTIES

This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.

SEE ALSO

TuDu Home Page: https://code.meskio.net/tudu/

AUTHOR

TuDu was written by Rubén Pollán Bella <meskio@sindominio.net>.

This manual page was written by Rubén Pollán Bella and further improved by Enrique Matías Sánchez.

January 9, 2010 Unix