diff options
author | bt <bt@web> | 2024-01-18 13:48:55 -0500 |
---|---|---|
committer | IkiWiki <ikiwiki.info> | 2024-01-18 13:48:55 -0500 |
commit | 868605b70ecf0b544322441752c90188ab9e4294 (patch) | |
tree | f43ac17a2e03475bbf98664ab406b97f1fba02b3 /wiki/scripts.mdwn | |
parent | bd791af0e0d83b2820a8a888b64fe5d7b4c4cbd3 (diff) |
Diffstat (limited to 'wiki/scripts.mdwn')
-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`** |