From e0bf6c2d30c692a74baf996a3e3eae5bd1f66a0c Mon Sep 17 00:00:00 2001 From: Anders Date: Tue, 28 May 2019 10:38:51 +0200 Subject: [PATCH] Fix typo: time_current_day->time_current_weekday MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit time_current_day is not defined in the file, time_current_weekday is 😄 --- time.rules | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/time.rules b/time.rules index 6f69886..d19359e 100644 --- a/time.rules +++ b/time.rules @@ -59,5 +59,5 @@ time_end_of_current_month_seconds = ( time_current_month_remaining_seconds = time_end_of_current_month_seconds - time() time_current_weekday = 1 + (((time() / 86400) -4) % 7) -time_is_weekday_bool = time_current_day < bool 5 +time_is_weekday_bool = time_current_weekday < bool 5