@vicinae/api
    Preparing search index...

    Type Alias RunInTerminalOptions

    Additional options that can be passed in order to tweak the behavior of the terminal window. Note that most options are best-effort, which means that they may or may not work depending on the default terminal emulator that is available. On Linux, Vicinae honors the xdg-terminal-exec specification: https://gitlab.freedesktop.org/terminal-wg/specifications/-/merge_requests/3/diffs

    type RunInTerminalOptions = {
        appId?: string;
        hold?: boolean;
        title?: string;
    }
    Index

    Properties

    Properties

    appId?: string

    Overrides the application ID used for this specific terminal window. Can be useful if you want to target this window by its class with the window management API. This option is provided as a hint to the default terminal emulator, and might not be honored.

    WindowManagement

    hold?: boolean

    Ensure the terminal window is held open after the execution of the command completes. This option is provided as a hint to the default terminal emulator, and might not be honored.

    title?: string

    Overrides the title used for this specific terminal window. Can be useful if you want to target this window by its title with the window management API. This option is provided as a hint to the default terminal emulator, and might not be honored.

    WindowManagement