Проблемы с сенсорным планшетом 3-го поколения Lenovo x1

Насколько я понимаю, ваша потребность очень проста. Вы хотите, чтобы текст поиска содержал сообщения электронной почты для определенных ключевых слов, а затем получите уведомление, когда это произойдет. Таким образом, только когда, например, письмо содержит слово «fail», вы хотите получать уведомление, а не когда он содержит успех. Я также использую www.smtpviewer.com, как упоминал Джон Гроббелаар, чтобы получить уведомление. Преимущество использования онлайн-инструмента заключается в том, что вы всегда можете получать уведомления о появлении ожидаемого сообщения электронной почты. Из всех инструментов мониторинга почты, которые я сыграл с этим, самый простой и только один из них.

2
задан 20 May 2018 в 17:11

2 ответа

Эта же проблема заставила меня переключиться на драйвер Synaptics.

Чтобы ваша тачпад перестала дрожать и стал более точным, вы можете использовать мое решение:

В каталоге /usr/share/X11/xorg.conf.d у меня есть 40-libinput.conf со следующим содержанием:

# Match on all types of devices but joysticks Section "InputClass" Identifier "libinput pointer catchall" MatchIsPointer "on" MatchDevicePath "/dev/input/event*" Driver "libinput" EndSection Section "InputClass" Identifier "libinput keyboard catchall" MatchIsKeyboard "on" MatchDevicePath "/dev/input/event*" Driver "libinput" EndSection Section "InputClass" Identifier "libinput touchpad catchall" MatchIsTouchpad "on" MatchDevicePath "/dev/input/event*" Driver "libinput" EndSection Section "InputClass" Identifier "libinput touchscreen catchall" MatchIsTouchscreen "on" MatchDevicePath "/dev/input/event*" Driver "libinput" EndSection Section "InputClass" Identifier "libinput tablet catchall" MatchIsTablet "on" MatchDevicePath "/dev/input/event*" Driver "libinput" EndSection

И 70-synaptics.conf с:

# Example xorg.conf.d snippet that assigns the touchpad driver # to all touchpads. See xorg.conf.d(5) for more information on # InputClass. # DO NOT EDIT THIS FILE, your distribution will likely overwrite # it when updating. Copy (and rename) this file into # /etc/X11/xorg.conf.d first. # Additional options may be added in the form of # Option "OptionName" "value" # Section "InputClass" Identifier "touchpad catchall" Driver "synaptics" MatchIsTouchpad "on" Option "TapButton1" "1" Option "TapButton2" "3" Option "TapButton3" "2" Option "PalmDetect" "1" Option "PalmMinWidth" "8" Option "PalmMinZ" "100" Option "VertScrollDelta" "-125" Option "HorizTwoFingerScroll" "on" Option "HorizScrollDelta" "-125" # This option is recommend on all Linux systems using evdev, but cannot be # enabled by default. See the following link for details: # http://who-t.blogspot.com/2010/11/how-to-ignore-configuration-errors.html MatchDevicePath "/dev/input/event*" EndSection Section "InputClass" Identifier "touchpad ignore duplicates" MatchIsTouchpad "on" MatchOS "Linux" MatchDevicePath "/dev/input/mouse*" Option "Ignore" "on" EndSection # This option enables the bottom right corner to be a right button on clickpads # and the right and middle top areas to be right / middle buttons on clickpads # with a top button area. # This option is only interpreted by clickpads. Section "InputClass" Identifier "Default clickpad buttons" MatchDriver "synaptics" Option "SoftButtonAreas" "50% 0 82% 0 0 0 0 0" Option "SecondarySoftButtonAreas" "58% 0 0 15% 42% 58% 0 15%" EndSection # This option disables software buttons on Apple touchpads. # This option is only interpreted by clickpads. Section "InputClass" Identifier "Disable clickpad buttons on Apple touchpads" MatchProduct "Apple|bcm5974" MatchDriver "synaptics" Option "SoftButtonAreas" "0 0 0 0 0 0 0 0" EndSection

Если этот файл не существует, его следует создать. Обратите внимание, что число перед синапсией должно быть больше, чем число до libinput.

Вы Synaptics удалите 40-libinput.conf, потому что в этом случае тачпад не будет работать вообще.

