reminders-cli icon indicating copy to clipboard operation
reminders-cli copied to clipboard

A simple CLI for interacting with macOS reminders

Results 31 reminders-cli issues
Sort by recently updated
recently updated
newest added

``` for LINE in (reminders -h|awk '/^SUBCOMMANDS/{flag=1;next}/^ *$/{flag=0}flag') set -l COMMAND (echo $LINE|cut -w -f2) set -l DESCR (echo $LINE|cut -w -f3-) complete -c reminders -a $COMMAND -d "$DESCR" end...

Thanks for this tool. I’m very happy to have stumbled across it while looking for a way to back up post-Ventura Reminders.app data, which no longer has a built-in Export...

It's not possible to add (or edit) a reminder, where you set the reminder body to an empty string. ```bash > reminders add "Tasks" --due-date="today" "foobar" --notes="" Error: Missing value...

First, great working pulling this together, thanks. I tried using AppleScript to interface with Reminders, but it's pretty dang slow. This is 100x faster! In addition to tags and URL...

The CLI does not allow deletion of completed reminders.

Enabling setting the "recurring" properties of a reminder, and future extension, this pull requests adds a new command: add-json. This receives an input JSON-formatted string, containing all the reminders properties...

every list and every reminder has a unique id. This PR displays those values when `--format json` is used, and allows the ID to be an argument for the list...