From 5a47c9a5c5c93a8ffc079ccb09f7ca5513420b75 Mon Sep 17 00:00:00 2001 From: Jaidyn Levesque Date: Sun, 26 Jan 2020 01:29:40 -0600 Subject: [PATCH] Add small divider between different dates in 'upcoming' --- farend.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/farend.sh b/farend.sh index 35803e7..18e9de3 100755 --- a/farend.sh +++ b/farend.sh @@ -290,6 +290,7 @@ function upcoming_todo_lines { cat "$todo_file" \ | preprocess_todo \ | date_todo_lines "$(add_days "$start_date" "$i")" + if test "$?" -eq 0 -a "$i" -ne "$(dec "$limit")"; then echo "---"; fi i="$(inc "$i")" done }