Skip to content

Instantly share code, notes, and snippets.

@StarterX4
Last active August 23, 2023 22:58
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save StarterX4/cbeb41efed11d060a1125f3092d05035 to your computer and use it in GitHub Desktop.
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?)
#!/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