feat(just): add alias for yafti (until we change the command in yafti)

This commit is contained in:
HikariKnight 2024-02-15 20:34:36 +01:00
parent 4159078443
commit ee2fe49957

View File

@ -6,15 +6,19 @@ fix-steam-download-speed:
rm -f $HOME/.local/share/Steam/steam_dev.cfg
bash -c 'printf "@nClientDownloadEnableHTTP2PlatformLinux 0\n@fDownloadRateImprovementToAddAnotherConnection 1.0\n" > $HOME/.local/share/Steam/steam_dev.cfg'
alias patch-source1-tcmalloc := fix-source1-tcmalloc
# Patch a bug in some 32-bit Source 1.x titles that causes them to crash at startup
patch-source1-tcmalloc:
fix-source1-tcmalloc:
#!/usr/bin/bash
echo 'Add the following as a launch option in Steam:'
echo 'LD_PRELOAD=/usr/lib/libtcmalloc_and_profiler.so.4 %command%'
echo "Delete libtcmalloc_minimal.so.x in the game's bin folder if present."
alias patch-gmod := fix-gmod
# Patch GMod's 64-bit beta to work properly on Linux (https://github.com/solsticegamestudios/GModCEFCodecFix)
patch-gmod:
fix-gmod:
#!/usr/bin/bash
mkdir -p /tmp/patch-gmod
wget \