ugly todo

Create tasks and save notes offline from your terminal!

This is a port/readaptation of Ugly To-Do with additional features

License Status Language
License License License

Demo

Installation

You need to install the rustup package, which provides cargo. Check your package manager for availability. If it's unavailable, you can get the latest stable version of rustup by running:

sh curl https://sh.rustup.rs -sSf | sh

Next, you need to clone the repository:

sh git clone https://github.com/kawaki-san/ugly-todo-rs.git && cd ugly-todo-rs

Then you can build the binary:

sh cargo build --release

When that's done, you can find the utd binary in the target/release directory. You may want to copy it to a directory in your $PATH.

Start with shell

bash

sh echo "utd" >> ~/.bashrc

zsh

sh echo "utd" >> ~/.zshrc

fish

fish function fish_greeting utd end funcsave fish_greeting

Usage

Add task(s) with priorities:

sh utd -a "My first task" "My second task" "Check issues @Git" -n "Update license" -p low -p low -p high

This adds 3 tasks with custom priorities to your board (default priority is normal).

Priorities are mapped respectively to their tasks and notes - with tasks taking precedence i.e - If you set 3 tasks and 2 notes; then you pass 4 priorities - the tasks will take the first 3 priorities, the first note will have a custom priority, but the last one will use the default - normal

Run utd -h to view help.

Customising

utd reads a config.toml file from your $XDG_CONFIG_HOME which you may use to customise the interface.