Similar to the question about BTT recognizing when the Spotlight search overlay is active, I'm trying to get BTT to ignore my commands when the Raycast search overlay is active.
I'm using BTT to have single-key commands in the message list to behave like Gmail's single-key commands. It works reasonably well with some small hesitations, however when I have Raycast search field open it still passes those commands to the Mail app. Trying to disable that part. Current conditions are:
appName == "Mail" AND windowName != "New Message" AND (windowName CONTAINS "→" OR windowName CONTAINS "Inbox") AND focusedElementRole == "AXTable" AND focusedElementSubrole != "AXWebArea" AND focusedElementRole != "AXTextField"
Thanks for any help!