> I tried LD_PRELOAD="" VK_LOADER_LAYERS_ENABLE=VK_LAYER_VALVE_steam_overlay_64 %COMMAND% but that doesn't enable overlay or steam input.
To enable the ...
... the launch options set
```
LD_PRELOAD="${LD_PRELOAD}:./ntdll_override.so" PROTON_FORCE_LARGE_ADDRESS_AWARE=1 PROTON_NO_D3D11=1 %command%
```
If that doesn't help ...
... Were you able to fix it with the `LD_PRELOAD` method?
```
LD_PRELOAD="" %COMMAND%
```
If you need mangohud:
```
LD_PRELOAD="" VK_LOADER_LAYERS_ENABLE ...
comment by AlkaizerLord · 2025-01-19 · view · github
... it with the `LD_PRELOAD` method?
> ```
> LD_PRELOAD="" %COMMAND%
> ```
>
> If you need mangohud:
> ```
> LD_PRELOAD="" VK_LOADER_LAYERS_ENABLE=VK_LAYER_MANGOHUD_overlay_x86_64 %COMMAND%
> ```
>
> If you also ...
comment by dcommander · 2017-09-27 · view · github
... I recommend setting the launch options to:
```
LD_PRELOAD="${LD_PRELOAD/libdlfaker.so:libvglfaker.so:/}:libdlfaker.so:libvglfaker.so" %command%
```
... launch options to:
```
LD_PRELOAD="${LD_PRELOAD#libdlfaker.so:libvglfaker.so:}:libdlfaker.so:libvglfaker.so" %command%
```
This launch option works ...
comment by jcdickinson · 2025-05-22 · view · github
@MementoMortes try `LD_PRELOAD="" %command%`, the steam recording feature seems to degrade performance over time for me.
comment by MementoMortes · 2025-05-22 · view · github
> [@MementoMortes](https://github.com/MementoMortes) try `LD_PRELOAD="" %command%`, the steam recording feature seems to degrade performance over time ...