Exclude specific windows

Hi

I currently have a trigger that executes cmd + ö, which of my mac means back, this works really nice except in google sheets where this means "insert current date". I had to clean up some data because suddenly I had the current date there. Can I somehow exclude all windows that match Google Sheets? I only see "is not" where it matches the whole string but I would need a regex match.

Thank you

you can use REGEX via the "matches" condition:

But do you really need regex?

Hi Andreas

I'm not sure if I really need regex. But it seems like the only way. I built a trigger to go back and forward, not sure if this could be handled differently but I'm trying to not trigger it in google sheets and according to the variables on the side in BTT, it should not trigger but it still does with the following:

BTTActiveAppBundleIdentifier != "com.apple.Preview" AND (BTTActiveAppBundleIdentifier != "com.brave.Browser" OR active_website_url MATCHES "^(?!.*spreadsheet).*") AND fingers_touching_trackpad >= 0 AND left_mouse_down == 0

I also had to remove it from Preview.

Thank you for your help!