Last active
September 14, 2024 08:19
-
-
Save bredo228/308d1c979c8543b00a09388ddc571fac to your computer and use it in GitHub Desktop.
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/sh | |
# Resonite launch script. CC0, 2024 | |
# Put your Steam username and password here. | |
# I'd recommend using an alternative Steam account with Steam Guard disabled. | |
# Before doing anything with the headless, launch Resonite from the account you're using here and accept any license agreements. | |
STEAM_USERNAME="steamusername" | |
STEAM_PASSWORD="steampassword" | |
# You will need to message the Resonite bot /headlessCode to get the headless beta code. | |
RESONITE_BETA_CODE="betacode" | |
# Directory for the headless installation. Change this if you want to put the headless somewhere else. | |
# Defaults to ~/Resonite | |
RESONITE_DIRECTORY="${HOME}/Resonite" | |
# Install / update Resonite | |
steamcmd +login ${STEAM_USERNAME} ${STEAM_PASSWORD} +force_install_dir ${RESONITE_DIRECTORY} +app_update 2519830 -beta headless -betapassword ${RESONITE_BETA_CODE} +quit | |
cd ${RESONITE_DIRECTORY}/Headless | |
dotnet Resonite.dll |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment