13 lines
286 B
Bash
Executable File
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
|