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
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
go build .
-
Adding a reminder associated to this folder
remind add <your reminder>
To associate this to the global folder use the
-g
flagremind add -g <your reminder>
-
Listing todos associated with this folder
remind list
To list all reminders use the
-a
flagremind list -a
To list the global folder only use the
-g
flagremind list -g
-
To edit your reminders in a text editor
remind edit
To edit your global reminder use the
-g
flagremind edit -g
-
To remove a particular reminder, use its number. To see its number use the
list
commandremind remove <reminder number>
To remove all the reminders associated with this folder, use the
-a
flagremind remove -a
To target the global reminder folder use the
-g
flagremind remove -g <reminder number>