マウスボタンを有効にしてマウスの動き入力を無効にするには?

マウスボタンを有効にしてマウスの動き入力を無効にするには?

ボタン専用のマウスがあります。マウスの動き入力を無効にしたい。センサーを物理的に覆うことは機能しません。

答え1

あなたはそれを使用することができます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

答え2

私のマウスには「デバイスアクセラレーションスケジュールの減速」プロパティはありません。それでもモーションを無効にすることができます

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は私のものです三見電動アップル光学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

答え3

私が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:]]*}
}

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

関連情報