Lubuntu 21.04 を使用しています。SDDM ログイン画面でタップしてクリックを有効にしたいのですが、有効にする方法はありますか?
答え1
ソース:ギットハブ
SDDM が Xorg 上で実行されていて、libinput を使用している場合は、/etc//X11/xorg.conf.d/ の xorg conf ファイルにオプション "Tapping" "on" を追加するだけです。次のように使用できます。
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