Difference between revisions of "Enable Touchpad Horizontal and Vertical Scrolling"
From Manjaro
Views
Actions
Namespaces
Variants
Tools
imported>Verityproductions |
(Marked this version for translation) |
||
(4 intermediate revisions by 4 users not shown) | |||
Line 1: | Line 1: | ||
<languages/> | |||
__TOC__ | |||
<translate> | |||
<!--T:1--> | |||
In order to enable the ''click on tap'' and ''vertical and horizonal scrolling'' functions for your touchpad, it will be necessary first open your terminal in order to open and then edit the '''synaptics configuration file'''. | In order to enable the ''click on tap'' and ''vertical and horizonal scrolling'' functions for your touchpad, it will be necessary first open your terminal in order to open and then edit the '''synaptics configuration file'''. | ||
= Open the Synaptics Configuration File = | = Open the Synaptics Configuration File = <!--T:2--> | ||
<!--T:3--> | |||
The syntax the command to edit the synaptic configuration file is: | The syntax the command to edit the synaptic configuration file is: | ||
sudo [text editor] /etc/X11/xorg.conf.d/ | <!--T:4--> | ||
sudo [text editor] /etc/X11/xorg.conf.d/50-synaptics.conf | |||
<!--T:5--> | |||
To use nano (the default text-based terminal editor) enter the command: | To use nano (the default text-based terminal editor) enter the command: | ||
sudo nano /etc/X11/xorg.conf.d/ | <!--T:6--> | ||
sudo nano /etc/X11/xorg.conf.d/50-synaptics.conf | |||
<!--T:7--> | |||
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: | 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: | ||
sudo gedit /etc/X11/xorg.conf.d/ | <!--T:8--> | ||
sudo gedit /etc/X11/xorg.conf.d/50-synaptics.conf | |||
= Enable Click on Tap, | = Enable Click on Tap, Vertical and Horizontal Scrolling = <!--T:9--> | ||
<!--T:10--> | |||
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: | ||
Section "InputClass" | <!--T:11--> | ||
Section "InputClass" | |||
Identifier "touchpad catchall" | Identifier "touchpad catchall" | ||
Driver "synaptics" | Driver "synaptics" | ||
Line 33: | Line 43: | ||
<!--T:12--> | |||
Once your amendments have been completed save your changes and close the configuration file by: | Once your amendments have been completed save your changes and close the configuration file by: | ||
<!--T:13--> | |||
*'''nano''': Press CTRL and 'x' to exit, 'y' to save, and <enter> to finish, or | *'''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. | *'''gedit''': Select the 'save' option and then close the window. | ||
</translate> | |||
[[Category:Contents Page{{#translation:}}]] | |||
[[Category:Contents Page]] |
Latest revision as of 16:38, 7 September 2021
In order to enable the click on tap and vertical and horizonal scrolling functions for your touchpad, it will be necessary first open your terminal in order to open and then edit the synaptics configuration file.
Open the Synaptics Configuration File
The syntax the command to edit the synaptic configuration file is:
sudo [text editor] /etc/X11/xorg.conf.d/50-synaptics.conf
To use nano (the default text-based terminal editor) enter the command:
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:
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:
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.