Reddit Linux_Gaming

Reddit Linux_Gaming Feed abonnieren
A subreddit for discussions and news about gaming on the GNU/Linux family of operating systems (including the Steam Deck).newest submissions : linux_gaming
Aktualisiert: vor 37 Minuten 18 Sekunden

Input remapping - which one do you use?

10. August 2025 - 13:46

Hi there guys,

Im a big fan of rewasd on windows, its the one piece of software i've never regretted paid for.

Sadly, on linux it seems input remapping is still in its infancy. Where there might be several tools that do it, none of them have a good GUI in place.

Which one do you use and why? Ideally i need something quite advanced : per application support, supports mouse remapping and all the basic changes (double, triple tap, held etc)

Happy gaming!

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

EAC (easy anti cheat) completely broken with steam, idk what else to do

10. August 2025 - 13:42

so my issue is that whenever I try to launch Battlebit Remastered, Elden Ring, or any other game that requires EAC through Steam, it tries to launch the EAC client and then presents a "Launch Error ... Unexpected error. [#1]". I have tried several different Proton versions through the SteamPlay / Compatibility tool. I have also tried GE-Proton using protonup-qt.

I have tried uninstalling steam (as well as removing every steam related file in .steam, .cache, you name it until the query "locate steam" returned nothing but icons) and reinstalled steam, logged in, and the same exact issue occured. I am suspicious that the issue might be with wine? I mean I have Star Citizen installed through Lutris, and it runs EAC just fine.

https://preview.redd.it/dj69zy5bi6if1.png?width=6000&format=png&auto=webp&s=79e7e5de895b75a1443bb617c020ff2dd2251057

distro: Arch Linux

DE: Hyprland

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

When I open Dead by Daylight or any other game, it won't start. I'm having this problem on Steam and Lutris.

10. August 2025 - 13:40

Hello everyone! I am experiencing an issue with Steam and Lutris. When I attempted to open Dead by Daylight, it started to load but then simply closed and Steam stopped. I tested another game, Deep Rock Galactic, and an error appeared, which I will send you an image of.

I use popOS, and these are my PC's specs: Intel® Core™ i5-8400 CPU @ 2.80GHz × 6, NVIDIA Corporation TU117 [GeForce GTX 1650], Duex H310, and 8.0 GB.

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

sober not launching

10. August 2025 - 13:32

whenever i launch sober on arch linux it just doesnt open and then stops the app. how do i fix this?

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

I can't get myself to daily drive linux because of a few problems

10. August 2025 - 13:32

I installed linux mint cinnamon.

The first problem I have is the fact that there is no proper software for my g502. I tried piper and it doesn't satisfy my requisites. I need multiple profiles for all the games I play(not onboard memory). I need profiles to switch automatically. Without these options using the OS itself became a little frustrating compared to windows. Also piper didn't save my settings for some reason.

The second problem is I need a zooming program. On windows I use "zoomit" which allows me to bind the zoom function to a keybind so when I press it it zooms 2x. Maybe I haven't looked hard enough but haven't found anything similar. I know the OS itself has a zoom function but it involves 2 keys for it to function (alt+ scrollwheel) which is a problem for me because most of the time I just use my mouse to navigate everything.

While the second problem is mostly specific to me, the first is a big problem for everyone using logitech mice.

If anyone has solutions for the first problem I'm open to any suggestion. I just need to adjust dpi, keybinds, make profiles that switch automatically when I open a program or a game.

submitted by /u/Limp-Judge-623
[link] [comments]

Oblibion (2009) FPS drops when enemies see me

10. August 2025 - 12:25

Hi! I'm playing the old Oblivion on my pretty good PC. Everything is OK untill some enemy starts to see me. Then I get sudden FPS drop to 15-20. No FPS drops near usual NPCs. No FPS drops when in stealth and enemies doesn't see me. FPS become normal again when I kill this enemy.
There are also FPS drops in cutscenes and in dialogs.
Tried different proton versions. No change.

Anybody had same issue?

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

Automatically Record Games with GPU Screen Recorder on Linux

10. August 2025 - 12:23

Hey everyone!

Let me preface this by saying, this is not a comprehensive guide, just a solution I cobbled together for my own problem and thought might help others. I am running CachyOS with Gnome.

