PowerKeys Scripting API
    Preparing search index...

    Interface WindowQuery

    Query filter for Window.Find. An empty object applies no filters and returns every visible top-level window.

    interface WindowQuery {
        title?: string;
        process?: string;
    }
    Index
    title?: string

    Filter by window title. Treated as a regular expression if valid, otherwise falls back to substring match.

    process?: string

    Filter by process name (case-insensitive substring match).