Window Management
The Window Management API provides developers with some functions to create commands with some advanced logic to move Windows around.
Some users might not have access to this API. If a user doesn't have access to Raycast Pro, they will be asked if they want to get access when your extension calls the Window Management API. If the user doesn't wish to get access, the API call will throw an error.
You can check if a user has access to the API using environment.canAccess(WindowManagement)
.
API Reference
WindowManagement.getActiveWindow
Gets the active Window.
Signature
Example
Return
A Promise that resolves with the active Window. If no window is active, the promise will be rejected.
WindowManagement.getWindowsOnActiveDesktop
Gets the list of Windows on the active Desktop.
Signature
Example
Return
A Promise that resolves with an array of Windows.
WindowManagement.getDesktops
Gets the list of Desktops available across all screens.
Signature
Example
Return
A Promise that resolves with the desktops.
WindowManagement.setWindowBounds
Move a Window or make it fullscreen.
Signature
Example
Parameters
options*
{ id: string }
or { bounds: { position?: { x?: number; y?: number }; size?: { height?: number; width?: number } }; desktopId?: string }
or { id: string }
or { bounds: "fullscreen" }
Return
A Promise that resolves with the window was moved. If the move isn't possible (for example trying to make a window fullscreen that doesn't support it), the promise will be rejected.
Types
WindowManagement.Window
A Window from an Application on a Desktop.
Properties
active*
boolean
bounds*
{ position: { x: number; y: number }; size: { height: number; width: number } }
or "fullscreen"
desktopId*
string
fullScreenSettable*
boolean
id*
string
positionable*
boolean
resizable*
boolean
application
WindowManagement.Desktop
A Desktop represents a virtual desktop on a Screen.
Properties
active*
boolean
id*
string
screenId*
string
size*
{ height: number; width: number }
type*
WindowManagement.DesktopType
The type of a Desktop.
Enumeration members
User
FullScreen
A Desktop made of a single fullscreen window
Last updated