While you're here, please consider supporting GamingOnLinux on:
Reward Tiers:
Patreon. Plain Donations:
PayPal.
This ensures all of our main content remains totally free for everyone! Patreon supporters can also remove all adverts and sponsors! Supporting us helps bring good, fresh content. Without your continued support, we simply could not continue!
You can find even more ways to support us on this dedicated page any time. If you already are, thank you!
Reward Tiers:
This ensures all of our main content remains totally free for everyone! Patreon supporters can also remove all adverts and sponsors! Supporting us helps bring good, fresh content. Without your continued support, we simply could not continue!
You can find even more ways to support us on this dedicated page any time. If you already are, thank you!
Login / Register
- The "video game preservation service" Myrient is shutting down in March
- SpaghettiKart the Mario Kart 64 fan-made PC port gets a big upgrade
- KDE Plasma 6.6.1 rolls out with lots of fixes for KWin
- Lutris v0.5.21 and v0.5.22 arrive with Valve's Sniper runtime support and new game runners
- The OrangePi Neo gaming handheld with Manjaro Linux is now "on ice" due to component prices
- > See more over 30 days here
- recently released super fun crpg - Sector Unknown
- Jarmer - steam overlay performance monitor - issues
- Xpander - Nacon under financial troubles... no new WRC game (?)
- Xpander - Establishing root of ownership for Steam account
- Nonjuffo - Total Noob general questions about gaming and squeezing every oun…
- GustyGhost - See more posts
How to setup OpenMW for modern Morrowind on Linux / SteamOS and Steam Deck
How to install Hollow Knight: Silksong mods on Linux, SteamOS and Steam Deck
Under Windows I can tweak the Brightness in the Catalyst Settings.
But from Performance Standpoint the Game
runs better then under the nativ OS.
for example
xrandr --output DP-4 --gamma 1.50:1.50:1.50ofc use output of your monitor port and to change it back do the same but gamma values 1.0
you can script it and keybind the scripts to change when needed also
Last edited by Xpander on 18 Feb 2023 at 4:41 pm UTC
#include "ReShade.fxh"
#define BRIGHTNESS_BOOST 0.2f // 0.0f no boost, 1.0f full white
float3 PS_HSLFXmain(float4 vpos : SV_Position, float2 texcoord : TexCoord) : SV_Target
{
float3 input = tex2D(ReShade::BackBuffer, texcoord).rgb;
return clamp(input + BRIGHTNESS_BOOST, 0.0, 1.0);
}
technique HSL
{
pass
{
VertexShader = PostProcessVS;
PixelShader = PS_HSLFXmain;
}
}
Save the code as HSL.fs and save it in the configured reshade dir. Adjust brightness from 0.0 to 1.0 with the BRIGHTNESS_BOOST constant.
You need the [reshade headers](https://github.com/crosire/reshade-shaders) and a config like this:
effects = HSL
reshadeTexturePath = "/home/user/.config/vkBasalt/reshade/textures/"
reshadeIncludePath = "/home/user/.config/vkBasalt/reshade/shaders"
HSL = "/home/user/.config/vkBasalt/reshade/shaders/HSL.fx"
There is however most likely a much better and more straightforward way to do this.
Last edited by whizse on 18 Feb 2023 at 9:26 pm UTC
But other than that. For singleplayer games. Yeah thats also one way to do it. or maybe even use the fakehdr.fx and tweak the values there.
However as Xpander mentioned, since this is a multiplayer game you're probably better off not using vkBasalt and just adjusting the gamma.
Last edited by whizse on 23 Feb 2023 at 1:58 pm UTC