Reddit Linux_Gaming

Subscribe to Reddit Linux_Gaming feed
A subreddit for discussions and news about gaming on the GNU/Linux family of operating systems (including the Steam Deck).newest submissions : linux_gaming
Updated: 10 min 14 sec ago

Help me

20 Apr 2026 - 3:37pm

https://preview.redd.it/fzfpslv8mcwg1.png?width=512&format=png&auto=webp&s=745acd486f5dd5131821485a02fac9fee1e85287

I have a Dell Latitude E6440 with an HD 4600 which isn't Vulkan-compatible, so on Linux I can only game with OpenGL, which gives me worse performance than DirectX on Windows. What do you recommend — keeping a dual boot with Windows for gaming, or just sticking with OpenGL on Linux?

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

Linux cachyos - Mouse back/forward buttons interract with other windows

20 Apr 2026 - 3:19pm

when i press back of forward buttons on mouse, it interacts with other windows not in focus.

happens with games, discord and sometimes while in game and swithes focus to other open windows.

This all started after i ran updates last week.

this is my first real bug since switching to linux(5 months ago.)

In video i press back/forward on mouse then tab back to browser and it happens again.

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

consigo jogar no Linux Ubuntu

20 Apr 2026 - 3:07pm

Eu queria comprar um notebook, o melhor que consegui achar foi um linux ubuntu, nunca usei linux mas eu me adapto bem, porem nao sei ate que ponto eu conseguiria fazer as coisas sem ter dificuldade… queria saber como funciona para jogar jogos da steam, baixar jogos, jogar em emulador ou jogos baixados da internet.. Vi que o linux e bastante personalizavel e isso foi o que mais me chamou a atencao… mas tenho medo de ter muitas dificuldades. O notebook teria ultilidade para jogos mais leves, desenho digital, estudo e programação basica/mediana

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

I just released a mining/automation cozy game with native Linux support - Chipmatic

20 Apr 2026 - 3:02pm

Hey r/linux_gaming!

I posted 9 months ago about my game Chipmatic, and I didn't expect so many positive comments.

Today, I'm very happy to announce I just released Chipmatic on Steam with native Linux support!

Chipmatic is a cozy mining/automation game with no timers or enemies. You control a mining robot called Chip on its quest to reach Earth's core.

It has also been fully verified on Steam Deck if any of you prefer to play games like these on a handheld instead (like I do).

We've tested thoroughly on Linux so it should work perfectly fine, but if any of you run into any niche issues feel free to post on the Steam Discussions or on our Discord (link in-game) and we'll do our best to get them solved.

Thank you all for your support, linux community!

Steam link: https://store.steampowered.com/app/3780950/Chipmatic/

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

No rumble in controller.

20 Apr 2026 - 2:45pm

Hey linux users! I'm new to linux and theres one thing that's bothering me when playing games on linux which is my controller won't rumble (vibrate 😏 oh boy.) Uh in windows it does work the moment I plug it so its technically plug and play, but on linux it does not work for some reason I've no idea why

My controller is some generic one (Ant esports GP115) tho it does support vibrations since I've always used it for years now on windows and vibrations worked out of the box.

I'm using cachyos (I use arch btw)

I've Game Rumble enabled in the steam controller settings, Thanks!!

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

Shared memory support for Nvidia GPUs?

20 Apr 2026 - 2:12pm

Does anyone know about potential solutions for VRAM management issues on Nvidia GPUs and the lack of GTT support (the equivalent of shared memory in Windows)?

This is what glxinfo -B has to say:

.. Memory info (GL_NVX_gpu_memory_info): Dedicated video memory: 4096 MB Total available memory: 4096 MB Currently available dedicated video memory: 3443 MB OpenGL vendor string: NVIDIA Corporation OpenGL renderer string: NVIDIA GeForce RTX 3050 Ti Laptop GPU/PCIe/SSE2 ..

As you can see, the total available memory is the same as the built-in VRAM amount (4GB), which is not the case on AMD GPUs since those do benefit from additional RAM that adds to the total amount.

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

