@vicinae/api
    Preparing search index...

    Type Alias Screen

    A screen, physical or virtual, attached to this computer.

    type Screen = {
        bounds: {
            position: { x: number; y: number };
            size: { height: number; width: number };
        };
        make: string;
        model: string;
        name: string;
        serial?: string;
    }
    Index

    Properties

    bounds: {
        position: { x: number; y: number };
        size: { height: number; width: number };
    }
    make: string

    Name of the screen's manufacturer.

    model: string
    name: string

    Name assigned by the windowing system to that screen.

    In Wayland environments for instance, the name is set to something like DP-1, DP-2, e-DP1...

    The name is not guaranteed to remain stable but is usually stable enough to uniquely identify a screen.

    serial?: string

    The serial number of the screen, if available.