Merge pull request #449 from khyperia/relative-behavior-mode
implement new setting: fallback output mode
This commit is contained in:
commit
2f4543912b
29 changed files with 306 additions and 55 deletions
|
|
@ -1068,6 +1068,10 @@
|
|||
"simple-im": {
|
||||
"description": "Configures the simple, XCompose based input method.\n\nBy default, the input method is enabled. \n\nEven if the input method is enabled, it will only be used if there is no\nrunning external IM.\n\n- Example:\n\n ```toml\n [simple-im]\n enabled = false\n ```\n",
|
||||
"$ref": "#/$defs/SimpleIm"
|
||||
},
|
||||
"fallback-output-mode": {
|
||||
"description": "Sets the fallback output mode.\n\nThe default is `cursor`.\n\n- Example:\n\n ```toml\n fallback-output-mode = \"focus\"\n ```\n",
|
||||
"$ref": "#/$defs/FallbackOutputMode"
|
||||
}
|
||||
},
|
||||
"required": []
|
||||
|
|
@ -1284,6 +1288,14 @@
|
|||
}
|
||||
]
|
||||
},
|
||||
"FallbackOutputMode": {
|
||||
"type": "string",
|
||||
"description": "Defines which output is used when no particular output is specified.\n\nThis configures where to place a newly opened window or workspace, what window to focus when a\nwindow is closed, which workspace is moved with move-to-output, and similar actions.\n",
|
||||
"enum": [
|
||||
"cursor",
|
||||
"focus"
|
||||
]
|
||||
},
|
||||
"Float": {
|
||||
"description": "Describes settings of floating windows.\n\n- Example:\n\n ```toml\n [float]\n show-pin-icon = true\n ```\n",
|
||||
"type": "object",
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue