From daf3d46eebf8e71f0817679659e8b3dba5b7f969 Mon Sep 17 00:00:00 2001 From: Hunter Jozwiak Date: Thu, 9 Apr 2026 11:42:16 -0400 Subject: [PATCH] fix: add relevance gate state defaults --- src/cthulhu/cthulhu_state.py | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/src/cthulhu/cthulhu_state.py b/src/cthulhu/cthulhu_state.py index 586e36d..8611b19 100644 --- a/src/cthulhu/cthulhu_state.py +++ b/src/cthulhu/cthulhu_state.py @@ -56,6 +56,18 @@ pendingSelfHostedFocus: Optional[Any] = None # Actually: Optional[Atspi.Accessi # activeWindow: Optional[Any] = None # Actually: Optional[Atspi.Accessible] +# The latest compositor snapshot. +# +compositorSnapshot: Optional[Any] = None + +# Whether AT-SPI churn should be paused for compositor transitions. +# +pauseAtspiChurn: bool = False + +# The desktop-context token that should be prioritized next. +# +prioritizedDesktopContextToken: Optional[str] = None + # The currently active script. # activeScript: Optional[Any] = None # Actually: Optional[Script]