Created
December 17, 2024 11:52
-
-
Save AyresMonteiro/b47a8e9acb5e3fa9bbfc8174ce2ac1ad to your computer and use it in GitHub Desktop.
Add NPC voices and Music to Steam Skyrim Classic in Linux using Steam Proton and Winetricks
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
#!/bin/bash | |
# Based on https://www.protondb.com/app/72850#k9xSkVusfH | |
# but using winetricks instead of protontricks | |
# and https://www.protondb.com/app/72850#jwiZDBGdfF | |
# to install xact through winetricks cli | |
sudo apt install winetricks | |
skyrim_classic_steam_id="72850" | |
cd "~/.local/share/Steam/steamapps/compatdata/$skyrim_classic_steam_id/" | |
# This will install xact through winetricks | |
WINEPREFIX=$PWD/pfx winetricks xact | |
# This command below will open winetricks GUI. You will | |
# need to select: | |
# "use default wine prefix" > winecfg > libraries tab | |
# Then mark xaudio2_6 and xaudio2_7 as only native. | |
# | |
# An extra explanation about native and builtin libraries: | |
# DLLs are libraries that are loaded during code execution. | |
# Wine may provide different versions of certain DLLs, | |
# which are named "Builtin DLL". But you can choose to use | |
# the original Windows DLL by using the "Native" option. | |
WINEPREFIX=$PWD/pfx winetricks |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment