The settings for the application window.

This settings is used to configure the behavior of the application window.

0.4.0

interface WindowSettings {
    alwaysOnTop: boolean;
    theme: "Light" | "Dark" | "System";
}

Properties

Properties

alwaysOnTop: boolean

Whether the application window should always be on top of other windows.

This setting is used to keep the application window visible at all times.

false
theme: "Light" | "Dark" | "System"

The theme of the application.

The theme of the application. The value can be "Light", "Dark", or "System".

"System"