Skip to content

Instantly share code, notes, and snippets.

@sciboy12
Created February 27, 2020 18:37
Show Gist options
  • Save sciboy12/f3e640db9c66a6fdfec7bb8b869d071b to your computer and use it in GitHub Desktop.
Save sciboy12/f3e640db9c66a6fdfec7bb8b869d071b to your computer and use it in GitHub Desktop.
Fix for DirectX-based games not running on Proton 4.11 or newer
# Enable DRI3 on Intel GPUs
# Place this file in /etc/X11/xorg.conf.d/
Section "OutputClass"
Identifier "my intel driver settings"
MatchDriver "i915"
Option "DRI" "3"
EndSection
# Install Vulkan drivers
sudo apt install libgl1-mesa-glx:i386 libgl1-mesa-dri:i386 mesa-vulkan-drivers mesa-vulkan-drivers:i386
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment