Files
scripts/bash/disable_mouse_accel.sh

10 lines
258 B
Bash
Executable File

#!/usr/bin/env bash
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