aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to '')
-rwxr-xr-xcalendar/dayplan_revised.pl2
1 files changed, 2 insertions, 0 deletions
diff --git a/calendar/dayplan_revised.pl b/calendar/dayplan_revised.pl
index a28fef1..ba3352e 100755
--- a/calendar/dayplan_revised.pl
+++ b/calendar/dayplan_revised.pl
@@ -113,6 +113,8 @@ sub remindersblock {
my $reminders = qx(ssh bobbins remind ~/.reminders $y-$m-$d);
$reminders =~ s/\s{2,}/\n/gs;
$reminders =~ s/^Reminders.+\:\n//;
+ $reminders =~ s/^/\* /gs;
+ $reminders =~ s/\n/\n\* /gs;
my $rheader = "\n# Reminders:\n";
return $rheader . $reminders;
}