Skip to content

Latest commit

 

History

History
89 lines (59 loc) · 1.47 KB

README.md

File metadata and controls

89 lines (59 loc) · 1.47 KB

Remind

Remind is a project aware todo app that will show relevant todos depending on the project folder. It also stores all notes in $HOME/remind/ to allow for easy syncing

Installation (MacOs only currently):

brew install danwlker/remind/remind@0.0.4-alpha

Alternatively, with Go installed:

go install github.com/DanWlker/remind@latest

Uninstallation (MacOs only currently):

brew uninstall danwlker/remind/remind@0.0.4-alpha

Build

go build .

Usage

  1. Adding a reminder associated to this folder

    remind add <your reminder>

    To associate this to the global folder use the -g flag

    remind add -g <your reminder>
  2. Listing todos associated with this folder

    remind list

    To list all reminders use the -a flag

    remind list -a

    To list the global folder only use the -g flag

    remind list -g
  3. To edit your reminders in a text editor

    remind edit

    To edit your global reminder use the -g flag

    remind edit -g
  4. To remove a particular reminder, use its number. To see its number use the list command

    remind remove <reminder number>

    To remove all the reminders associated with this folder, use the -a flag

    remind remove -a

    To target the global reminder folder use the -g flag

    remind remove -g <reminder number>