我可以禁用 LightDM 的鼠标吗?

我可以禁用 LightDM 的鼠标吗?

对我来说,LightDM 在 Ubuntu 12.04 LTS 上的 xserver 和通用图形驱动程序方面存在重大问题,而且我真的不喜欢 GDM 或 LXDM 的外观和感觉,所以我只想在 LightDM 登录屏幕上禁用鼠标,以解决鼠标抖动的问题,并强制客人学习箭头键方法。

有什么办法可以做到这一点吗?

答案1

首先使用以下命令终端要找出你的鼠标 ID:

xinput list

找到后,运行以下命令lightdm.conf以 root 权限编辑文件:

sudo -i
gedit /etc/lightdm/lightdm.conf

在文件最后添加以下两行lightdm.conf

greeter-setup-script=xinput --disable <mouse_id>
session-setup-script=xinput --enable <mouse_id>
#replace <mouse_id> with the id of the mouse that you found it with `xinput list` command

保存文件并关闭它,不要忘记关闭该 root shell。

现在,重新启动系统并在登录屏幕上仅使用键盘。

相关内容