Add option to automatically move yesterday's unchecked TODOs to today on startup

This commit is contained in:
Miguel Jacq 2025-11-06 15:45:31 +11:00
parent f7903c2cd9
commit 58f4f0a0b5
Signed by: mig5
GPG key ID: 59B3F0C24135C6A9
8 changed files with 99 additions and 4 deletions

View file

@ -20,6 +20,7 @@ class DBConfig:
key: str
idle_minutes: int = 15 # 0 = never lock
theme: str = "system"
move_todos: bool = False
class DBManager: