Other News about gaming on Linux

compatibility issues RE9

Reddit Linux_Gaming - 14. März 2026 - 11:47

i just wanted to ask which proton version are you using, mine has been having these "abyssal" problems xd

submitted by /u/Dahlia_Hawthorne_
[link] [comments]

Bazzite stuttering Arc Raiders

Reddit Linux_Gaming - 14. März 2026 - 11:21

Hello fellow penguins,

i recently (2months) switched to bazzite and most Games run awesome except for UE5 Games like Arc Raiders. These Games or Arc Raiders in particular have "random" stutters. I guess pipeline creation/shader creation. Tried every gfx settings but still there. Some rounds run perfectly, 2h later, same Map and i get Stutters here and there. Anyone had simmilar issues? precaching on, Vulkan shader processing on.

I played Cyberpunk and Control before with RT and it run near perfect.

submitted by /u/VTXmanc
[link] [comments]

linux is great for gaming

Reddit Linux_Gaming - 14. März 2026 - 10:26

i switched from windows 10 to bazzite and gaming is great.

i play cs go,cyberpunk 2077,portal 2 and many other games on linux and it feels better than windows 10.

i didnt expect linux to be this easy or user friendly,but it is great .

i also stopped using chrome and gone to firefox because it is preinstalled. it feels better than chrome with ublock origin.

im just sharing my experience with linux,and i think if most gamers used linux they wont use windows again.

submitted by /u/high_dirt
[link] [comments]

One game from library stoped using vulkan shaders

Reddit Linux_Gaming - 14. März 2026 - 09:41

Since yesterday wuthering waves stopped precaching shaders and it lags so bad is there anyway to force it to use vulkan and precaching again?

submitted by /u/anf1n
[link] [comments]

Good os recommendation

Reddit Linux_Gaming - 14. März 2026 - 08:29

Hello everyone, I have a question, if this is the right place to ask it but I just got a gaming laptop and I dont want to get win 11 on it, my question is, can you recommend me an os that works both for not so heavy gaming and working with bigger programs, like blender, photoshop and how can i use word and PowerPoint on Linux?

submitted by /u/sonsablar
[link] [comments]

Please Detroit become human black screen no sony intro. Help needed badly please.

Reddit Linux_Gaming - 14. März 2026 - 08:12

Proton and proton ge not work any proton not work. Quick help needed. Fix needed. I am poor. It's a. 🏴‍☠️game sorry I am poor

submitted by /u/jhatkattar
[link] [comments]

Usurper Reborn - a text-based RPG with native Linux builds (x64 and ARM64), runs great on Raspberry Pi

Reddit Linux_Gaming - 14. März 2026 - 07:27

Steam: https://store.steampowered.com/app/4336570/Usurper_Reborn/

Usurper Reborn is a modern C# recreation of the 1993 BBS door game "Usurper." It's a text-based RPG with turn-based combat, a 100 floor dungeon, NPC world simulation, and online multiplayer. Built on .NET 8, self-contained binaries for Linux x64 and ARM64.

Linux details:

  • Native x64 and ARM64 builds. No Wine, no Proton, no Mono. Self-contained .NET 8 binary, zero dependencies.
  • Runs in any terminal emulator. Alacritty, kitty, foot, WezTerm, xterm, whatever you use.
  • Ships with a bundled WezTerm option if you want a preconfigured experience, but it's completely optional.
  • ARM64 build runs on Raspberry Pi. I've tested it.
  • The online multiplayer server runs on Linux (Ubuntu on AWS). You can self-host with Docker (docker compose up -d) or run the binary directly.
  • SSH into the public server right now and play: ssh [usurper@play.usurper-reborn.net](mailto:usurper@play.usurper-reborn.net) -p 4000 (password: play)
  • Works with MUD clients too (Mudlet, TinTin++) via raw TCP on the same port.
  • GPL v2 licensed, source on GitHub.

What's the game?

11 classes, 10 races, 100 floor dungeon with 8 themes, 7 endgame god bosses, 4 recruitable companions, NPC permadeath, faction system, player housing with upgrades, a player-driven settlement, guilds, tournaments, New Game+ with prestige classes, and a world that simulates autonomously -- NPCs form relationships, get married, betray each other, run for king, and die permanently.

Online multiplayer lets you group up for dungeon crawling, join guilds, fight world bosses, and chat. Or play entirely offline.

Screen reader accessible too (--screen-reader flag) if anyone needs that.

submitted by /u/Snoo_15979
[link] [comments]

Does Lutris have any equivalent to Bottles' 'Eagle' feature?

Reddit Linux_Gaming - 14. März 2026 - 06:29

To preface this immediately, I do not have anything personally against bottles, I just do not vibe with it. (Never liked the super 'material you' esque blobular design. Lutris has some of it, but Bottles has a lot of it)

With that internet-mandatory ass-covering clause out of the way, I'm not generally a fan of Bottles but, as someone who installs a lot of games via generic launchers, (several hundred in Lutris, most of which are random small games I got from twitch prime free drops or something across several different platforms) the new 'Eagle' feature that will analyze the executable and programmatically identify what things to install and enable seems massively helpful.

There have been times where I've had to find pirated versions of games I actually own legal copies of, just because I didn't own the game on steam and didn't know how to properly setup the prefix for it. (this is the single biggest area where I think linux is still behind windows on gaming. The only other major gripe I can think of is bepinx not having it's DLL included as a default override in wine, so unless you know to manually set that override, you'll have no idea why your mods aren't loading.)

Is there any similar tool for Lutris? To be honest I'd be perfectly fine even if it were it's own standalone application that just told me what things to set in winetricks, and I'm half considering installing bottles just to create the prefixes in bottles and then manually move them over to lutris. (I'm just hoping there's a slightly better solution than that)

submitted by /u/temmiesayshoi
[link] [comments]

Compressed game mounting/launching

Reddit Linux_Gaming - 14. März 2026 - 05:24

TL;DR: You can get up to 80% reduction in game install size for up to an additional 20% in load time by using heroic's script settings in advanced to have scripts run ratarmount mount/unmount on a zeekstd compressed game archive to launch the game from a compressed archive.

Slam your small storage devices with more games with the trade off of slightly longer loading times.

  1. Install Heroic
  2. Install/Launch your game
  3. Install Rust
  4. Build/Install zeekstd
  5. Compress game folder using zeekstd as your tar compressor, you can run this script in the same dir containing the games dir. #!/bin/bash shopt -s nullglob for dir in */ ; do dirname="${dir%/}" [[ -d "$dirname" ]] || continue tar -I "zeekstd -l 19" -cvf "${dirname}.tzst" -C "$dirname" . if [[ $? -eq 0 ]]; then # If the compression was successful remove the original folder rm -rf "$dirname" else echo "Failed to archive $dirname" fi done
  6. Install ratarmount
  7. In the dir you have your compressed game archive make scripts named mount and unmount containing. ```

    !/bin/bash

    ratarmount example/path/to/Game.tzst

    !/bin/bash

    ratarmount --unmount example/path/to/Game `` The default option of mounting is read only, so you will need to modify the mount/unmount scripts to mount asr/w` and to commit the changes back to the archive on game exit.

  8. Heroic>Game Settings>Advanced>Scripts, select your mount/unmount scripts for before and after game launch/exit.

  9. Launch your game like normal

submitted by /u/FalsePhilosopher
[link] [comments]

Steamtinkerlauncher not running custom command

Reddit Linux_Gaming - 14. März 2026 - 05:02

I am trying to play the openttd jgrpp patch via launching through steam, both the game and patch run fine separately but when trying to run the patch though tinker launcher it just opens up the normal game. perhaps it is because both executable are named the same? all help appreciated, contrary to photo i have also tried only custom command and fork to no avail. both are native linux files

