マウスボタンを有効にしたまま、マウスの動きの入力を無効にする方法は?


9

ボタンにマウスを使用しています。マウスの移動入力のみを無効にしたい。センサーを物理的に覆っても機能しません。

回答:


9

使用できますxinput

>xinput --list
⎡ Virtual core pointer                      id=2    [master pointer  (3)]
⎜   ↳ Virtual core XTEST pointer            id=4    [slave  pointer  (2)]
⎜   ↳ Mouse0                                id=6    [slave  pointer  (2)]
⎣ Virtual core keyboard                     id=3    [master keyboard (2)]
    ↳ Virtual core XTEST keyboard           id=5    [slave  keyboard (3)]
    ↳ Keyboard0

そこで、この場合はMouse0というマウスの名前を取得します。

次のコマンドを使用すると、マウスの速度を100000倍遅くします。これは基本的にゼロです。

xinput --set-prop 6 'Device Accel Constant Deceleration' 100000

または

xinput --set-prop Mouse0 'Device Accel Constant Deceleration' 100000

元に戻すには、同じを使用できます

xinput --set-prop Mouse0 'Device Accel Constant Deceleration' 1

1
きちんとしたハック。利用可能なプロパティは、で見つけることができますxinput list 66はデバイスです)。プロパティに関するドキュメントはここにあります:x.org/wiki/Development/Documentation/PointerAcceleration
Lekensteyn

3

マウスに「Device Accel Constant Deceleration」プロパティがありません。私はまだモーションを無効にすることができました

xinput set-prop 9 266 -1    
xinput set-prop 9 269 0 1

そしてそれを再び有効にします

xinput set-prop 9 269 1 0
input set-prop 9 266 0.0

私も私のボタンを無効にしました

xinput set-button-map 9 0 0 0

デバイス9は、Mitsumi ElectricのApple Optical USBマウスです。

デバイスリスト

Device 'Mitsumi Electric Apple Optical USB Mouse':
    Device Enabled (132):   1
    Coordinate Transformation Matrix (134): 1.000000, 0.000000, 0.000000, 0.000000, 1.000000, 0.000000, 0.000000, 0.000000, 1.000000
    libinput Accel Speed (266):     -1.000000
    libinput Accel Speed Default (267):     0.000000
    libinput Accel Profiles Available (268):        0, 0
    libinput Accel Profile Enabled (269):   0, 1
    libinput Accel Profile Enabled Default (270):   1, 0
    libinput Natural Scrolling Enabled (271):       0
    libinput Natural Scrolling Enabled Default (272):       0
    libinput Send Events Modes Available (250):     1, 0
    libinput Send Events Mode Enabled (251):        0, 0
    libinput Send Events Mode Enabled Default (252):        0, 0
    libinput Left Handed Enabled (273):     0
    libinput Left Handed Enabled Default (274):     0
    libinput Scroll Methods Available (275):        0, 0, 1
    libinput Scroll Method Enabled (276):   0, 0, 0
    libinput Scroll Method Enabled Default (277):   0, 0, 0
    libinput Button Scrolling Button (278): 2
    libinput Button Scrolling Button Default (279): 274
    libinput Middle Emulation Enabled (280):        0
    libinput Middle Emulation Enabled Default (281):        0
    Device Node (253):      "/dev/input/event4"
    Device Product ID (254):        1452, 772
    libinput Drag Lock Buttons (282):       <no items>
    libinput Horizonal Scroll Enabled (255):        1

2

私がman 4 mousedrv正しく読んだら、xorg.confのCorePointerセクションで、

Option "EmulateWheel" true
Option "EmulateWheelButton" 0
Option "EmulateWheelInertia" 10000

これにより、動きがマウスホイールボタンイベントに変換されますが、慣性の設定により、動きが鈍くなりすぎてこれを登録できなくなります。最近のシステムでは、mousedrvではなくevdevです。これは、実行時にxinputを使用して設定することもできます。次に例を示します。

xinput --set-prop 17 'Evdev Wheel Emulation' 1
xinput --set-prop 17 'Evdev Wheel Emulation Button' 0
xinput --set-prop 17 'Evdev Wheel Emulation Inertia' 10000

17は自分のデバイス番号です。関数を使用してデバイス番号でこの番号を取得し、起動スクリプト中に$ device-idに保存します。

set_device_id() {
  device_id=$(xinput --list | grep -m 1 "$1")
  device_id=${device_id##*id=}
  device_id=${device_id%%[[:space:]]*}
}

残念ながら、これにはデバイスのスクロールホイール入力を無効にするという副作用があります。

弊社のサイトを使用することにより、あなたは弊社のクッキーポリシーおよびプライバシーポリシーを読み、理解したものとみなされます。
Licensed under cc by-sa 3.0 with attribution required.