8

I want to enable Tap-to-click for my trackpad on the login screen of my MacBook Pro with El Capitan 10.11.6 (15G1004).

I tried everything proposed on this old question but nothing has worked.

Could you help me please?

Brutus
  • 181

2 Answers2

3

I just tried this and it worked on Sierra but should work on older versions too... The internal trackpad uses a different driver (USB) so need to enable a different default

sudo defaults write com.apple.AppleMultitouchTrackpad Clicking 1

Allan
  • 101,432
0

Type the following in the terminal and reboot device after that.

defaults write com.apple.driver.AppleBluetoothMultitouch.trackpad Clicking -bool true
defaults -currentHost write NSGlobalDomain com.apple.mouse.tapBehavior -int 1
defaults write NSGlobalDomain com.apple.mouse.tapBehavior -int 1

I've tested them on my Macbook Pro 15" 2015 running 10.11.6

Source: https://github.com/mathiasbynens/dotfiles/blob/master/.macos

Mathias Bynens posted a similar question a few years ago. He wrote the above file on Github.

  • I just tested the first on my MBP13" 2010 running 10.11.6 and using user switching to get to the login window do not see tap-to-click working. Does it require a restart or logging out or something like that? – j-beda Sep 15 '16 at 20:10
  • Sorry, for the missing information. It requires a logout. – varunyellina Sep 16 '16 at 03:14
  • Thank you @varunyellina, but unfortunately it's not working for me. :(

    Is there something I can check to figure out where is the problem? Is that command meant to edit any configuration file on the system?

    – Brutus Sep 16 '16 at 07:53
  • They did work for me. Just to confirm, I did further testing and they don't seem to be very reliable. I'll update the answer with proper results. – varunyellina Sep 16 '16 at 08:49
  • Neither this is working for me (the updated answer with the Bynens code)... :( – Brutus Sep 16 '16 at 09:45
  • Hope you rebooted your device. – varunyellina Sep 16 '16 at 10:01
  • Yes, I did twice... I opened the terminal, logged in as root with sudo su and then pasted the 3 commands, then reboot from the terminal itself. The second time I repeated the process but rebooted from the system menu.

    Did you typed the commands as root or did you use sudo?

    – Brutus Sep 16 '16 at 10:09
  • I typed the commands without sudo as a regular user. – varunyellina Sep 16 '16 at 17:59
  • I've just tried without sudo but doesn't work. – Brutus Sep 16 '16 at 20:39