From 9a545b0c4e055509b58d6a1197f7f15b1e4a31b0 Mon Sep 17 00:00:00 2001 From: Silvio Rhatto Date: Tue, 10 Mar 2026 13:28:55 -0300 Subject: [PATCH] Fix: make events expire just on trigdatetime --- reminders.dot.link | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/reminders.dot.link b/reminders.dot.link index de6db09..f99008b 100644 --- a/reminders.dot.link +++ b/reminders.dot.link @@ -49,7 +49,7 @@ # # Useful links # ------------ -# +# # http://tim.stoakes.net/remind/ # http://pbrisbin.com:8080/bin/ical2rem.pl # http://github.com/FND/misc/blob/master/ical2rem.pl @@ -76,6 +76,7 @@ SET $ParseUntriggered 0 # One could simply use: # # REM Tue AT 10:00 DURATION 1:00 SATISFY [(trigdatetime() - realcurrent()) >= 120] MSG recurring event +# REM Tue AT 10:00 DURATION 1:00 SATISFY [(trigdatetime() - realcurrent()) >= 0] MSG recurring event # # Note that we use an offset of 120 minutes giving a chance for you to check a missing past event. # Using expire() makes notation even simpler: @@ -87,9 +88,10 @@ SET $ParseUntriggered 0 # # Error in reminders file: ".remind/work.rem(14): SATISFY: expression has no reference to trigdate() or $T..." # -# Then it's recommended to set it at ~/.custom/reminers. +# Then it's recommended to set it at ~/.custom/reminders. # #FSET expire() (trigdatetime() - realcurrent()) >= 120 +#FSET expire() (trigdatetime() - realcurrent()) >= 0 # Shorthand for automatic event expiration # It's not working currently -- 2.39.5