From: Silvio Rhatto Date: Tue, 10 Mar 2026 16:28:55 +0000 (-0300) Subject: Fix: make events expire just on trigdatetime X-Git-Url: https://gitweb.fluxo.info/?a=commitdiff_plain;p=rhatto%2Fdotfiles%2Fwyrd.git Fix: make events expire just on trigdatetime --- 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