Crates.io | rremind |
lib.rs | rremind |
version | 0.0.5 |
source | src |
created_at | 2024-10-03 18:02:24.208926 |
updated_at | 2024-10-30 19:59:41.448598 |
description | A simple reminder service inspired by Diane Skoll's 'remind' |
homepage | https://github.com/Jakubzik/rremind |
repository | https://github.com/Jakubzik/rremind |
max_upload_size | |
id | 1395488 |
size | 101,556 |
Simple service to remind you, much simpler than -- but inspired by -- Diane Skoll's wonderful tool remind
Pick a folder to store your appointments and the dates you would like to be reminded of. Populate this folder with text files whose names end in ".rem".
These files can contain weekly dates...
Mon AT 17:00 DURATION 1 MSG Jour Fix with John Dee
... or yearly dates ...
jan 1 AT 11:00 DURATION 3 MSG Clean up after new year's party
nov 6 REM Heiko's birthday
... or specific dates ...
2024 November 5 AT 10:00 DURATION 20 REM Buy myself a birthday present
(Duration can be hours or minutes; values > 8 are interpreted as minutes; time is optional)
rremind
will ask for the location of your .rem-files on the first run -- or the location can be altered later using rremind config
.
You can then retrieve dates of specific days or periods, or find appointments by name (e.g. 'dentist').
Cargo install rremind
Archlinux
yay -S rremind
rremind
Arguments:
A range of two integers (e.g. -1..2) to list all appointments between yesterday and the day of tomorrow (inclusive)
'when' followed by a search term;
'check' to check if all .rem-filed can be interpreted
'config' to change the settings
'archive' to archive all appointments that are in the past
'version' to get the version number of your installation
'help' for a brief help message.
Without any arguments, ``rremind`` will show today's appointments.
Next steps:
[ ] Make "archive" accept a parameter specifying how old the appointments need to be for archiving. [ ] Make archive configurable so that it collects all archives in one file. [ ] Make archive report what it's doing [ ] "sort" command to sort the rem files chronologically. [ ] "put" command to add appointments. [ ] Accept date-range input: rremind 0..7 to show appointments of the next 7 days. [ ] Make date format more flexible. [ ] Add nicely formatted output (for terminal). [ ] Add .deb package.