Files
miasma-os/files/scripts/installrenoise.sh
2026-03-24 20:17:22 +11:00

13 lines
376 B
Bash

#!/usr/bin/env bash
set -euo pipefail
curl -L -o /tmp/renoise.tar.gz "https://files.renoise.com/demo/Renoise_3_5_4_Demo_Linux_x86_64.tar.gz"
tar xvf /tmp/renoise.tar.gz -C /tmp
cd /tmp/Renoise_3_5_4_Demo_Linux_x86_64
./install.sh || echo "Installer finished with minor warnings (likely desktop-integration related)"
rm -rf /tmp/renoise.tar.gz /tmp/Renoise* || true
exit 0