GDM - 如何启用触摸板点击点击

GDM - 如何启用触摸板点击点击

我已启用点击式在 Gnome 中可以,但在 GDM 上不起作用。

我尝试dconf-editor以 root 身份运行来修改设置,但无济于事。

我也尝试运行sudo -u gdm gsettings set org.gnome.desktop.peripherals.touchpad tap-to-click true,但出现以下错误

(process:16560): dconf-WARNING **: failed to commit changes to dconf: Error spawning command line 'dbus-launch --autolaunch=long-number-here --binary-syntax --close-stderr': Child process exited with code 1

我如何启用点击式关于GDM?

答案1

您必须导出$(dbus-launch)并设置gsettings后端(使用 进行测试archlinuxgdm 3.18.2

  1. 切换到a VT(例如++ Ctrl),登录为AltF3并运行:

    su - gdm -s /bin/sh
    

    将用户切换到gdm.

  2. 然后运行:

    export $(dbus-launch)
    

    和:

    GSETTINGS_BACKEND=dconf gsettings set org.gnome.desktop.peripherals.touchpad tap-to-click true
    

    运行exit或按Ctrl+D返回帐户。

  3. 重新启动显示管理器:

    systemctl restart gdm
    

恢复几乎是一样的,只需更改truefalse@步骤2即可。

相关内容