Files
scripts/bash/disable_mouse_accel.sh
2019-04-13 22:28:43 +03:00

13 lines
286 B
Bash
Executable File

#!/bin/bash
# Discard on use
rm $0
sudo mkdir -p /etc/X11/xorg.conf.d/
echo 'Section "InputClass"
Identifier "My Mouse"
Driver "libinput"
MatchIsPointer "yes"
Option "AccelProfile" "flat"
EndSection' | sudo tee --append /etc/X11/xorg.conf.d/50-mouse-acceleration.conf