Get reminder to stop leaving turds around my filesystem.
authorScott Gasch <[email protected]>
Wed, 26 Oct 2022 17:58:26 +0000 (10:58 -0700)
committerScott Gasch <[email protected]>
Wed, 26 Oct 2022 17:58:26 +0000 (10:58 -0700)
examples/reminder/reminder.py

index 23c127dbfdbfc345ac29a0ff470cf555ef2ced8a..550cb54b5cde2a89a0aee1cf11a4c9df03c52d8a 100755 (executable)
@@ -6,6 +6,7 @@ Reminders for upcoming important dates.
 
 import datetime
 import logging
+import os
 import re
 import sys
 from collections import defaultdict
@@ -30,7 +31,7 @@ cfg.add_argument(
 cfg.add_argument(
     '--reminder_cache_file',
     type=str,
-    default='.reminder_cache',
+    default=f'{os.environ["HOME"]}/.reminder_cache',
     metavar='FILENAME',
     help='Override the .reminder cache location',
 )