New comment by toluschr on void-packages repository https://github.com/void-linux/void-packages/pull/20424#issuecomment-608285454 Comment: The patch for lutris would be rather simple ```patch --- lutris/game.py +++ lutris/game.py @@ -513,7 +513,7 @@ class Game(GObject.Object): env["LD_PRELOAD"] = ":".join( [ path - for path in [env.get("LD_PRELOAD"), "libgamemodeauto.so", ] + for path in [env.get("LD_PRELOAD"), "libgamemodeauto.so.0", ] if path ] ) --- lutris/util/linux.py +++ lutris/util/linux.py @@ -78,7 +78,7 @@ SYSTEM_COMPONENTS = { "VULKAN": ["libvulkan.so.1"], "WINE": ["libsqlite3.so.0"], "RADEON": ["libvulkan_radeon.so"], - "GAMEMODE": ["libgamemodeauto.so"], + "GAMEMODE": ["libgamemodeauto.so.0"], }, } ```