9 lines
306 B
Bash
9 lines
306 B
Bash
#!/bin/bash
|
|
# Enable "tap click"
|
|
mkdir -p /etc/X11/xorg.conf.d
|
|
echo "Section \"InputClass\"
|
|
Identifier \"touchpad catchall\"
|
|
Driver \"synaptics\"
|
|
MatchIsTouchpad \"on\"
|
|
Option \"TapButton1\" \"1\"
|
|
Option \"TapButton2\" \"3"\" > /etc/X11/xorg.conf.d/50-synaptics.conf |