相変わらず Macbookのマウスを指したり抜いたりした際のtouchpadの有効無効がうまく行かないケースがある。
設定など見てもおかしいところがなくいつの間にか動いていたりするので原因がわからない。そもそも有効無効には以下のコマンドを利用するのだが単純に打っても有効にならないときがあるのでお手上げ。
udevイベントの発生の確認
❯❯❯ udevadm monitor
monitor will print the received events for:
UDEV - the event which udev sends out after rule processing
KERNEL - the kernel uevent
KERNEL[1430.388672] remove /devices/pci0000:00/0000:00:1d.0/usb2/2-1/2-1:1.0/0003:045E:0797.000D/input/input23/mouse0 (input)
UDEV [1430.405002] remove /devices/pci0000:00/0000:00:1d.0/usb2/2-1/2-1:1.0/0003:045E:0797.000D/input/input23/mouse0 (input)
KERNEL[1430.412388] remove /devices/pci0000:00/0000:00:1d.0/usb2/2-1/2-1:1.0/0003:045E:0797.000D/input/input23/event5 (input)
UDEV [1430.415354] remove /devices/pci0000:00/0000:00:1d.0/usb2/2-1/2-1:1.0/0003:045E:0797.000D/input/input23/event5 (input)
KERNEL[1430.428202] remove /devices/pci0000:00/0000:00:1d.0/usb2/2-1/2-1:1.0/0003:045E:0797.000D/input/input23 (input)
KERNEL[1430.429470] remove /devices/pci0000:00/0000:00:1d.0/usb2/2-1/2-1:1.0/0003:045E:0797.000D/hidraw/hidraw0 (hidraw)
KERNEL[1430.429516] unbind /devices/pci0000:00/0000:00:1d.0/usb2/2-1/2-1:1.0/0003:045E:0797.000D (hid)
KERNEL[1430.429556] remove /devices/pci0000:00/0000:00:1d.0/usb2/2-1/2-1:1.0/0003:045E:0797.000D (hid)
KERNEL[1430.429677] unbind /devices/pci0000:00/0000:00:1d.0/usb2/2-1/2-1:1.0 (usb)
KERNEL[1430.429828] remove /devices/pci0000:00/0000:00:1d.0/usb2/2-1/2-1:1.0 (usb)
UDEV [1430.432792] remove /devices/pci0000:00/0000:00:1d.0/usb2/2-1/2-1:1.0/0003:045E:0797.000D/input/input23 (input)
UDEV [1430.433463] remove /devices/pci0000:00/0000:00:1d.0/usb2/2-1/2-1:1.0/0003:045E:0797.000D/hidraw/hidraw0 (hidraw)
このイベントを拾って自動的にスクリプトを動かすことが出来ます。設定は /etc/udev/rules.d 以下に
❯❯❯ more 01-touchpad.rules
SUBSYSTEM=="input", KERNEL=="mouse[0-9]", ACTION=="add", ENV{DISPLAY}=":0", ENV{XAUTHORITY}="/home/hideaki/.Xauthority", RUN+="/usr/bin/synclient TouchpadOff=
1"
SUBSYSTEM=="input", KERNEL=="mouse[0-9]", ACTION=="remove", ENV{DISPLAY}=":0", ENV{XAUTHORITY}="/home/hideaki/.Xauthority", RUN+="/usr/bin/synclient TouchpadO
ff=0"
これで抜き差しすると /usr/bin/synclient TouchPadOff= というコマンドが実行されることになります。
この結果はsystemdで起動させれている systemd-udevdのログで確認できます。
❯❯❯ systemctl status systemd-udevd
● systemd-udevd.service - udev Kernel Device Manager
Loaded: loaded (/lib/systemd/system/systemd-udevd.service; static; vendor preset: enabled)
Active: active (running) since Fri 2018-10-19 06:52:07 JST; 27min ago
Docs: man:systemd-udevd.service(8)
man:udev(7)
Main PID: 325 (systemd-udevd)
Status: "Processing with 12 children at max"
Tasks: 1
CGroup: /system.slice/systemd-udevd.service
└─325 /lib/systemd/systemd-udevd
ジャーナルコマンドのログで確認できるので見てみると結構失敗しています。
10月 19 06:54:25 child systemd-udevd[442]: Process '/usr/bin/synclient TouchpadOff=1' failed with exit code 1.
10月 19 06:54:25 child systemd-udevd[439]: Process '/usr/bin/synclient TouchpadOff=1' failed with exit code 1.
が、突然動き始めるのでその現任は不明です。。。