Manage your todo lists in the CLI.
brew tap unfunco/tap
brew install tAdd an item to the general todo list:
t "Do something"Add an item to today's todo list:
t "Do something today" --todayAdd an item to tomorrow's todo list:
t "Do something tomorrow" --tomorrowOpen the TUI:
tThemes can now adapt to both light and dark terminals. By default t uses
mode: "auto" and switches palettes based on the detected background colour.
You can force either palette or customise the colours by editing config.json
in your config directory (typically ~/.config/t/config.json):
{
"theme": {
"mode": "auto",
"dark": {
"text": "#FFFFFF",
"muted": "#696969",
"highlight": "#58C5C7",
"success": "#99CC00",
"worry": "#FF7676"
},
"light": {
"text": "#121417",
"muted": "#61646B",
"highlight": "#205CBE",
"success": "#007A3B",
"worry": "#C62828"
}
}
}Set "mode": "dark" or "mode": "light" to lock the palette regardless of
background detection.
- Go 1.25+
Clone the repository and navigate to the t directory.
git clone git@github.com:unfunco/t.git
cd tgo buildPlay with some test data:
mkdir testdata/t
cp testdata/*.json testdata/t/
XDG_DATA_HOME="$PWD/testdata" XDG_CONFIG_HOME="$PWD/testdata" ./tcp testdata/*.json testdata/t
PATH="$PWD:$PATH" vhs demo.tape© 2025 Daniel Morris
Made available under the terms of the MIT License.
