如何在 macOS Sierra 上切换“点击以单击”

如何在 macOS Sierra 上切换“点击以单击”

所以我想从终端切换此设置。我搜索了一下defaults read | grep -i click,发现通过“系统偏好设置”切换会更改键:

  • com.apple.driver.AppleBluetoothMultitouch.trackpad Clicking
  • com.apple.AppleMultitouchTrackpad Clicking

我尝试更改它们,但实际上并未更新此“点击以单击”设置(即使我在通过“系统偏好设置”手动执行后看到提到的值发生变化)。我是否遗漏了一些其他我应该使用defaults write命令更新的键?

在此处输入图片描述

答案1

你试过了吗?

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

编辑

不要尝试。读这个

相关内容