Manjaro Difference between revisions of "Enable Touchpad Horizontal and Vertical Scrolling/ru"

Difference between revisions of "Enable Touchpad Horizontal and Vertical Scrolling/ru"

From Manjaro
(Created page with "Чтобы использовать nano (терминальный текстовый редактор по умолчанию), введите команду:")
Line 10: Line 10:




To use nano (the default text-based terminal editor) enter the command:
Чтобы использовать nano (терминальный текстовый редактор по умолчанию), введите команду:


  sudo nano /etc/X11/xorg.conf.d/50-synaptics.conf  
  sudo nano /etc/X11/xorg.conf.d/50-synaptics.conf  




Otherwise, you may find it easier to read and edit the file by using gedit, which will open the configuration file as if it were a document. To use gedit instead, enter the command:
В противном случае вам может быть проще читать и редактировать файл с помощью gedit, который откроет файл конфигурации как документ. Для использования gedit, введите команду:


  sudo gedit /etc/X11/xorg.conf.d/50-synaptics.conf
  sudo gedit /etc/X11/xorg.conf.d/50-synaptics.conf


= Enable Click on Tap, Vertical and Horizontal Scrolling =
= Включение клика при касании, вертикальной и горизонтальной прокрутки =


Once the synaptic configuration file has been opened, replace the content of this file with the following:
Once the synaptic configuration file has been opened, replace the content of this file with the following:

Revision as of 07:30, 15 February 2023

Other languages:
English • ‎Türkçe • ‎русский

Для того чтобы включить функции click on tap и vertical and horizonal scrolling для вашего тачпада, необходимо сначала открыть терминал для открытия и редактирования файла конфигурации файла конфигурации synaptics.

Открытие файла конфигурации Synaptics

Синтаксис команды для редактирования конфигурационного файла synaptic следующий:

sudo [text editor] /etc/X11/xorg.conf.d/50-synaptics.conf


Чтобы использовать nano (терминальный текстовый редактор по умолчанию), введите команду:

sudo nano /etc/X11/xorg.conf.d/50-synaptics.conf 


В противном случае вам может быть проще читать и редактировать файл с помощью gedit, который откроет файл конфигурации как документ. Для использования gedit, введите команду:

sudo gedit /etc/X11/xorg.conf.d/50-synaptics.conf

Включение клика при касании, вертикальной и горизонтальной прокрутки

Once the synaptic configuration file has been opened, replace the content of this file with the following:

Section "InputClass"
	Identifier "touchpad catchall"
	Driver "synaptics"
	MatchIsTouchpad "on"
	Option "TapButton1" "1"
	Option "VertEdgeScroll" "1"
	Option "HorizEdgeScroll" "1"
EndSection


Once your amendments have been completed save your changes and close the configuration file by:

  • nano: Press CTRL and 'x' to exit, 'y' to save, and <enter> to finish, or
  • gedit: Select the 'save' option and then close the window.
Cookies help us deliver our services. By using our services, you agree to our use of cookies.