https://preview.redd.it/zlocvc9lpxog1.png?width=1600&format=png&auto=webp&s=838df3ab324b8d5d91b0df2c2f64254d580bbcd5

submitted by /u/Noxa6
[link] [comments]

Got nvidia reflex and dlss working on nvk

Reddit Linux_Gaming - 14. März 2026 - 05:02

Its on the AUR mesa-git-dlss-reflex for anyone interested, iv confirmed reflex works on overwatch 2 and counterstrike 2

submitted by /u/Wrong_Ad3859
[link] [comments]

Made an open source app to "tame" my Steam library and would like to share it with you

Reddit Linux_Gaming - 14. März 2026 - 02:35

I have over 3k Steam entries (~2.5k real games). First I opened the Storepage of every single new Game, read the Tags, added every Tag (most of the time I tried to choose the first 10 Tags) to the Game to Categorize it. ~10 times "Add to..." per game. Fun isn't it?

Then I found Depressurizer which was the only tool that made this bearable - but it's Windows-only!

Sadly I didn't manage to run it on Linux. Tried it under different Wine and Bottles setups, nope not for me! (Maybe I'm just to stupid to get it up and running?)

Three months ago I finally quitted Windows and forced myself to use Linux as daily driver!
Glad I did it.

And I told myself: Before I start Windows just to sort my game library, let's start to make one for the Linux Community! Directly on Linux, for Linux!

So I built SteamLibraryManager with PyCharm from scratch on CachyOS.

My App is available as AppImage, AUR, .deb, .rpm, tar.gz:

yay -S steam-library-manager

GitHub: github.com/Switch-Bros/SteamLibraryManager

**What it does (just the highlights - check the GitHub README for the full feature list):**

  • **Smart Collections with full Boolean logic** (AND/OR/NOT + nested groups) - Steam's dynamic collections have been AND-only since 2018. So I had the Idea with my own "Dynamic Collections" called "Smart Collections".
  • **Auto-categorize by 17 rule types:** Tags, Genres, ProtonDB rating, Steam Deck status, HowLongToBeat, Achievements, PEGI (Age Ratings), and more
  • **Import all your non-Steam games:** Epic, GOG, Amazon, Lutris, Bottles, itch.io, Flatpak, even ROMs with 16 emulator definitions
  • **Metadata that survives Steam updates** - we overlay your edits on top of Steam's data so they don't get wiped
  • **Built-in auto-updates** for AppImage users - downloads in background, atomic replace with rollback if something goes wrong.

**Steam Deck:** Responsive UI that adapts to 1280x800. AppImage works in Desktop Mode, survives SteamOS updates. No pacman hacks needed. Tested on both LCD and OLED.

It's my first App, please be patient with me 🙃
I just want to give something back instead of using it just for my own.

submitted by /u/Ready-Yogurtcloset93
[link] [comments]

Missing steam files

Reddit Linux_Gaming - 14. März 2026 - 02:28

Ive tried uninstalling and then reinstalling it but that doesn't work. Somehow it doesn't recognize that its supposed to download anything, my other games work fine though, anyone know a fix?

submitted by /u/MaterialYogurt208
[link] [comments]

Opening a new window of Steam is ever so slightly delayed on Linux.

Reddit Linux_Gaming - 14. März 2026 - 02:17

This isn't a major problem but it concerns me that nobody ever really talks about it or found a solution/cause.

