create_quad_layout
Generate a 2x2 window layout on a specified display for arranging four apps in top-left, top-right, bottom-left, and bottom-right positions using customizable layout names and app configurations.
Instructions
Create a quad (2x2) window layout on a specific display
Input Schema
Name | Required | Description | Default |
---|---|---|---|
apps | Yes | Array of 4 app names for TL, TR, BL, BR positions | |
display | No | Which display to use | |
layoutName | Yes | Name for the quad layout |
Input Schema (JSON Schema)
{
"properties": {
"apps": {
"description": "Array of 4 app names for TL, TR, BL, BR positions",
"items": {
"type": "string"
},
"type": "array"
},
"display": {
"description": "Which display to use",
"enum": [
"main",
"left",
"right"
],
"type": "string"
},
"layoutName": {
"description": "Name for the quad layout",
"type": "string"
}
},
"required": [
"layoutName",
"apps"
],
"type": "object"
}