PS Хорошая статья, в которой вы можете узнать, как настроить файл Synaptics - https://wiki.archlinux.org/index.php/Touchpad_Synaptics

0
ответ дан 17 July 2018 в 13:51

Эта же проблема заставила меня переключиться на драйвер Synaptics.

Чтобы ваша тачпад перестала дрожать и стал более точным, вы можете использовать мое решение:

В каталоге /usr/share/X11/xorg.conf.d у меня есть 40-libinput.conf со следующим содержанием:

# Match on all types of devices but joysticks Section "InputClass" Identifier "libinput pointer catchall" MatchIsPointer "on" MatchDevicePath "/dev/input/event*" Driver "libinput" EndSection Section "InputClass" Identifier "libinput keyboard catchall" MatchIsKeyboard "on" MatchDevicePath "/dev/input/event*" Driver "libinput" EndSection Section "InputClass" Identifier "libinput touchpad catchall" MatchIsTouchpad "on" MatchDevicePath "/dev/input/event*" Driver "libinput" EndSection Section "InputClass" Identifier "libinput touchscreen catchall" MatchIsTouchscreen "on" MatchDevicePath "/dev/input/event*" Driver "libinput" EndSection Section "InputClass" Identifier "libinput tablet catchall" MatchIsTablet "on" MatchDevicePath "/dev/input/event*" Driver "libinput" EndSection

И 70-synaptics.conf с:

# Example xorg.conf.d snippet that assigns the touchpad driver # to all touchpads. See xorg.conf.d(5) for more information on # InputClass. # DO NOT EDIT THIS FILE, your distribution will likely overwrite # it when updating. Copy (and rename) this file into # /etc/X11/xorg.conf.d first. # Additional options may be added in the form of # Option "OptionName" "value" # Section "InputClass" Identifier "touchpad catchall" Driver "synaptics" MatchIsTouchpad "on" Option "TapButton1" "1" Option "TapButton2" "3" Option "TapButton3" "2" Option "PalmDetect" "1" Option "PalmMinWidth" "8" Option "PalmMinZ" "100" Option "VertScrollDelta" "-125" Option "HorizTwoFingerScroll" "on" Option "HorizScrollDelta" "-125" # This option is recommend on all Linux systems using evdev, but cannot be # enabled by default. See the following link for details: # http://who-t.blogspot.com/2010/11/how-to-ignore-configuration-errors.html MatchDevicePath "/dev/input/event*" EndSection Section "InputClass" Identifier "touchpad ignore duplicates" MatchIsTouchpad "on" MatchOS "Linux" MatchDevicePath "/dev/input/mouse*" Option "Ignore" "on" EndSection # This option enables the bottom right corner to be a right button on clickpads # and the right and middle top areas to be right / middle buttons on clickpads # with a top button area. # This option is only interpreted by clickpads. Section "InputClass" Identifier "Default clickpad buttons" MatchDriver "synaptics" Option "SoftButtonAreas" "50% 0 82% 0 0 0 0 0" Option "SecondarySoftButtonAreas" "58% 0 0 15% 42% 58% 0 15%" EndSection # This option disables software buttons on Apple touchpads. # This option is only interpreted by clickpads. Section "InputClass" Identifier "Disable clickpad buttons on Apple touchpads" MatchProduct "Apple|bcm5974" MatchDriver "synaptics" Option "SoftButtonAreas" "0 0 0 0 0 0 0 0" EndSection

Если этот файл не существует, его следует создать. Обратите внимание, что число перед синапсией должно быть больше, чем число до libinput.

Вы Synaptics удалите 40-libinput.conf, потому что в этом случае тачпад не будет работать вообще.

PS Хорошая статья, в которой вы можете узнать, как настроить файл Synaptics - https://wiki.archlinux.org/index.php/Touchpad_Synaptics

0
ответ дан 20 July 2018 в 13:56
  • 1
    Спасибо за ответ. Позвольте мне попробовать. И у меня нет второго файла, который вы упомянули. – Comrade 27 May 2018 в 12:49
  • 2
    @Comrade, просто создание файла должно быть достаточно в большинстве случаев. Однако, если есть проблемы - проверьте, установлен ли пакет xserver-xorg-input-synaptics (и установите, если это не так). – Ducky 27 May 2018 в 23:44

Другие вопросы по тегам:

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