Xorg: Difference between revisions

From NixOS Wiki
imported>Ar1a
Created page with "To disable mouse acceleration for a touchpad, it's as simple as <pre> services.xserver.libinput.enable = true; services.xserver.libinput.accelProfile = "flat"; </pre> B..."
 
imported>Makefu
m Makefu moved page Disabling mouse acceleration to Xorg: will become new Xorg Page
(No difference)

Revision as of 15:01, 11 March 2019

To disable mouse acceleration for a touchpad, it's as simple as

  services.xserver.libinput.enable = true;
  services.xserver.libinput.accelProfile = "flat";

But to disable it for a mouse, it's a bit more wordy -

  services.xserver.libinput.enable = true;
  services.xserver.config = ''
    Section "InputClass"
      Identifier "mouse accel"
      Driver "libinput"
      MatchIsPointer "on"
      Option "AccelProfile" "flat"
      Option "AccelSpeed" "0"
    EndSection
  '';