mirror of
https://github.com/tumillanino/miasma-os.git
synced 2026-04-11 07:15:31 +00:00
move to new repo
This commit is contained in:
16
files/scripts/installreaper.sh
Normal file
16
files/scripts/installreaper.sh
Normal file
@@ -0,0 +1,16 @@
|
||||
#!/usr/bin/env bash
|
||||
set -euo pipefail
|
||||
|
||||
curl -L -o /tmp/reaper.tar.xz "https://www.reaper.fm/files/7.x/reaper765_linux_x86_64.tar.xz"
|
||||
tar -xJf /tmp/reaper.tar.xz -C /tmp
|
||||
|
||||
cd /tmp/reaper_linux_x86_64
|
||||
./install-reaper.sh --install /usr/lib --integrate-desktop
|
||||
|
||||
if [ -f "/root/.local/share/applications/cockos-reaper.desktop" ]; then
|
||||
mkdir -p /usr/share/applications/
|
||||
mv /root/.local/share/applications/cockos-reaper.desktop /usr/share/applications/
|
||||
sed -i 's|/root/opt/REAPER|/usr/lib/REAPER|g' /usr/share/applications/cockos-reaper.desktop
|
||||
fi
|
||||
|
||||
rm -rf /tmp/reaper*
|
||||
Reference in New Issue
Block a user