diff options
Diffstat (limited to 'wiki')
-rw-r--r-- | wiki/scripts.mdwn | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/wiki/scripts.mdwn b/wiki/scripts.mdwn index 518709d..12b3abb 100644 --- a/wiki/scripts.mdwn +++ b/wiki/scripts.mdwn @@ -27,6 +27,42 @@ Installing `ghost` mount /dev/sdX /media/usb-drive/ +## Fix screen tearing + + + sudo vim /etc/X11/xorg.conf.d/20-intel.conf + + +Add the following contents to `20-intel.conf`: + + + Section "OutputClass" + Identifier "Intel Graphics" + MatchDriver "i915" + Driver "intel" + Option "DRI" "3" + Option "TearFree" "1" + EndSection + + +## Enabling "tap to click" + + + sudo micro /etc/X11/xorg.conf.d/30-touchpad.conf + + +Add the following contents to `30-touchpad.conf`: + + + Section "InputClass" + Identifier "touchpad" + Driver "libinput" + MatchIsTouchpad "on" + Option "Tapping" "on" + Option "TappingButtonMap" "lmr" + EndSection + + ## Woocommerce **Reset all product menu_order to `0`** |