Phase 1
This commit is contained in:
parent
97b6168ba6
commit
bbc1f724e1
3 changed files with 6 additions and 6 deletions
|
|
@ -556,8 +556,8 @@ namespace config {
|
||||||
true, // client gamepads with touchpads are emulated as DS4
|
true, // client gamepads with touchpads are emulated as DS4
|
||||||
true, // ds5_inputtino_randomize_mac
|
true, // ds5_inputtino_randomize_mac
|
||||||
|
|
||||||
true, // keyboard enabled
|
false, // keyboard disabled (Parsec-style default)
|
||||||
true, // mouse enabled
|
false, // mouse disabled (Parsec-style default)
|
||||||
true, // controller enabled
|
true, // controller enabled
|
||||||
true, // always send scancodes
|
true, // always send scancodes
|
||||||
true, // high resolution scrolling
|
true, // high resolution scrolling
|
||||||
|
|
|
||||||
|
|
@ -203,12 +203,12 @@
|
||||||
"touchpad_as_ds4": "enabled",
|
"touchpad_as_ds4": "enabled",
|
||||||
"ds5_inputtino_randomize_mac": "enabled",
|
"ds5_inputtino_randomize_mac": "enabled",
|
||||||
"back_button_timeout": -1,
|
"back_button_timeout": -1,
|
||||||
"keyboard": "enabled",
|
"keyboard": "disabled",
|
||||||
"key_repeat_delay": 500,
|
"key_repeat_delay": 500,
|
||||||
"key_repeat_frequency": 24.9,
|
"key_repeat_frequency": 24.9,
|
||||||
"always_send_scancodes": "enabled",
|
"always_send_scancodes": "enabled",
|
||||||
"key_rightalt_to_key_win": "disabled",
|
"key_rightalt_to_key_win": "disabled",
|
||||||
"mouse": "enabled",
|
"mouse": "disabled",
|
||||||
"high_resolution_scrolling": "enabled",
|
"high_resolution_scrolling": "enabled",
|
||||||
"native_pen_touch": "enabled",
|
"native_pen_touch": "enabled",
|
||||||
"keybindings": "[0x10,0xA0,0x11,0xA2,0x12,0xA4]", // todo: add this to UI
|
"keybindings": "[0x10,0xA0,0x11,0xA2,0x12,0xA4]", // todo: add this to UI
|
||||||
|
|
|
||||||
|
|
@ -118,7 +118,7 @@ const config = ref(props.config)
|
||||||
id="keyboard"
|
id="keyboard"
|
||||||
locale-prefix="config"
|
locale-prefix="config"
|
||||||
v-model="config.keyboard"
|
v-model="config.keyboard"
|
||||||
default="true"
|
default="false"
|
||||||
></Checkbox>
|
></Checkbox>
|
||||||
|
|
||||||
<!-- Key Repeat Delay-->
|
<!-- Key Repeat Delay-->
|
||||||
|
|
@ -161,7 +161,7 @@ const config = ref(props.config)
|
||||||
id="mouse"
|
id="mouse"
|
||||||
locale-prefix="config"
|
locale-prefix="config"
|
||||||
v-model="config.mouse"
|
v-model="config.mouse"
|
||||||
default="true"
|
default="false"
|
||||||
></Checkbox>
|
></Checkbox>
|
||||||
|
|
||||||
<!-- High resolution scrolling support -->
|
<!-- High resolution scrolling support -->
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue