https://github.com/rknightuk/alfred-reminders-helper
Helper CLI for Alfred Agenda workflow
https://github.com/rknightuk/alfred-reminders-helper
alfred alfred-workflow cli workflow
Last synced: 3 months ago
JSON representation
Helper CLI for Alfred Agenda workflow
- Host: GitHub
- URL: https://github.com/rknightuk/alfred-reminders-helper
- Owner: rknightuk
- License: mit
- Created: 2021-07-20T11:32:40.000Z (almost 4 years ago)
- Default Branch: main
- Last Pushed: 2024-02-13T00:37:34.000Z (over 1 year ago)
- Last Synced: 2025-04-12T10:15:02.375Z (3 months ago)
- Topics: alfred, alfred-workflow, cli, workflow
- Language: Swift
- Homepage: https://github.com/rknightuk/alfred-workflows/tree/main/workflows/agenda
- Size: 47.9 KB
- Stars: 8
- Watchers: 2
- Forks: 3
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# alfred-reminders-helper
A modified version of [reminders-cli](https://github.com/keith/reminders-cli) for use with [Agenda Alfred Workflow](https://github.com/rknightuk/alfred-workflows/tree/main/workflows/agenda)
## Usage:
#### Show all lists
```
$ reminders show-lists
Soon
Eventually
```#### Show reminders on a specific list
```
$ reminders show Soon
0 Write README
1 Ship reminders-cli
```#### Complete an item on a list
```
$ reminders complete Soon 0
Completed 'Write README'
$ reminders show Soon
0 Ship reminders-cli
```#### Add a reminder to a list
```
$ reminders add Soon Contribute to open source
$ reminders add Soon Go to the grocery store --due-date "tomorrow 9am"
$ reminders show Soon
0: Ship reminders-cli
1: Contribute to open source
2: Go to the grocery store (in 10 hours)
```### Installation
You don't want this, I promise you. It's only useful for the Alfred workflow.
#### Building manually
This requires a recent Xcode installation.
```
$ cd reminders-cli
$ make build-release
$ cp .build/release/reminders /usr/local/bin/reminders
```