I made a hyprland-dmemcg-boost POC like KDEs plasma-foreground-booster

20 Apr 2026 - 12:14pm

Inspired by Natalie Vock's blogpost on https://pixelcluster.github.io/VRAM-Mgmt-fixed/
(you should probably read all of that brilliant post to know what I actually made)

I made a poc so hyprland can join in on the fun, and not just KDE.
https://github.com/egnappahz/hyprland-dmemcg-boost

Youll need an arch-linux based distro, and a kernel that supports it (most kernels are in the stage on picking up on it, at the end Im sure it will be everywhere judging by the adoption rate)

I installed the cachyos kernel on my vanilla arch linux because there seems to be a lot of love poured in it (switched from linux-zen), but I already saw signs of linux-zen picking this up aswell.

Quick help how to get the cachyos kernel on ANY type of arch linux distro:

pacman.conf:
[cachyos-v4]
Server = https://mirror.cachyos.org/repo/x86_64_v4/cachyos-v4/

(You should probably use v3 on older cpus)

also add the funky cachyos archs in the same conf file:
Architecture = x86_64 x86_64_v4 x86_64_v3

Then just:
sudo pacman-key --recv-keys F3B607488DB35A47 --keyserver keyserver.ubuntu.com
sudo pacman-key --lsign-key F3B607488DB35A47

then you can just install the kernel like that:
sudo pacman -S linux-cachyos linux-cachyos-headers

And adapt whatever bootloader you have

When you get the kernel running, or any kernel that supports it, this should work:

[ !19439 ] eggzpc ~ # cat /sys/fs/cgroup/dmem.capacity drm/0000:03:00.0/vram 17095983104 drm/0000:18:00.0/vram 536870912

