From e850a5f4cc1bdf710b1109ae9a648ca4c5cd3b5a Mon Sep 17 00:00:00 2001 From: Celeste Date: Tue, 17 Feb 2026 01:29:24 +0000 Subject: [PATCH] Add launch.sh --- launch.sh | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 launch.sh diff --git a/launch.sh b/launch.sh new file mode 100644 index 0000000..72868b9 --- /dev/null +++ b/launch.sh @@ -0,0 +1,18 @@ +#!/bin/sh + +# Clear the terminal +clear + +# Credentials used to authenticate with Steam to download/update the headless server +STEAM_USERNAME="" +STEAM_PASSWORD="" +RESONITE_BETA_CODE="" + +# Install / update Resonite +/usr/games/steamcmd +login ${STEAM_USERNAME} ${STEAM_PASSWORD} +@sSteamCmdForcePlatformType windows +force_install_dir /root/Resonite +app_update 2519830 -beta h> + +# Change Directory to the Resonite Headless software +cd /root/Resonite/Headless + +# Run the Resonite Headless Server +dotnet Resonite.dll \ No newline at end of file