When you open Steam and then close the window (but it's still running in the background), and then open it again, it takes like 1-2 seconds to display the window opening.

On Windows, this action is near-instant with the IDENTICAL system/storage drive.

I have noticed this slight delay opening Steam on Mint (Cinnamon), Fedora (KDE), and CachyOS (KDE). ALL of my friends running any distro of Linux has screen shared the exact "problem" I have been dealing with for months. I know this has been an issue since at least summer 2025 as I found a random post in an EndeavourOS forum post stating around that time (cannot find the post again atm).

The issue occurs on the standard Steam install (Pacman, RPMFusion, and DEB). Unsure about Flatpak as I prefer not to use that especially when the Steam Flatpak is not managed by Valve.

So my question is... does anyone know why this occurs? Again, not a huge deal, I can wait a single second or two... but it does make my PC *feel* slightly sluggish and can be a bit annoying when opening and closing Steam often throughout the day. No other program that I can tell behaves like this. I would include footage comparing but my Windows is long gone and I don't really have a good way to capture it anonymously. But if you open Steam you will notice it takes a second or two after clicking the icon before the window appears.

submitted by /u/sleepytechnology
[link] [comments]

Quick testing of vkd3d-proton descriptor heap branch using Nvidia 595 drivers

Reddit Linux_Gaming - 14. März 2026 - 02:12

What I have:

RTX 5080, CachyOS, drivers 595.45.04 (stable version released today), Proton Experimental bleeding edge branch, 2026-03-13-something.

vulkaninfo shows that descriptor heap is available of course

vkd3d-proton repo cloned using branch descriptor-heap-test, built using package-release.sh that comes with the repo

Copy-pasting d3d12.dll and d3d12core.dll into the Cyberpunk 2077 /bin folder to test vkd3d-proton changes.

Running Cyberpunk 2077:

RT Ultra preset, DLSS Quality.

  • Before using descriptor-heap from vkd3d-proton: 88.31, 88.58, 87.93 fps.

  • After adding d3d12 dlls: 91.13, 91.70, 91.26

It's not yet stable but already I can run Cyberpunk and get a small perf boost which is good news imo

submitted by /u/grumd
[link] [comments]

Made an open source app to "tame" my Steam library and would like to share it with you all.

Reddit Linux_Gaming - 14. März 2026 - 02:09

Language, Smart Collection, Cover and Age Rating

I have over 3k Steam entries (~2.5k real games). First I opened the Storepage of every single new Game, read the Tags, added every Tag (most of the time I tried to choose the first 10 Tags) to the Game to Categorize it. ~10 times "Add to..." per game. Fun isn't it?

Then I found Depressurizer which was the only tool that made this bearable - but it's Windows-only!

Sadly I didn't manage to run it on Linux. Tried it under different Wine and Bottles setups, nope not for me! (Maybe I'm just to stupid to get it up and running?)

Three months ago I finally quitted Windows and forced myself to use Linux as daily driver!
Glad I did it.

And I told myself: Before I start Windows just to sort my game library, let's start to make one for the Linux Community! Directly on Linux, for Linux!

So I built SteamLibraryManager with PyCharm from scratch on CachyOS.

My App is available as AppImage, AUR, .deb, .rpm, tar.gz:

yay -S steam-library-manager

GitHub: github.com/Switch-Bros/SteamLibraryManager

**What it does (just the highlights - check the GitHub README for the full feature list):**

  • **Smart Collections with full Boolean logic** (AND/OR/NOT + nested groups) - Steam's dynamic collections have been AND-only since 2018. So I had the Idea with my own "Dynamic Collections" called "Smart Collections".
  • **Auto-categorize by 17 rule types:** Tags, Genres, ProtonDB rating, Steam Deck status, HowLongToBeat, Achievements, PEGI (Age Ratings), and more
  • **Import all your non-Steam games:** Epic, GOG, Amazon, Lutris, Bottles, itch.io, Flatpak, even ROMs with 16 emulator definitions
  • **Metadata that survives Steam updates** - we overlay your edits on top of Steam's data so they don't get wiped
  • **Built-in auto-updates** for AppImage users - downloads in background, atomic replace with rollback if something goes wrong.

**Steam Deck:** Responsive UI that adapts to 1280x800. AppImage works in Desktop Mode, survives SteamOS updates. No pacman hacks needed. Tested on both LCD and OLED.

It's my first App, please be patient with me 🙃
I just want to give something back instead of using it just for my own.

submitted by /u/Ready-Yogurtcloset93
[link] [comments]

Seiten