Hi Chris, Chris Marusich writes: > Mark H Weaver writes: > >> However, your proposed workaround is not a proper fix, and I don't think >> we should apply it system-wide in Guix. > > Can you elaborate on why it is not a proper fix? It isn't obvious to > me. You're right, it's not obvious, and an explanation is indeed warranted. The problem is that the Device section added by this patch specifies that the "intel" driver should be used. I haven't tested it, but the way xorg.conf generally works is that explicit configuration overrides auto-configuration. Quoting from the introduction of xorg.conf(5): Xorg supports several mechanisms for supplying/obtaining configuration and run-time parameters: command line options, environment variables, the xorg.conf configuration file, auto-detection, and fallback defaults. When the same information is supplied in more than one way, the highest precedence mechanism is used. The list of mechanisms is ordered from highest precedence to lowest. https://www.x.org/archive/X11R6.8.1/doc/xorg.conf.5.html#sect1 If we want to make UXA the default acceleration method for xf86-video-intel, I've attached a patch that accomplishes this without overriding auto-configuration. Given the severity of the problems on the X200, I would be in favor of applying this patch to master. The X200 is an important system for us because it is one of only two RYF-certified laptops. FWIW, I do not notice any visually apparent difference in performance between UXA and SNA on the X200 for things like web browsing, watching videos, and running gnome-shell. Nonetheless, I've seen reports that SNA performs significantly better than UXA, at least on newer Intel chips: http://cynic.cc/blog/posts/sna_acceleration_vs_uxa/ https://ickle.wordpress.com/2013/10/02/and-over-in-the-red-corner/ https://www.reddit.com/r/archlinux/comments/17sy9l/intel_graphics_uxa_vs_sna/ I would invite someone who cares about this to enhance 'xorg-configuration-file' in (gnu services xorg) to allow users to optionally specify which accel-method to use for each driver. Mark