(I got 2 GPU's here)

from then you can follow the instructions from https://github.com/egnappahz/hyprland-dmemcg-boost to get the userland tool going.

The only "downside" from this implementation is that you will have to do the "scoping" yourself, youll have to run each game inside its own wrapper. People seem to suggest gamescope for this to do the segmentations, but I am not a fan at all of gamescope, I dont use it, I let hyprland do the game compositing

gamescope --mangoapp -- systemd-run --user --scope --slice=app.slice -- %command%

But what I do is make my own wrapper. Heroic supports this via the wrapper section:

exec systemd-run --user --scope --slice=app.slice -- "$@"

And steam has the commandline override:

systemd-run --user --scope %command%

Now yes, this is some extra work per game, I realise this can be painful. I personally always work with a global wrapper script in heroic (for mangohud and other stuff), so I already had a central wrapper script going, so for me was painless;
But I realise theres some room for improvement there for other users. We will see how the userland adoption goes from this nifty kernel improvement. Better options might pop up.

Last note: if you have 2 GPUs like I do, it will ignore the smaller gpu (Vram wise). Thats likely the best route to take anyway, because all of this is untested and not as useful at best on a iGPU.

I hope this is useful to people. I only tested this on my system and it seems to work, so there might be unexpected bugs here for others. I'm happy to hear them

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

Overwatch and Mouse (Pointing Up) Issues When Using Communication Wheels

20 Apr 2026 - 11:42am

For video context, whenever a communication wheel is used (voiceline, spray, emote wheels), my mouse flicks my hero's perspective up. This doesn't happen during normal gameplay, only when using communication tools, deaths, text chat, switching heroes, loading in, etc. I'm using CachyOS on GNOME 50.1 as I just switched from KDE Plasma. Also using the Steam version of Overwatch with proton-cachyos-10.0 slr compatibility. Using a dual monitor setup, 2560 x 1440p 200.1hz aspect ratio if that helps any. The *only* launch option that has worked for me so far has been: gamescope --force-grab-cursor -- %command%, but this messes with my resolution, doesn't fullscreen correctly etc. No, it's not my mouse sensor as I've tried using multiple mice. I've also tried switching my polling rate on my mouse as that's been an issue before. All drivers and packages are up to date. I've been searching for a fix for hours with no hope. If anyone has any suggestions, I'm willing to try anything out. If there's any other communities that can help out I wouldn't mind cross-posting either. Thanks! ^^

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

GTA V Enhanced current state

20 Apr 2026 - 11:34am

I am running GTA V Enhanced on my Linux Gaming Notebook with AMD CPU and AMD GPU.
GTA V was running fine in the past. But recently the game only runs for a while and then it begins to stutter and the FPS drops to 0.
Is this a know problem? Or is it running well for others?
I am on Steam.

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

Afterburner Nvidia undervolt and fan curve profile on Linux - in a single click!

20 Apr 2026 - 10:39am

Spent long hours tuning the perfect undervolting/fan curve in MSI Afterburner on Windows. Then rebooted back to Linux - to be blasted with fan noise, excessive heat and power consumption.

I had this experience forever with the Founders Edition 5080, and there are so much cards on the market with totally sh*t profiles shipped by default.

Being so frustrated with this for such a long time, I decided to put all this AI Codex hype into some good use and to reverse engineer the Windows stuff. Managed to fully understand and parse the Aterburner profiles, figured a lot of from the Nvidia libraries on Linux, but the funny thing that eventually exactly at that time, the human made pull request made it's way into LACT, so the voltage setter problem got solved!

Anyway, if for instance you dual boot like me, and have nicely crafted setup in Afterburner with your favorite profile, then with this tool you can import this to Linux in a single command. The whole thing is not just yolo vibe code in a single prompt, I have 20 years of experience doing low level Linux work, so don't worry you will get some random results.

You just need to provide the main Afterburner Program Files dir, either mount NTFS Windows drive in Linux, or just copy the directory some other way, nothing more is needed! The profile is parsed in a dry run, so you can check if it parsed a reasonable voltage and fan curve before trying it out on a real machine. The next step could be to run in foreground and monitor how the card behaves under load. Finally you can persist those changes in systemd.

I tested it only with Afterburner 4.6.6 and Nvidia newest 595 driver on Linux and Blackwell card. Happy to fix any issues if it does not work for your card, but probably we need to stick only to recent Afterburner versions, GPUs and drivers. Also it would be great if you could report any success on using the tool! It is ment to apply an actual undervolt curve, which is flattened at some frequency and voltage sweet spot, below the stock configuration, so you won't do any crazy overclocks with that. The aim is efficiency not raw power, keep that in mind.

-- https://github.com/jpietek/PenguinBurner --

https://preview.redd.it/xd4rcd4s3bwg1.png?width=2860&format=png&auto=webp&s=9e050b3df1faa86768bed6c2d08e128269dfc8b7

Happy Penguin Burning!

BTW For my 5080 FE it is max around 220W, 2600Mhz nad 875mV - order of magnitude better experience with undervolting than stock.

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

manually set fan speed on asus laptop?

20 Apr 2026 - 10:36am

i have tried using rog-control-center to change the fan curves, but it doesnt seem to work properly - i set it to reach 100% speed at 80 degrees, hit 80 degrees but the fan doesnt seem to do much (yes i have ticked enable and clicked apply)

is there any way to bypass the curves and just set it to 100% when i am playing games that use a lot of cpu

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

Xenia + RPCS3 don't launch with Bazzite gaming mode with Emudeck/ES-DE

20 Apr 2026 - 9:49am

Hello,

I have a mini pc with bazzite and Emudeck. Everything works very good. I am very happy about that but only xenia and rpcs3 don't work... I tried a lot of things but didn't find a solution...

Xenia and rpcs3 work if a launch them manually in pc mode. I can play games ect. But when I want launch games through gaming mode + ES-DE :

Xbox360 : "did you installed xenia ?" es-de notification

Ps3 : nothing happens

Is there any solution to solve this ? Thank you

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

5090 on Nouveau

20 Apr 2026 - 9:23am

Curious to know if the 5090 is so overkill that even on nouveau drivers it still beats AMD’s latest and greatest GPU.

submitted by /u/Roent-111
[link] [comments]

What proton is people's "default"?

20 Apr 2026 - 8:09am

Probably asked a dozen times, but a poll number is better, its for science, no reason in particular

View Poll

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

How to use corsair AIO arch?

20 Apr 2026 - 6:17am

I have tried both liquidctl and coolercontrol and both have caused imense problems. From flashing lights to causing ram issues. and cooler control doesnt do anything at all other then throwing a monstorous amount of errors about bad gateway error which i can find no documentation about.

As for liquidctl

liquidctl list:
Device #0: Corsair Commander Core XT (broken)
Device #1: ASUS Aura LED Controller
Device #2: Corsair Commander ST (broken)

and it properly shows rpms and temperatures in liquidctl status
however any attempt to do anything with any fan results in errors

liquidctl -m "Commander Core XT" set fans speed 20 0 50 50 70 100

returns : ERROR: Corsair Commander Core XT (broken): unspecified liquidctl error

Im running the latest version of arch linux with kernal 6.19.11-zen1-1-zen

Everyone else seems to have it work perfectly after installing for both liquidctl and coolercontrol but neither are working and causing DRAM errors on my pc. I have tested on windows stress tests and everything is fine. I cant test anything on linux at the moment as my cpu temps spike to 80C just installing something from the AUR. The aio i have is the corsair elite capellix h100i where the pump is connected to the Comander Core as its the only thing with its pripority connector and all the fans and RGB are connected to the Comander Core XT.
Can someone help me please

submitted by /u/Disastrous-Bike5691
[link] [comments]

Is there a program to have custom Discord Rich Presence based on what applications are running?

20 Apr 2026 - 6:11am

Im looking for a program so I can make it so any application I want can be displayed as my rich presence on Discord.

Linux-Discord-Rich-Presence works okay but its really annoying to create a config file for each program that exists and then update a custom launch script for the programs .desktop file and in any game launchers to run a custom script that changes it using this tool.

For example I would set up a config file for VLC and set my own name, image, status, details and small image and choose the process name. Then once that process is seen running it changes my Discord rich presence to the info i inputted for the VLC configuration.

I really hate the built in Discord solution as if the application doesnt have an image in their database then screw you no image, same with not being able to set a status, details but at least you can change the name.

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

Frustrated with my kubuntu install, intel GPU problems and dell touchpad

20 Apr 2026 - 4:17am

Suggested this was more than a question in the newbie thread so here goes... Running kubuntu on a good Dell business laptop (9450), no gaming monster but more than enough for my purposes (civ7, hopefully BG3 if I get this solved). Not that new to linux, but very new to gaming on linux (database servers don't need graphics drivers) and I'm frustrated being back at intermediate level like its my first win98 PC I built.

Week and a bit ago, I ran updates and it all went to hell. Boot to black screen, eventually figgured out I could interrupt boot into the grub menu, then boot options menu, finish boot normally and it worked. Last week another update and that stopped being necessary so it boots normally now, but civ 7 says drivers aren't compatible and fails to load. I tried Slay the Spire 2, loads but does not work well. All my search terms lead me off into nvidia vs AMD land, and I have neither. Tried forcing the Xe drivers adding modprobe entries to grub conf but that fails too, so I'm back to just the default line.

Even before this, Civ would have periodic moments where everything hung up for 6 seconds or so, and the touchpad would occasionally forget gestures exist and pretend like it's 2007 The touchpad went back to normal when I put it to sleep for a moment so I had some troubleshooting action there I was starting when this happened. Did I choose a bad distro/DE combo? Or, if not "bad" exactly, is there a better option for my setup? People talk about linux gaming in ways that make me feel that I've got an odd case, but I'm not sure where to go with it next.

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

where does Official Proton save at?

20 Apr 2026 - 3:00am

im trying to find the official Proton version its not in compatibitly.tools so where would it be?

sorry its short that's all i say

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

Pages