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 | |
PROTON_PATH="$HOME/.steam/steam/steamapps/common/Proton - Experimental" | |
PREFIX="$HOME/.steam/steam/steamapps/compatdata/xxxxxxxxxxxxxxxxxxx/pfx" | |
TRAINER="$HOME/Trainers/xxxxxxxxxxxxxxxxxxx.exe" | |
# Make sure no conflicting wineserver is running | |
wineserver -k | |
# Run trainer with Proton Experimental's wine | |
WINEFSYNC=1 \ |
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
PGHOST=localhost | |
PGPORT=5432 | |
PGUSER=postgres | |
PGPASSWORD=Wun12345 | |
PGDATABASE=wundb |
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 | |
# Install Quake 3: Arena on a mac | |
set -e # exit on error | |
cd $HOME | |
git clone https://github.com/ioquake/ioq3 | |
cd ioq3 |