A minimalist, high-contrast, color-coded task list script designed to integrate perfectly with custom terminal environments and minimalist tiling desktop environments.
- No Quotes Required: Seamlessly add items by passing plain text.
- Color Output Profiles: Built-in high contrast ANSI coloring matching dark colorschemes.
- Line Targeted Actions: Drop or delete rows instantly using line coordinates.
git clone https://github.com/fifthv5/Ntodo.git
cd Ntodo
chmod +x install.sh
./install.sh# Add an entry directly without string quotes
todo build a system fetch tool
# Shows the help menu
todo
# List all tasks
todo --list
# Delete task number 1
todo -d:1
# Empty the file
todo --clear
# Open the interactive tui interface
todo --tui
# Show the version
todo --versionNim Todo Manager
Usage:
todo [options] [task description]
Options:
-h, --help Display this help message
-v, --version Display the current version
-l, --list List all current tasks
-c, --clear Clear the entire todo list
-t, --tui Open interactive TUI dashboard mode
-d, --delete:NUM Delete a task by its line number (e.g., -d:2)