User Tools

Site Tools


notes:xorg.conf_snippets

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revisionPrevious revision
Next revisionBoth sides next revision
notes:xorg.conf_snippets [2023/05/28 23:33] Sean Rhonenotes:xorg.conf_snippets [2024/05/02 02:15] – Fix intel; DRI = iris; evdev Sean Rhone
Line 106: Line 106:
 ===== intel ===== ===== intel =====
  
-  * 2023/05/28: Last tested on Ubuntu 23.04 with Intel UHD 630+  * 2024/05/02: Last tested on Fedora Workstation 40 with Intel UHD 630
  
   sudo -e '/etc/X11/xorg.conf.d/99-graphics.conf'   sudo -e '/etc/X11/xorg.conf.d/99-graphics.conf'
Line 115: Line 115:
     MatchDriver "i915"     MatchDriver "i915"
     Driver "intel"     Driver "intel"
-    Option "DRI" "3"+    Option "DRI" "iris"
     Option "AccelMethod" "sna"     Option "AccelMethod" "sna"
-    Option "TearFree" "1" +    Option "TearFree" "0"
-    Option "TripleBuffer" "1" +
-    Option "SwapbuffersWait" "1"+
 EndSection EndSection
 </code> </code>
Line 135: Line 133:
     Option "Coolbits" "28"     Option "Coolbits" "28"
     Option "AllowUnofficialGLXProtocol" "1"     Option "AllowUnofficialGLXProtocol" "1"
 +EndSection</code>
 +
 +====== evdev ======
 +
 +<code>
 +Section "InputClass"
 +    Identifier "evdev pointer catchall"
 +    MatchIsPointer "on"
 +    MatchDevicePath "/dev/input/event*"
 +    Driver "evdev"
 +    Option "AccelerationProfile" "-1"
 +    Option "AccelerationScheme" "none"
 +EndSection
 +
 +Section "InputClass"
 +    Identifier "evdev keyboard catchall"
 +    MatchIsKeyboard "on"
 +    MatchDevicePath "/dev/input/event*"
 +    Driver "evdev"
 +    Option "AccelerationProfile" "-1"
 +    Option "AccelerationScheme" "none"
 +EndSection
 +
 +Section "InputClass"
 +    Identifier "evdev touchpad catchall"
 +    MatchIsTouchpad "on"
 +    MatchDevicePath "/dev/input/event*"
 +    Driver "evdev"
 +    Option "AccelerationProfile" "-1"
 +    Option "AccelerationScheme" "none"
 +EndSection
 +
 +Section "InputClass"
 +    Identifier "evdev tablet catchall"
 +    MatchIsTablet "on"
 +    MatchDevicePath "/dev/input/event*"
 +    Driver "evdev"
 +    Option "AccelerationProfile" "-1"
 +    Option "AccelerationScheme" "none"
 +EndSection
 +
 +Section "InputClass"
 +    Identifier "evdev touchscreen catchall"
 +    MatchIsTouchscreen "on"
 +    MatchDevicePath "/dev/input/event*"
 +    Driver "evdev"
 +    Option "AccelerationProfile" "-1"
 +    Option "AccelerationScheme" "none"
 EndSection</code> EndSection</code>
  
/var/www/wiki/data/pages/notes/xorg.conf_snippets.txt · Last modified: 2024/05/18 02:18 by Sean Rhone