1
0
Fork 0
forked from wry/wry

toml-config: add use-hardware-cursor setting

This commit is contained in:
Julian Orth 2025-07-17 21:48:18 +02:00
parent e89763e3fe
commit 0a3d022829
6 changed files with 26 additions and 0 deletions

View file

@ -879,6 +879,10 @@
"pointer-revert-key": {
"type": "string",
"description": "Sets the keysym that can be used to revert the pointer to the default state.\n\nPressing this key cancels any grabs, drags, selections, etc.\n\nThe default is `Escape`. Setting this to `NoSymbol` effectively disables\nthis functionality.\n\nThe value of the string should be the name of a keysym. The authoritative location\nfor these names is [1] with the `XKB_KEY_` prefix removed.\n\n[1]: https://github.com/xkbcommon/libxkbcommon/blob/master/include/xkbcommon/xkbcommon-keysyms.h\n\n- Example:\n\n ```toml\n pointer-revert-key = \"NoSymbol\"\n ```\n"
},
"use-hardware-cursor": {
"type": "boolean",
"description": "Configures whether the default seat uses hardware cursors.\n\nThe default is `true`.\n"
}
},
"required": []