I have been trying to use the Unix program remind, and so far I enjoy the flexibility. I have set up this command to warn me of any upcoming reminders:
~$ remind -z -k'notify-send "Reminder" "%s"' .reminders/reminders.rem
It works, but for some reason it doesn't respect remind's feature to start warning some days in advance (it does for minutes though), e.g. reminders like this don't provide output to the command listed in the -k flag:
REM September 28 +5 AT 20:11 +1 Get some foo bar %b
At this moment, the above example will only trigger notify-send at september 28 one minute before 20:11 (and not any other days for some reason). I would like to trigger notify-send 5 days in advance (in case of this example), and everyday from that. How do I achieve this? (a different syntax is okay too, but others also didn't achieve what I want)