Skip to content

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

42 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

todo

todo is a tool for quick reminders and taking notes.

WARNING: this tool is mostly WIP but is quite usable and feature complete

Usage

Install the application and hit '?', it'll show all the keybinds for the program

Installation

Linux, Windows or Mac:

  1. Install Go
  2. Run:
go install github.com/ludihan/todo@latest

Nix or NixOS (using flakes):

  1. Enable flakes
  2. Add this repo to the input of your flake:
inputs = {
  nixpkgs.url = "github:NixOS/nixpkgs/nixpkgs-unstable";
  todo = {
    url = "github:ludihan/todo";
    inputs.nixpkgs.follows = "nixpkgs";
  };
};
  1. Add the program as a module to your NixOS or Home Manager config:

NixOS:

outputs = { self, nixpkgs, todo, ... }:
{
  nixosConfigurations.example = nixpkgs.lib.nixosSystem {
    inherit system;
    modules = [
      todo.nixosModules.todo
    ];
  };
}

Home Manager:

outputs = { self, nixpkgs, todo, ... }:
{
  homeConfigurations.example = home-manager.lib.homeManagerConfiguration {
    inherit system;
    modules = [
      todo.homeModules.todo
    ];
  };
}

About

tool for quick reminders and taking notes.

Resources

Stars

Watchers

Forks

Releases

Packages

Contributors

Languages