Gaming

Archlinux in general

https://wiki.archlinux.org/title/Gaming

Steam

See Steam

Lutris

some tweaks: https://github.com/lutris/docs/blob/master/README.md

Disable vsync

Option 1, disable it system wide

#cat > /etc/drirc << EOF
<driconf>
   <device>
       <application name="Default">
           <option name="vblank_mode" value="0" />
       </application>
   </device>
</driconf>
EOF

Option 2, disable it for user

cat > /$HOME/.drirc << EOF
<driconf>
  <device>
    <application name="Default">
      <option name="vblank_mode" value="0" />
    </application>
  </device>
</driconf>
EOF

Experimental features

there is a bare bones in development utility called adriconf that can toggle a lot of features

Enable offloading GL driver work to a separate thread

cat > /$HOME/.drirc << EOF
<driconf>
  <device screen="0" driver="radeonsi">
    <application name="Default">
      <option name="mesa_glthread_driver" value="true" />
    </application>
  </device>
</driconf>
EOF

Last modified: Sun Apr 6 20:57:04 2025