How to Set Keyboard Bounce Time on Launcher
Bounce Time is like the time after clicking that the keyboard won't allow another click to register. Keyboard Bounce Time Settings allows you to set Debounce Mode and Response seconds by yourself. Now, this feature supports 7 modes, including:
NONE: No debounce processing is performed.
DEFER GLOBAL: Debouncing per keyboard. On any state change, a global timer is set. When DEBOUNCE milliseconds of no changes have occurred, all input changes are pushed. This is the highest performance algorithm with lowest memory usage and is noise-resistant.
DEFER PER ROW: Debouncing per row. On any state change, a per-row timer is set. When DEBOUNCE milliseconds of no changes have occurred on that row, the entire row is pushed. This can improve responsiveness over sym_defer_g while being less susceptible to noise than per-key algorithm.
DEFER PER KEY: Debouncing per key. On any state change, a per-key timer is set. When DEBOUNCE milliseconds of no changes have occurred on that key, the key status change is pushed.
EAGER PER ROW: Debouncing per row. On any state change, response is immediate, followed by DEBOUNCE milliseconds of no further input for that row.
EAGER PER KEY: Debouncing per key. On any state change, response is immediate, followed by DEBOUNCE milliseconds of no further input for that key.
EAGER DEFER PER KEY: Debouncing per key. On a key-down state change, response is immediate, followed by DEBOUNCE milliseconds of no further input for that key. On a key-up state change, a per-key timer is set. When DEBOUNCE milliseconds of no changes have occurred on that key, the key-up status change is pushed.
1. Connect your keyboard to the launcher. Click "Advanced Mode" on the left, then you can see "Keyboard Bounce Time Settings" function module on the right .

2. Click the "Debounce Mode" drop-down menu, you can select the mode you wish. In addition, you can drag the scroll bar to set the "Response seconds" you wish.

