Как временно отключить перьевой ввод в Ubuntu (Jaunty) на Thinkpad X41

967
Russell Thackston

У меня есть планшетный компьютер Thinkpad X41, на котором я установил Ubuntu. Все отлично работает, включая перьевой ввод. Однако существует аппаратная проблема, из-за которой мышь беспорядочно переходит в нижнюю часть экрана (проблема возникает как в Windows, так и в Linux). Кажется, это связано с влажностью, статичностью или чем-то еще. Поскольку это происходит хаотично, мне нужно временно отключить перьевой ввод.

Как временно отключить перьевой ввод?

Я видел ссылки на xorg.conf, но я не вижу там ничего, связанного с пером.


(Начать xorg.conf без комментариев)

Section "Monitor" Identifier "Configured Monitor" EndSection  Section "Screen" Identifier "Default Screen" Monitor "Configured Monitor" Device "Configured Video Device" SubSection "Display" Virtual 2048 1011 EndSubSection EndSection  Section "Device" Identifier "Configured Video Device" EndSection 
3

2 ответа на вопрос

1
micke

xsetwacom - это команда, которую вы можете ввести в терминале для установки параметров ручек, сенсорных панелей и т. д. Попробуйте: xsetwacom list devи затемxsetwacom "<your device> Pen stylus" Stylus off

Вторая команда не понятна в последних версиях `xsetwacom`, например, с 0.25.0 на Fedora 21. maxschlepzig 8 лет назад 0
1
maxschlepzig

You can use xinput to temporarily disable you pen input device.

For example, on a Thinkpad x220t, the input devices are listed as:

$ xinput list ⎡ Virtual core pointer id=2 [master pointer (3)] ⎜ ↳ Virtual core XTEST pointer id=4 [slave pointer (2)] ⎜ ↳ TPPS/2 IBM TrackPoint id=16 [slave pointer (2)] ⎜ ↳ SynPS/2 Synaptics TouchPad id=15 [slave pointer (2)] ⎜ ↳ Wacom ISDv4 E6 Pen eraser id=18 [slave pointer (2)] ⎜ ↳ Wacom ISDv4 E6 Finger touch id=13 [slave pointer (2)] ⎜ ↳ Wacom ISDv4 E6 Pen stylus id=12 [slave pointer (2)] 

Thus, to disable all display related devices:

$ xinput disable 'Wacom ISDv4 E6 Pen eraser' $ xinput disable 'Wacom ISDv4 E6 Finger touch' $ xinput disable 'Wacom ISDv4 E6 Pen stylus' 

Since the laptop also has a TrackPoint which is arguably more useful than a TouchPad, it makes sense to disable it, as well:

$ xinput disable 'SynPS/2 Synaptics TouchPad' 

Alternatively, the finger touch feature (and only the finger touch feature) can also be disabled with xsetwacom:

$ xsetwacom set 'Wacom ISDv4 E6 Pen stylus' touch off 

Похожие вопросы