Skip to content

Instantly share code, notes, and snippets.

@hizkifw
Created January 5, 2022 11:13
Show Gist options
  • Save hizkifw/2588edf2448105df6eae2b9b63e2b4c4 to your computer and use it in GitHub Desktop.
Save hizkifw/2588edf2448105df6eae2b9b63e2b4c4 to your computer and use it in GitHub Desktop.

useful snippets i use for my arch setup

fix monitor colors with xrandr

xrandr --output DP-1 --set "Broadcast RGB" "Full"

disable pointer acceleration using xorg.conf

/etc/X11/xorg.conf.d/50-disable-mouse-accel.conf

Section "InputClass"
  Identifier "some name"
  MatchDriver "libinput"
  MatchIsPointer "on"
  Option "AccelProfile" "flat"
EndSection
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment