tree: allow floats to be pinned
This commit is contained in:
parent
3e6640f0ca
commit
65a66c2e26
28 changed files with 528 additions and 36 deletions
|
|
@ -636,6 +636,10 @@
|
|||
"color-management": {
|
||||
"description": "Configures the color-management settings.\n\n- Example:\n\n ```toml\n [color-management]\n enabled = true\n ```\n",
|
||||
"$ref": "#/$defs/ColorManagement"
|
||||
},
|
||||
"float": {
|
||||
"description": "Configures the settings of floating windows.\n\n- Example:\n\n ```toml\n [float]\n show-pin-icon = true\n ```\n",
|
||||
"$ref": "#/$defs/Float"
|
||||
}
|
||||
},
|
||||
"required": []
|
||||
|
|
@ -808,6 +812,17 @@
|
|||
}
|
||||
]
|
||||
},
|
||||
"Float": {
|
||||
"description": "Describes settings of floating windows.\n\n- Example:\n\n ```toml\n [float]\n show-pin-icon = true\n ```\n",
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"show-pin-icon": {
|
||||
"type": "boolean",
|
||||
"description": "Sets whether floating windows always show a pin icon.\n\nThe default is `false`.\n"
|
||||
}
|
||||
},
|
||||
"required": []
|
||||
},
|
||||
"Format": {
|
||||
"type": "string",
|
||||
"description": "A graphics format.\n\nThese formats are documented in https://github.com/torvalds/linux/blob/master/include/uapi/drm/drm_fourcc.h\n\n- Example:\n\n ```toml\n [[outputs]]\n match.serial-number = \"33K03894SL0\"\n format = \"rgb565\"\n ```\n",
|
||||
|
|
@ -1284,7 +1299,10 @@
|
|||
"disable-window-management",
|
||||
"enable-float-above-fullscreen",
|
||||
"disable-float-above-fullscreen",
|
||||
"toggle-float-above-fullscreen"
|
||||
"toggle-float-above-fullscreen",
|
||||
"pin-float",
|
||||
"unpin-float",
|
||||
"toggle-float-pinned"
|
||||
]
|
||||
},
|
||||
"Status": {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue