Warning: file_get_contents(/data/phpspider/zhask/data//catemap/3/xpath/2.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
Kernel 如何设置Xubuntu 18.04中的xinput双点斗杆速度_Kernel_Hardware_Touchpad_Xinput_Ubuntu 18.04 - Fatal编程技术网

Kernel 如何设置Xubuntu 18.04中的xinput双点斗杆速度

Kernel 如何设置Xubuntu 18.04中的xinput双点斗杆速度,kernel,hardware,touchpad,xinput,ubuntu-18.04,Kernel,Hardware,Touchpad,Xinput,Ubuntu 18.04,自从我安装Xubuntu 18.04以来,我需要优化我的点棒的速度。 当我运行xinput列表道具15时,我得到的是: Device 'AlpsPS/2 ALPS DualPoint Stick': Device Enabled (143): 1 Coordinate Transformation Matrix (145): 1.000000, 0.000000, 0.000000, 0.000000, 1.000000, 0.000000, 0.000000, 0.000000, 1.00

自从我安装Xubuntu 18.04以来,我需要优化我的点棒的速度。 当我运行xinput列表道具15时,我得到的是:

Device 'AlpsPS/2 ALPS DualPoint Stick':
Device Enabled (143):   1
Coordinate Transformation Matrix (145): 1.000000, 0.000000, 0.000000, 0.000000, 1.000000, 0.000000, 0.000000, 0.000000, 1.000000
libinput Natural Scrolling Enabled (280):   0
libinput Natural Scrolling Enabled Default (281):   0
libinput Scroll Methods Available (282):    0, 0, 1
libinput Scroll Method Enabled (283):   0, 0, 1
libinput Scroll Method Enabled Default (284):   0, 0, 1
libinput Button Scrolling Button (285): 2
libinput Button Scrolling Button Default (286): 2
libinput Middle Emulation Enabled (287):    0
libinput Middle Emulation Enabled Default (288):    0
libinput Accel Speed (289): 0.000000
libinput Accel Speed Default (290): 0.000000
libinput Accel Profiles Available (291):    1, 1
libinput Accel Profile Enabled (292):   1, 0
libinput Accel Profile Enabled Default (293):   1, 0
libinput Left Handed Enabled (294): 0
libinput Left Handed Enabled Default (295): 0
libinput Send Events Modes Available (265): 1, 0
libinput Send Events Mode Enabled (266):    0, 0
libinput Send Events Mode Enabled Default (267):    0, 0
Device Node (268):  "/dev/input/event6"
Device Product ID (269):    2, 8
libinput Drag Lock Buttons (296):   <no items>
libinput Horizontal Scroll Enabled (297):   1
设备“ALPSP/2 ALPS双点棒”:
设备启用(143):1
坐标变换矩阵(145):1.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,1.000000
已启用libinput自然滚动(280):0
libinput自然滚动启用默认值(281):0
可用的libinput滚动方法(282):0、0、1
已启用libinput滚动方法(283):0,0,1
libinput滚动方法已启用默认值(284):0,0,1
libinput按钮滚动按钮(285):2
libinput按钮滚动按钮默认值(286):2
已启用libinput中间仿真(287):0
libinput中间仿真已启用默认值(288):0
LIB输入加速度(289):0.000000
libinput加速度默认值(290):0.000000
libinput加速配置文件可用(291):1,1
libinput Accel配置文件已启用(292):1,0
libinput Accel配置文件启用默认值(293):1,0
libinput左手已启用(294):0
libinput左手启用默认值(295):0
libinput发送事件模式可用(265):1,0
libinput发送事件模式已启用(266):0,0
libinput发送事件模式启用默认值(267):0,0
设备节点(268):“/dev/input/event6”
设备产品ID(269):2,8
libinput拖动锁定按钮(296):
libinput水平滚动已启用(297):1
我没有看到任何与速度对应的道具。有没有另一种方法来调整点棒的速度?
提前感谢您

对我的触摸板修改坐标变换矩阵的帮助,我将其设置为
2.400000,0.000000,0.000000,0.000000,2.400000,0.000000,0.000000,0.000000,0.000000,1.000000
,这大大加快了我的指针速度

您的命令最后应该是这样的:

input set-prop 15 145 \
2.400000, 0.000000, 0.000000, \
0.000000, 2.400000, 0.000000, \
0.000000, 0.000000, 1.000000

您可以随意调整对角线上的前两个值,以适应您的需要。

这对我很有用!是否在某个地方记录了这些值代表的内容?看起来像是一个三维变换矩阵,但第三维是什么?编辑:这似乎是一个与速度成反比的乘数。因此,将最后一个坐标设置为2与将x和y值设置为0.5具有相同的效果。