The Problem: I wanted to automatically record games - starting recording when the game launched and stopping when it closed, with my preferred settings. Steam's built-in auto-record feature didn't work reliably for me. I suspect a combination of factors were at play—potentially a Wayland issue or problems related to my game drive being formatted as NTFS (which I'm now using ext4 instead). I'm a big fan of GPU Screen Recorder, but it lacks automatic recording.

The Solution: I experimented with watching for the game process using Bash scripting, but this resulted in a constantly running background process, which wasn’t ideal. Then I remembered that Steam allows launch commands, which I already use for things like Mangohud and NTSYNC. So, I thought, “Why not run a script there?”

Here’s the script I put together. It uses Steam's launch options to automatically start and stop GPU Screen Recorder.

#!/bin/bash # Configuration OUTPUT_DIR="/mnt/Mass_Storage/Game_Recordings/$(date +"Video_%Y-%m-%d_%I-%M-%p.mp4")" FPS=60 VIDEO_QUALITY="very_high" AUDIO_SINK="default_output|default_input" RECORD_MODE="screen" # Start GPU Screen Recorder gpu-screen-recorder -w "$RECORD_MODE" -f "$FPS" -q "$VIDEO_QUALITY" -a "$AUDIO_SINK" -o "$OUTPUT_DIR" & RECORDER_PID=! notify-send -t 1500 'GPU Screen Recorder' "Started recording video as $OUTPUT_DIR" # Launch the game (passed via %command%) "$@" # Stop recording kill -SIGINT "$RECORDER_PID" wait "$RECORDER_PID" notify-send -t 1500 'GPU Screen Recorder' "Recording saved as $OUTPUT_DIR"

How to Use It:

  1. Save the Script: Copy the script above and save it to a file (e.g., record_game.sh).
  2. Make it Executable: Open your terminal and navigate to the directory where you saved the file. Then run: chmod +x record_game.sh.
  3. Move the Script: Move the script to a globally accessible directory, such as ~/usr/bin. This allows you to call it from anywhere.
  4. Steam Launch Options: Right-click your game in Steam, go to "Properties," and then "General." In the "Launch Options" field, add the following: record_game.sh %command%. If you already have other commands in that field, simply add it before the %command%. For example: mangohud PROTON_USE_NTSYNC=1 record_game.sh %command%.

That's it! When you launch the game, the script will automatically start recording, and stop when the game exits. You'd receive notifications at the start and end of the recording.

Important Notes:

  • Dependencies: Ensure you have gpu-screen-recorder and notify-send installed.
  • Output Directory: Adjust the OUTPUT_DIR variable to a location where you want your recordings saved. Make sure the directory exists!
  • Customization: Tweak the FPS, VIDEO_QUALITY, AUDIO_SINK, and RECORD_MODE variables to suit your preferences.
  • Error Handling: This is a basic script. More robust error handling could be added.

Let me know if you have any questions or suggestions! I hope this helps!

submitted by /u/Tushar-OP
[link] [comments]

Wuchang consistently crashing in the skill tree

10. August 2025 - 12:18

I'm on CachyOS with Proton native and everything is updated. I've seen at least one other person with the same issue.

Any more people experiencing this and is there a solution?

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

DOOM: The Dark Ages Fails to Launch

10. August 2025 - 12:17

https://reddit.com/link/1mmextq/video/ej7pvbx826if1/player

Since switching to NixOS recently, I have been unable to launch the new DOOM despite trying a myriad of options. Changing proton versions, using gamescope, enabling/disabling intro videos, renaming amd_fidelityfx_vk.dll, using PROTON_USE_WINED3D=1, disabling Steam overlay, unsetting LD_PRELOAD, etc - nothing has changed the outcome. I've also had issues with this game on Fedora too after the game got its path-tracing update, despite the game working just fine before the update. I would really appreciate if anyone has an idea of what could be going on.

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

Logitech Extreme 3D Pro Joystick

10. August 2025 - 11:48

Hey all

I've recently switched from Windows to Nobara Linux and I've been enjoying it so far. I have a few issues here and there and wondered if they are fixable? I'm new to Linux and any help would be appreciated.

I have a Logitech Extreme 3D Pro (see pic) and it works fine in Windows but on Linux (I tried a few distros, hoping switching would solve the issue), the throttle and yaw/z-axis are not recognized correctly.

In the System Settings >> Game Controller the pitch/roll are assigned to the x/y or the Left position, the throttle is assigned to the y-axis and yaw is assigned to the x-axis of the Right position.

In the game Nuclear Option the controller is recognized and the pitch & roll movements work fine, but the throttle & yaw do nothing, also when trying to calibrate nothing happens.

AntiMicroX recognizes all inputs correctly.

Any tips or ideas?

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

Trying to revive old ThinkPad s440 with bazzite

10. August 2025 - 11:34

I have a ThinkPad s440 with a i5 4200u and Radeon 8670M

I want to know if bazzite is supported and if so what gpu option should I pick I want to use this more like a indie/emulation machine and want the whole steam os game mode experience if possible.

And mess around with Linux gaming a little as I am new to linux

submitted by /u/Dave313-
[link] [comments]

Make optimized sunshine/moonlight server and client.

10. August 2025 - 11:08

I'm planning to turn my old laptop into a moonlight/steamlink machine (most likely Moonlight) and connect it to my TV, so I wanted to know if you guys know a good linux distro or just something like plain arch with little delay and software configuration.

I know that I will also will need a dummy hdmi plug if this ends up working like I wanted it to, so I would also ask if you guys have like a recommendation for hdmi 2.1 plug or something similar with also a way to connect my laptop to the TV, because it only has 2 usb c ports and 1 usb a port (usb c ports support displayport and I'm using the usb a for usb to ethernet adapter).

Edit: just to be clear, my PC is the host not the laptop.

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

Mesa updated but games and LACT show older version

10. August 2025 - 10:19

https://preview.redd.it/9frkya0hi5if1.png?width=1926&format=png&auto=webp&s=e73fb8f1ed78050f3a2d9df46674b37c225546dd

https://preview.redd.it/mswm1a0hi5if1.png?width=709&format=png&auto=webp&s=fa6f03c0b4c9f84ade1845655680eacf79a9a3e9

https://preview.redd.it/1h80r90hi5if1.png?width=682&format=png&auto=webp&s=1433d1a88b8adcec4c7e516ccab28f4a040df731

Hello, got into Bazzite about half a year ago, and i wanted to ask because of this annoying bug i presume, but every time mesa updates it shows that it did update to the newer version but all my games and LACT shows an old version of mesa installed, anybody have a clue what is happening? TNX

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

GE Proton not showing up

10. August 2025 - 09:44

https://preview.redd.it/xwe13asbc5if1.png?width=1348&format=png&auto=webp&s=b0c4de7d3a618ed589e42d8b398ded362abef450

Im not sure what I do wrong here, the path /home/user/.steam/steam/compatibilitytools.d is and I restarted Steam several times now. Thanks

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

What to get from Protontricks

10. August 2025 - 09:27

Skyrim SE

SSE engine fixes require: Microsoft Visual C++ Redistributable for Visual Studio 2019

BUT Community Shaders require Microsoft Studio C++ Redistributable(is this the vcrun 2022???)

will both work if I just get vcrun 2022 or do I also need to get vcrun 2019?

submitted by /u/Commercial-Funny8532
[link] [comments]

Steam windows pop up while playing with Proton

10. August 2025 - 07:44

https://preview.redd.it/4zpj0ohoq4if1.png?width=1797&format=png&auto=webp&s=56c25edd190cfbeb9097449b54c99dc42df86bb4

See the screenshot. These will pop up relentlessly if I try to close them. It seems best if I just let them stay open in the background, then I can continue playing as I normally would.

It doesn't seem to be affected by the version of Proton I use, just when I use Proton at all. Native games don't seem to be affected, I don't think.

I can't seem to get any results about this when I search, I get unrelated posts and information.

Debian 13, AMD 5600X, AMD Radeon 6750XT, non-Flatpak Steam

submitted by /u/E-werd
[link] [comments]

Proton/Wine

10. August 2025 - 07:21

Hello. As far as I know, every gaming oriented distro has proton and/or wine pre installed in it, or am I wrong? Also, if I try to install steam or some other alternative gaming store, it would install proton, or not? I'm asking because I was curious about playing linux-native AA or AAA 3D games. Sorry if I asked dumb/noob questions 😅 Thanks anyway.

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

High CPU usage

10. August 2025 - 07:17

I just got Arch Linux 3 days ago for the first time because alot of friends recommended,and started gaming via Steam proton .
The problem is I keep getting high CPU usage and frames drops on non demanding games such Disco Elysium and Zenless zone zero even old games like GTA5 the usage average 90-80% while the GPU doesn't even hit the 60%, games when I play those same games on windows I get more frames and CPU usage less than 70%.
My specs i5 9600 RTX3070 32gb ram ddr4 1TB SSD nvme .

I'm new to Linux in general , so I expected to run into troubles

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

Seiten