This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| On OBS advanced recording setting, settings you should have listed Navi 21 VAAPI device (for 6900XT) | |
| Rescaling should be off. | |
| Don't forget to cut (with alt) the not recorded/streamed parts of the screen when cropping the capture size to 1080. | |
| For decent local recording and not to big file sizes, a good setting is: | |
| Rate Control: CQP with QP at 30 (dynamic, avoids cornering stutters.) 0 impact on gaming. | |
| (Less increments quality but also file size) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| ///You still need to add the icons to the dash images. | |
| car = lcase($prop('CarModel')) | |
| if (car.includes('bmw')) { | |
| return 'BMW'; | |
| } | |
| if (car.includes('mercedes')) { | |
| return 'mercedes'; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| vim ~/.local/share/Steam/steamapps/compatdata/211500/pfx/drive_c/users/steamuser/Documents/My\ Games/SimBin/RaceRoom\ Racing\ Experience/UserData/graphics_options.xml | |
| In my case: | |
| <fovScale type="float32">0.50999999</fovScale> | |
| Some more detailed info: | |
| https://forum.kw-studios.com/index.php?threads/is-there-a-way-to-change-chase-hood-and-bumper-camera-fov.21162/#post-260356 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Video Device: 6900XT - you also want to underwolt this one or possible other AMDs (there is a linux underwolt script gist here)): | |
| 5120x1440@120hz | |
| Steam launch: mangohud gamemoderun %command% | |
| Extensivelly tested, goal is stable 120fps even at nigh and big grid. | |
| Goal is not achiable, but very close in some scenarios: | |
| Tracks like Lusail and Paul Ricard at night time on the paddoc overload the game engine itself, frames drop even with | |
| your GPU usage normal. Vehicle Occlusion Culling seems to not work in garages. | |
| Before opening the game (if game is running changes get overwriten), edit: |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| The tutorial works, but in most of my test on simracing this leads to some kind of stutter. | |
| In general its better to use the default resolutions for simracing at least in my monitor. | |
| If your customm resolution is not for simracing then this totally works. | |
| Needed to find current monitor, Install: | |
| edid-decode | |
| Find your monitor, thats annoying, I know mine is this, yours is probably somewhere in this path to: | |
| edid-decode /sys/class/drm/card1-DP-1/edid |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Note, to be able to move widgets in wayland check: "Enable X11 Platform Plugin Override" on tinypedal | |
| compatibility settings and restart it. | |
| -> Now to install && run: | |
| zypper in python313-pyside6 python313-pyxdg python313-psutil | |
| Clone it recursivelly: | |
| git clone --recursive https://github.com/s-victor/TinyPedal.git | |
| Linux uses a specific Shared Memory: |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Install: mangohud gamemode | |
| #You need to unlock the card for over/under-clocking work, add this as grub boot kernel argument: | |
| amdgpu.ppfeaturemask=0xffffffff | |
| #To not lose it when updating kernel: | |
| vim /etc/default/grub | |
| GRUB_CMDLINE_LINUX_DEFAULT="mitigations=off amdgpu.ppfeaturemask=0xffffffff" | |
| #Create and secure 1 directory to store 2 scrips: |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Update 02.Apr.2026: | |
| I made a script that will do all the needed checks and install SimHub: | |
| https://github.com/srlemke/SimHub_on_Linux | |
| There is also a V2 in the works that also can install CrewChief: | |
| https://github.com/srlemke/SimHub_on_Linux/tree/With-Crewchief | |
| Automatically adds and configures plugins for LMU, it also detects custom Proton. | |
| Automatically adds dash.exe when Raceroom. | |
| Fixes common issues, like removal of dotnet4 Steam stub |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| winetricks -q dotnetdesktop6 | |
| #Download AMSCM from: | |
| https://www.overtake.gg/downloads/automobilista-2-content-manager.59727/ | |
| wine AMS2CM.msi (Do not forget to install CLI that you have to select in the AMS2CM installer) | |
| #Double check the path on the bellow file, this is the most important: | |
| vim /home/slemke/.wine/drive_c/Program\ Files/AMS2CM/Config.yaml | |
| Path: Z:\home\slemke\.steam\steam\steamapps\common\Automobilista 2 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #Get the correct refresh rate for the amount of frames/Hz: | |
| -> Bellow is my resolution(5120x1440) and my desired frame cap(165), I want it to display the ideal Hz for that. | |
| I will use the CLI command 'cvt': | |
| slemke@leap:~> cvt 5120 1440 165.00 | |
| # 5120x1440 164.88 Hz (CVT) hsync: 261.83 kHz; pclk: 1881.00 MHz | |
| Modeline "5120x1440_165.00" 1881.00 5120 5584 6152 7184 1440 1443 1453 1588 -hsync +vsync | |
| -> Above we can see that the ideal Hz for my resolution@fps is 164.88, so, in my case, we add it to MangoHud config: |
NewerOlder