How to enable Tap to click on MATE desktop (Debian 8.7 powerpc)
Clash Royale CLAN TAG#URR8PPP
up vote
1
down vote
favorite
Using advice from this forum, I got tap to click working in LXDE on my Powerbook G4 running Debian 8.7. I have since been experimenting with the MATE desktop, how do I get tap to click working in MATE?
Thank you.
debian touchpad mate powerpc
add a comment |Â
up vote
1
down vote
favorite
Using advice from this forum, I got tap to click working in LXDE on my Powerbook G4 running Debian 8.7. I have since been experimenting with the MATE desktop, how do I get tap to click working in MATE?
Thank you.
debian touchpad mate powerpc
add a comment |Â
up vote
1
down vote
favorite
up vote
1
down vote
favorite
Using advice from this forum, I got tap to click working in LXDE on my Powerbook G4 running Debian 8.7. I have since been experimenting with the MATE desktop, how do I get tap to click working in MATE?
Thank you.
debian touchpad mate powerpc
Using advice from this forum, I got tap to click working in LXDE on my Powerbook G4 running Debian 8.7. I have since been experimenting with the MATE desktop, how do I get tap to click working in MATE?
Thank you.
debian touchpad mate powerpc
debian touchpad mate powerpc
edited Feb 26 '17 at 17:57
Stephen Kitt
154k23339408
154k23339408
asked Jan 26 '17 at 8:12
Simon Baldwin
1021111
1021111
add a comment |Â
add a comment |Â
3 Answers
3
active
oldest
votes
up vote
0
down vote
How did you manage to do that under LXDE? It should be no different from that; after all, the technologies at base are the same.
Since LXDE has no specific control panel or anything of the sorts, I suspect you add some command to some startup file? That will work with mate desktop, too. If you can't find any such startup file, you can always use your ~/.Xsession
to deal with that. In that file, you'd first have to place the command(s) that configure your touchpad, and after that you'd place the correct command to start mate desktop.
This solution will work for whatever graphical environment you're using, not just mate.
To get it working in LXDE, I created a file /etc/X11/xorg.conf.d/50-synaptics.conf and added the necessary commands. I can confirm that this doesn't affect the Mate desktop as I am using it now and I cannot tap to click or use two-fingered scrolling. Both features now work in LXDE.
â Simon Baldwin
Jan 26 '17 at 17:12
But not when I enable the Mate desktop.
â Simon Baldwin
Feb 27 '17 at 12:03
add a comment |Â
up vote
0
down vote
Follow these steps. It worked for me. My notebook is SAMSUMG NP270E5G-KDRBR corei5 Debian9 with MATE
sudo apt-get install xserver-xorg-input-synaptics
sudo cp /usr/share/X11/xorg.conf.d/70-synaptics.conf /etc/X11/xorg.conf.d
After go to: System - Preferences - Hardware - Mouse
click in the tab Touchpad
check the option: enable mouse clicks with touchpad
reboot
I hope this helps.
add a comment |Â
up vote
0
down vote
If synaptics isn't working for you, check to see if you have a non-synaptics touch pad:
$ egrep -i 'synap|alps|etps|elan' /proc/bus/input/devices
If you do not find a synaptics touch pad, but one from a different vendor (mine is an Elantech touchpad for example), try the following commands:
$ apt-get purge xserver-xorg-input-synaptics
$ apt-get install xserver-xorg-input-libinput,evdev,mouse
$ mkdir -p /etc/X11/xorg.conf.d
$ echo 'Section "InputClass"
Identifier "libinput touchpad catchall"
MatchIsTouchpad "on"
MatchDevicePath "/dev/input/event*"
Driver "libinput"
Option "Tapping" "on"
EndSection' > /etc/X11/xorg.conf.d/40-libinput.conf
$ systemctl restart lightdm
If restarting lightdm doesn't work, try rebooting your computer.
More information: https://wiki.debian.org/SynapticsTouchpad#Enable_tapping_on_touchpad
add a comment |Â
3 Answers
3
active
oldest
votes
3 Answers
3
active
oldest
votes
active
oldest
votes
active
oldest
votes
up vote
0
down vote
How did you manage to do that under LXDE? It should be no different from that; after all, the technologies at base are the same.
Since LXDE has no specific control panel or anything of the sorts, I suspect you add some command to some startup file? That will work with mate desktop, too. If you can't find any such startup file, you can always use your ~/.Xsession
to deal with that. In that file, you'd first have to place the command(s) that configure your touchpad, and after that you'd place the correct command to start mate desktop.
This solution will work for whatever graphical environment you're using, not just mate.
To get it working in LXDE, I created a file /etc/X11/xorg.conf.d/50-synaptics.conf and added the necessary commands. I can confirm that this doesn't affect the Mate desktop as I am using it now and I cannot tap to click or use two-fingered scrolling. Both features now work in LXDE.
â Simon Baldwin
Jan 26 '17 at 17:12
But not when I enable the Mate desktop.
â Simon Baldwin
Feb 27 '17 at 12:03
add a comment |Â
up vote
0
down vote
How did you manage to do that under LXDE? It should be no different from that; after all, the technologies at base are the same.
Since LXDE has no specific control panel or anything of the sorts, I suspect you add some command to some startup file? That will work with mate desktop, too. If you can't find any such startup file, you can always use your ~/.Xsession
to deal with that. In that file, you'd first have to place the command(s) that configure your touchpad, and after that you'd place the correct command to start mate desktop.
This solution will work for whatever graphical environment you're using, not just mate.
To get it working in LXDE, I created a file /etc/X11/xorg.conf.d/50-synaptics.conf and added the necessary commands. I can confirm that this doesn't affect the Mate desktop as I am using it now and I cannot tap to click or use two-fingered scrolling. Both features now work in LXDE.
â Simon Baldwin
Jan 26 '17 at 17:12
But not when I enable the Mate desktop.
â Simon Baldwin
Feb 27 '17 at 12:03
add a comment |Â
up vote
0
down vote
up vote
0
down vote
How did you manage to do that under LXDE? It should be no different from that; after all, the technologies at base are the same.
Since LXDE has no specific control panel or anything of the sorts, I suspect you add some command to some startup file? That will work with mate desktop, too. If you can't find any such startup file, you can always use your ~/.Xsession
to deal with that. In that file, you'd first have to place the command(s) that configure your touchpad, and after that you'd place the correct command to start mate desktop.
This solution will work for whatever graphical environment you're using, not just mate.
How did you manage to do that under LXDE? It should be no different from that; after all, the technologies at base are the same.
Since LXDE has no specific control panel or anything of the sorts, I suspect you add some command to some startup file? That will work with mate desktop, too. If you can't find any such startup file, you can always use your ~/.Xsession
to deal with that. In that file, you'd first have to place the command(s) that configure your touchpad, and after that you'd place the correct command to start mate desktop.
This solution will work for whatever graphical environment you're using, not just mate.
answered Jan 26 '17 at 9:31
Wouter Verhelst
7,306833
7,306833
To get it working in LXDE, I created a file /etc/X11/xorg.conf.d/50-synaptics.conf and added the necessary commands. I can confirm that this doesn't affect the Mate desktop as I am using it now and I cannot tap to click or use two-fingered scrolling. Both features now work in LXDE.
â Simon Baldwin
Jan 26 '17 at 17:12
But not when I enable the Mate desktop.
â Simon Baldwin
Feb 27 '17 at 12:03
add a comment |Â
To get it working in LXDE, I created a file /etc/X11/xorg.conf.d/50-synaptics.conf and added the necessary commands. I can confirm that this doesn't affect the Mate desktop as I am using it now and I cannot tap to click or use two-fingered scrolling. Both features now work in LXDE.
â Simon Baldwin
Jan 26 '17 at 17:12
But not when I enable the Mate desktop.
â Simon Baldwin
Feb 27 '17 at 12:03
To get it working in LXDE, I created a file /etc/X11/xorg.conf.d/50-synaptics.conf and added the necessary commands. I can confirm that this doesn't affect the Mate desktop as I am using it now and I cannot tap to click or use two-fingered scrolling. Both features now work in LXDE.
â Simon Baldwin
Jan 26 '17 at 17:12
To get it working in LXDE, I created a file /etc/X11/xorg.conf.d/50-synaptics.conf and added the necessary commands. I can confirm that this doesn't affect the Mate desktop as I am using it now and I cannot tap to click or use two-fingered scrolling. Both features now work in LXDE.
â Simon Baldwin
Jan 26 '17 at 17:12
But not when I enable the Mate desktop.
â Simon Baldwin
Feb 27 '17 at 12:03
But not when I enable the Mate desktop.
â Simon Baldwin
Feb 27 '17 at 12:03
add a comment |Â
up vote
0
down vote
Follow these steps. It worked for me. My notebook is SAMSUMG NP270E5G-KDRBR corei5 Debian9 with MATE
sudo apt-get install xserver-xorg-input-synaptics
sudo cp /usr/share/X11/xorg.conf.d/70-synaptics.conf /etc/X11/xorg.conf.d
After go to: System - Preferences - Hardware - Mouse
click in the tab Touchpad
check the option: enable mouse clicks with touchpad
reboot
I hope this helps.
add a comment |Â
up vote
0
down vote
Follow these steps. It worked for me. My notebook is SAMSUMG NP270E5G-KDRBR corei5 Debian9 with MATE
sudo apt-get install xserver-xorg-input-synaptics
sudo cp /usr/share/X11/xorg.conf.d/70-synaptics.conf /etc/X11/xorg.conf.d
After go to: System - Preferences - Hardware - Mouse
click in the tab Touchpad
check the option: enable mouse clicks with touchpad
reboot
I hope this helps.
add a comment |Â
up vote
0
down vote
up vote
0
down vote
Follow these steps. It worked for me. My notebook is SAMSUMG NP270E5G-KDRBR corei5 Debian9 with MATE
sudo apt-get install xserver-xorg-input-synaptics
sudo cp /usr/share/X11/xorg.conf.d/70-synaptics.conf /etc/X11/xorg.conf.d
After go to: System - Preferences - Hardware - Mouse
click in the tab Touchpad
check the option: enable mouse clicks with touchpad
reboot
I hope this helps.
Follow these steps. It worked for me. My notebook is SAMSUMG NP270E5G-KDRBR corei5 Debian9 with MATE
sudo apt-get install xserver-xorg-input-synaptics
sudo cp /usr/share/X11/xorg.conf.d/70-synaptics.conf /etc/X11/xorg.conf.d
After go to: System - Preferences - Hardware - Mouse
click in the tab Touchpad
check the option: enable mouse clicks with touchpad
reboot
I hope this helps.
answered Jan 28 at 5:10
chmod777
113
113
add a comment |Â
add a comment |Â
up vote
0
down vote
If synaptics isn't working for you, check to see if you have a non-synaptics touch pad:
$ egrep -i 'synap|alps|etps|elan' /proc/bus/input/devices
If you do not find a synaptics touch pad, but one from a different vendor (mine is an Elantech touchpad for example), try the following commands:
$ apt-get purge xserver-xorg-input-synaptics
$ apt-get install xserver-xorg-input-libinput,evdev,mouse
$ mkdir -p /etc/X11/xorg.conf.d
$ echo 'Section "InputClass"
Identifier "libinput touchpad catchall"
MatchIsTouchpad "on"
MatchDevicePath "/dev/input/event*"
Driver "libinput"
Option "Tapping" "on"
EndSection' > /etc/X11/xorg.conf.d/40-libinput.conf
$ systemctl restart lightdm
If restarting lightdm doesn't work, try rebooting your computer.
More information: https://wiki.debian.org/SynapticsTouchpad#Enable_tapping_on_touchpad
add a comment |Â
up vote
0
down vote
If synaptics isn't working for you, check to see if you have a non-synaptics touch pad:
$ egrep -i 'synap|alps|etps|elan' /proc/bus/input/devices
If you do not find a synaptics touch pad, but one from a different vendor (mine is an Elantech touchpad for example), try the following commands:
$ apt-get purge xserver-xorg-input-synaptics
$ apt-get install xserver-xorg-input-libinput,evdev,mouse
$ mkdir -p /etc/X11/xorg.conf.d
$ echo 'Section "InputClass"
Identifier "libinput touchpad catchall"
MatchIsTouchpad "on"
MatchDevicePath "/dev/input/event*"
Driver "libinput"
Option "Tapping" "on"
EndSection' > /etc/X11/xorg.conf.d/40-libinput.conf
$ systemctl restart lightdm
If restarting lightdm doesn't work, try rebooting your computer.
More information: https://wiki.debian.org/SynapticsTouchpad#Enable_tapping_on_touchpad
add a comment |Â
up vote
0
down vote
up vote
0
down vote
If synaptics isn't working for you, check to see if you have a non-synaptics touch pad:
$ egrep -i 'synap|alps|etps|elan' /proc/bus/input/devices
If you do not find a synaptics touch pad, but one from a different vendor (mine is an Elantech touchpad for example), try the following commands:
$ apt-get purge xserver-xorg-input-synaptics
$ apt-get install xserver-xorg-input-libinput,evdev,mouse
$ mkdir -p /etc/X11/xorg.conf.d
$ echo 'Section "InputClass"
Identifier "libinput touchpad catchall"
MatchIsTouchpad "on"
MatchDevicePath "/dev/input/event*"
Driver "libinput"
Option "Tapping" "on"
EndSection' > /etc/X11/xorg.conf.d/40-libinput.conf
$ systemctl restart lightdm
If restarting lightdm doesn't work, try rebooting your computer.
More information: https://wiki.debian.org/SynapticsTouchpad#Enable_tapping_on_touchpad
If synaptics isn't working for you, check to see if you have a non-synaptics touch pad:
$ egrep -i 'synap|alps|etps|elan' /proc/bus/input/devices
If you do not find a synaptics touch pad, but one from a different vendor (mine is an Elantech touchpad for example), try the following commands:
$ apt-get purge xserver-xorg-input-synaptics
$ apt-get install xserver-xorg-input-libinput,evdev,mouse
$ mkdir -p /etc/X11/xorg.conf.d
$ echo 'Section "InputClass"
Identifier "libinput touchpad catchall"
MatchIsTouchpad "on"
MatchDevicePath "/dev/input/event*"
Driver "libinput"
Option "Tapping" "on"
EndSection' > /etc/X11/xorg.conf.d/40-libinput.conf
$ systemctl restart lightdm
If restarting lightdm doesn't work, try rebooting your computer.
More information: https://wiki.debian.org/SynapticsTouchpad#Enable_tapping_on_touchpad
answered 1 min ago
Gogeta70
13314
13314
add a comment |Â
add a comment |Â
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2funix.stackexchange.com%2fquestions%2f340234%2fhow-to-enable-tap-to-click-on-mate-desktop-debian-8-7-powerpc%23new-answer', 'question_page');
);
Post as a guest
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password