minor fixes

This commit is contained in:
Tim Vahlbrock
2026-05-10 12:58:00 +02:00
committed by Tobias Gesellchen
parent 370b587fcf
commit 37d758f7f3
2 changed files with 4 additions and 2 deletions
+1 -1
View File
@@ -26,7 +26,7 @@ ssh -oHostKeyAlgorithms=+ssh-rsa root@<IP_ADDRESS_OF_SPEAKER>
Then, run the following command to install AfterTouch on the device.
```bash
curl -sSL https://raw.githubusercontent.com/gesellix/Bose-SoundTouch/main/scripts/on-device-install/install.sh | sh
rw && curl -sSL https://raw.githubusercontent.com/gesellix/Bose-SoundTouch/main/scripts/on-device-install/install.sh | sh
```
After the installation check if you can access AfterTouch from your local device by navigating to `http://<IP_ADDRESS_OF_SPEAKER>:8000`. If you can access the AfterTouch UI, you're good to go! If not, you may need to run AfterTouch on the speaker via SSH port forwarding.
+3 -1
View File
@@ -6,12 +6,13 @@ GH_REPO=${GH_REPO:-gesellix/Bose-SoundTouch}
BINARY_URL=${BINARY_URL:-https://github.com/$GH_REPO/releases/download/v$VERSION/soundtouch-service-v$VERSION-linux-armv7}
INIT_SCRIPT_URL=${INIT_SCRIPT_URL:-https://raw.githubusercontent.com/$GH_REPO/v$VERSION/scripts/on-device-install/aftertouch}
echo "Installing Aftertouch $VERSION for ARMv7..."
echo "Installing Aftertouch $VERSION ..."
mkdir -p /opt/aftertouch
cd /opt/aftertouch
curl \
-sSL \
-O \
--fal \
"$BINARY_URL"
mv soundtouch-service-v$VERSION-linux-armv7 aftertouch-service
@@ -22,6 +23,7 @@ cd /etc/init.d
curl \
-sSL \
-O \
--fail \
"$INIT_SCRIPT_URL"
chmod +x aftertouch