我正在使用 Lubuntu 21.04。我想在 SDDM 登入畫面中啟用點擊功能。有辦法啟用它嗎?
答案1
來源:github
如果 SDDM 在 Xorg 上運行,並且您使用 libinput,只需將選項「Tapping」「on」新增至 /etc//X11/xorg.conf.d/ 中的 xorg conf 檔案即可使用:
sudo vim /etc/X11/xorg.conf.d/20-touchpad.conf
貼上以下內容:
Section "InputClass"
Identifier "libinput touchpad catchall"
MatchIsTouchpad "on"
MatchDevicePath "/dev/input/event*"
Driver "libinput"
Option "Tapping" "on"
Option "NaturalScrolling" "on"
Option "MiddleEmulation" "on"
Option "DisableWhileTyping" "on"
EndSection