diff options
author | Maxim Devaev <[email protected]> | 2024-12-30 18:55:59 +0200 |
---|---|---|
committer | Maxim Devaev <[email protected]> | 2024-12-30 18:55:59 +0200 |
commit | fed3bf1efdea7528919eb9f318c5ada2dcf35410 (patch) | |
tree | f1bd27d882b85cf845b92b489b1c494c4d1dd715 /web/kvm | |
parent | d52bb34bb9f5bc669f6b915ba585461356128e39 (diff) |
pikvm/pikvm#1334: Bad link mode for keyboard events
Diffstat (limited to 'web/kvm')
-rw-r--r-- | web/kvm/index.html | 13 | ||||
-rw-r--r-- | web/kvm/navbar-system.pug | 6 |
2 files changed, 15 insertions, 4 deletions
diff --git a/web/kvm/index.html b/web/kvm/index.html index 1db915ee..c6d3301d 100644 --- a/web/kvm/index.html +++ b/web/kvm/index.html @@ -285,7 +285,7 @@ </tr> </table> <details> - <summary>Keyboard & Mouse (HID) settings</summary> + <summary>Keyboard & mouse (HID) settings</summary> <div class="spoiler"> <table class="kv"> <tr> @@ -401,6 +401,15 @@ </div> </details> <table class="kv"> + <tr> + <td>Bad link mode (release keys immediately):</td> + <td align="right"> + <div class="switch-box"> + <input type="checkbox" id="hid-keyboard-bad-link-switch"> + <label for="hid-keyboard-bad-link-switch"><span class="switch-inner"></span><span class="switch"></span></label> + </div> + </td> + </tr> <tr class="feature-disabled" id="hid-connect"> <td>Connect HID to Server:</td> <td align="right"> @@ -420,7 +429,7 @@ </td> </tr> <tr> - <td>Mute HID input events:</td> + <td>Mute all input HID events:</td> <td align="right"> <div class="switch-box"> <input type="checkbox" id="hid-mute-switch"> diff --git a/web/kvm/navbar-system.pug b/web/kvm/navbar-system.pug index a3438486..55d70757 100644 --- a/web/kvm/navbar-system.pug +++ b/web/kvm/navbar-system.pug @@ -85,7 +85,7 @@ li(id="system-dropdown" class="right") td Mouse #[a(target="_blank" href="https://docs.pikvm.org/mouse") mode]: td #[div(id="hid-outputs-mouse-box" class="radio-box")] details - summary Keyboard & Mouse (HID) settings + summary Keyboard & mouse (HID) settings div(class="spoiler") table(class="kv") tr @@ -127,12 +127,14 @@ li(id="system-dropdown" class="right") tr +menu_switch_notable("page-full-tab-stream-switch", "Expand for the entire tab by default", true, false) table(class="kv") + tr + +menu_switch_notable("hid-keyboard-bad-link-switch", "Bad link mode (release keys immediately)", true, false) tr(id="hid-connect" class="feature-disabled") +menu_switch_notable("hid-connect-switch", "Connect HID to Server", true, true) tr(id="hid-jiggler" class="feature-disabled") +menu_switch_notable("hid-jiggler-switch", "<a href=\"https://docs.pikvm.org/mouse_jiggler\" target=\"_blank\">Mouse jiggler</a>", false, false) tr - +menu_switch_notable("hid-mute-switch", "Mute HID input events", true, false) + +menu_switch_notable("hid-mute-switch", "Mute all input HID events", true, false) tr(id="v3-usb-breaker" class="feature-disabled") +menu_switch_notable_gpio("__v3_usb_breaker__", "Connect main USB to Server", "Turning off this switch will disconnect the main USB from the server. Are you sure you want to continue?") |