Phase 1
Some checks failed
ci-bundle.yml / Phase 1 (push) Failing after 0s
ci-copr.yml / Phase 1 (push) Failing after 0s
ci-homebrew.yml / Phase 1 (push) Failing after 0s

This commit is contained in:
Joey Yakimowich-Payne 2026-02-10 06:34:17 -07:00
commit bbc1f724e1
3 changed files with 6 additions and 6 deletions

View file

@ -556,8 +556,8 @@ namespace config {
true, // client gamepads with touchpads are emulated as DS4
true, // ds5_inputtino_randomize_mac
true, // keyboard enabled
true, // mouse enabled
false, // keyboard disabled (Parsec-style default)
false, // mouse disabled (Parsec-style default)
true, // controller enabled
true, // always send scancodes
true, // high resolution scrolling

View file

@ -203,12 +203,12 @@
"touchpad_as_ds4": "enabled",
"ds5_inputtino_randomize_mac": "enabled",
"back_button_timeout": -1,
"keyboard": "enabled",
"keyboard": "disabled",
"key_repeat_delay": 500,
"key_repeat_frequency": 24.9,
"always_send_scancodes": "enabled",
"key_rightalt_to_key_win": "disabled",
"mouse": "enabled",
"mouse": "disabled",
"high_resolution_scrolling": "enabled",
"native_pen_touch": "enabled",
"keybindings": "[0x10,0xA0,0x11,0xA2,0x12,0xA4]", // todo: add this to UI

View file

@ -118,7 +118,7 @@ const config = ref(props.config)
id="keyboard"
locale-prefix="config"
v-model="config.keyboard"
default="true"
default="false"
></Checkbox>
<!-- Key Repeat Delay-->
@ -161,7 +161,7 @@ const config = ref(props.config)
id="mouse"
locale-prefix="config"
v-model="config.mouse"
default="true"
default="false"
></Checkbox>
<!-- High resolution scrolling support -->