From b2ed92cb697722774ed0ca6c8c156bf2cc3f74cf Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Wed, 4 Feb 2026 14:16:28 +0000 Subject: Add store configuration after plugin installation in user_install_script.sh Co-authored-by: tranch <5999732+tranch@users.noreply.github.com> --- user_install_script.sh | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'user_install_script.sh') diff --git a/user_install_script.sh b/user_install_script.sh index 7fa320a..247f0e2 100644 --- a/user_install_script.sh +++ b/user_install_script.sh @@ -37,9 +37,13 @@ fi # Download and run Decky Loader client (mirror-hosted). decky_client="/tmp/decky_client.py" if curl -fsSL "https://${DECKY_MIRROR_HOST}/AeroCore-IO/decky-installer/releases/latest/download/decky_client.py" -o "${decky_client}"; then + # Install the plugin python3 "${decky_client}" install \ --store-url "https://${DECKY_PLUGIN_MIRROR_HOST}/plugins" \ --target-id "${DECKY_PLUGIN_TARGET_ID}" + + # Configure the custom store URL for future use + python3 "${decky_client}" configure-store "https://${DECKY_PLUGIN_MIRROR_HOST}/plugins" else echo "Failed to download Decky Loader client script." >&2 exit 1 -- cgit v1.2.3