Windows 10 reached EOS (end of support) on October 14, 2025. If you are on Windows 10, see this article.

ابحث في الدعم

Avoid support scams. We will never ask you to call or text a phone number or share personal information. Please report suspicious activity using the “Report Abuse” option.

Learn More

Changing the sidebar shortcut from the UI

  • ما من ردود
  • 0 have this problem

There seems to be no possible way to change the shortcut for peeking at the tabs in the sidebar (when sidebar revamp is enabled) from the about:keyboard UI. I have so far managed to modify the shortcut through intercepting function calls.

What I have done: 1. Read through the JS source code for about:keyboard which says the shortcut ID is `toggleSidebarKb` 2. Added hooks to intercept `RPMSendQuery` calls 3. Modified the shortcut through devtools open on the about:keyboard page with the following snippet

```js await RPMSendQuery("CustomKeys:ChangeKey", {

 "modifiers": "accel",
 "isValid": true,
 "key": "S",
 "shortcut": "Ctrl+S",
 "id": "toggleSidebarKb"

}) ```

The way I am doing it is definitely a hack. I am not sure if I am missing something. Although the shortcuts for bookmarks, history, and GenAI chat sidebar are present, there seems to be no entry to change the sidebar toggle shortcut itself. I'd love to work on this but I haven't been able to mach bootstrap on NixOS.

Thank you for any assistance :)

There seems to be no possible way to change the shortcut for peeking at the tabs in the sidebar (when sidebar revamp is enabled) from the about:keyboard UI. I have so far managed to modify the shortcut through intercepting function calls. What I have done: 1. Read through the JS source code for about:keyboard which says the shortcut ID is `toggleSidebarKb` 2. Added hooks to intercept `RPMSendQuery` calls 3. Modified the shortcut through devtools open on the about:keyboard page with the following snippet ```js await RPMSendQuery("CustomKeys:ChangeKey", { "modifiers": "accel", "isValid": true, "key": "S", "shortcut": "Ctrl+S", "id": "toggleSidebarKb" }) ``` The way I am doing it is definitely a hack. I am not sure if I am missing something. Although the shortcuts for bookmarks, history, and GenAI chat sidebar are present, there seems to be no entry to change the sidebar toggle shortcut itself. I'd love to work on this but I haven't been able to mach bootstrap on NixOS. Thank you for any assistance :)

You must log in to your account to reply to posts. Please start a new question, if you do not have an account yet.