From f3a297907f519f790a0186390345fcdaf755855f Mon Sep 17 00:00:00 2001 From: Denis Yuji Shimizu Date: Mon, 22 Dec 2025 18:48:42 -0300 Subject: [PATCH] keymapping: add descriptions for keymappings and OK button - Add mapping to the OK button - Added descriptions for new keymappings - Included details for YouTube button, Info overlay, Channel up, Channel down, Back, and OK/Select - Descriptions serve as inline documentation in the JSON --- .../cobalt-keymap/files/keymapping.json | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/recipes-thirdparty/cobalt-keymap/files/keymapping.json b/recipes-thirdparty/cobalt-keymap/files/keymapping.json index 85d7c6f..a589350 100644 --- a/recipes-thirdparty/cobalt-keymap/files/keymapping.json +++ b/recipes-thirdparty/cobalt-keymap/files/keymapping.json @@ -1,34 +1,46 @@ { "keymappings": [ { + "description": "YouTube button", "keycode": 62, "mapped": { "keycode": 179 } }, { + "description": "Info overlay", "keycode": 191, "mapped": { "keycode": 358 } }, { + "description": "Channel up", "keycode": 104, "mapped": { "keycode": 402 } }, { + "description": "Channel down", "keycode": 109, "mapped": { "keycode": 403 } }, { + "description": "Back", "keycode": 14, "mapped": { "keycode": 1 } + }, + { + "description": "OK/Select", + "keycode": 353, + "mapped": { + "keycode": 28 + } } ] }