我在基础 Xubuntu 上使用 Awesome WM。
复选框被Tap touchpad to click
忽略xfce4-settings-manager
了,大概是因为我正在使用 Awesome WM。
设置synclient MaxTapTime=0
仅适用于当前会话,并且重启后无效。
创建一个仅在启动时运行的 Upstart 脚本synclient MaxTapTime=0
听起来有点傻。
考虑到上述几点,我该如何永久禁用点击功能?
答案1
我已在我的 rc.lua 中添加了它来管理 synclient。
local awful = require("awful")
-- {{{ Autostart applications
function run_once(cmd)
findme = cmd
firstspace = cmd:find(" ")
if firstspace then
findme = cmd:sub(0, firstspace-1)
end
awful.util.spawn_with_shell("pgrep -u $USER -x " .. findme .. " > /dev/null || (" .. cmd .. ")")
end
run_once("synclient MaxTapTime=0")
安装需要非常小心。