Last active
August 23, 2023 22:58
-
-
Save StarterX4/cbeb41efed11d060a1125f3092d05035 to your computer and use it in GitHub Desktop.
Install GE-Proton 8.13 as a headless standalone Wine (With headless servers in mind?)
This file contains 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 | |
export h=~/compatibilitytools.d/ ; | |
mkdir $h ; cd $h ; | |
wget https://github.com/GloriousEggroll/proton-ge-custom/releases/download/GE-Proton8-13/GE-Proton8-13.tar.gz ; | |
tar -zxf GE-Proton8-13.tar.gz ; | |
rm GE-Proton8-13.tar.gz ; | |
if ln -s $(echo ~)/compatibilitytools.d/GE-Proton8-13/files/bin/wine64 ~/wine64; then echo 'Symlink: ~/wine64'; else printf '#!/bin/bash\nexec ~/compatibilitytools.d/GE-Proton8-13/files/bin/wine64' > ~/wine64; printf 'Failed to create symlink.\nScript: ~/wine64'; chmod +x ~/wine64; fi; | |
if ln -s $(echo ~)/compatibilitytools.d/GE-Proton8-13/files/bin/wine ~/wine; then echo 'Symlink: ~/wine'; else printf '#!/bin/bash\nexec ~/compatibilitytools.d/GE-Proton8-13/files/bin/wine' > ~/wine; printf 'Failed to create symlink.\nScript: ~/wine'; chmod +x ~/wine; fi |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment