td is a To-do TUI app written in golang
brew tap voioo/homebrew-tap
brew install td-tui
Manual Installation
# For Apple Silicon Macs:
curl -LO https://github.com/voioo/td/releases/latest/download/td_darwin_arm64.tar.gz
sudo tar xf td_darwin_arm64.tar.gz -C /usr/local/bin td
# For Intel Macs:
curl -LO https://github.com/voioo/td/releases/latest/download/td_darwin_amd64.tar.gz
sudo tar xf td_darwin_amd64.tar.gz -C /usr/local/bin td
yay -S td-tui
or
paru -S td-tui
or
git clone https://aur.archlinux.org/td-tui.git
cd td-tui
makepkg -si
curl -LO https://github.com/voioo/td/releases/latest/download/td_linux_amd64.tar.gz
sudo tar xf td_linux_amd64.tar.gz -C /usr/local/bin td
curl -LO https://github.com/voioo/td/releases/latest/download/td_linux_amd64.tar.gz
sudo tar xf td_linux_amd64.tar.gz -C /usr/local/bin td
Open PowerShell as Administrator and run:
irm https://raw.githubusercontent.com/voioo/td/main/install.ps1 | iex
Manual Installation
# For AMD64 systems:
Invoke-WebRequest -Uri https://github.com/voioo/td/releases/latest/download/td_windows_amd64.zip -OutFile td.zip
Expand-Archive td.zip -DestinationPath "$env:LOCALAPPDATA\Programs\td"
$env:Path += ";$env:LOCALAPPDATA\Programs\td"
# For ARM64 systems:
Invoke-WebRequest -Uri https://github.com/voioo/td/releases/latest/download/td_windows_arm64.zip -OutFile td.zip
Expand-Archive td.zip -DestinationPath "$env:LOCALAPPDATA\Programs\td"
$env:Path += ";$env:LOCALAPPDATA\Programs\td"
You can also check the releases page on Github and download the one you need.
Press '?' to view usage
This project is a derivative of todo-cli, which is developed by Ren Ogaki (yuzuy) for the purposes of learning the Go language. The original code is licensed under the MIT License.
This project is released under the BSD Zero Clause License (0BSD). For more details, please refer to the LICENSE file.