summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
author Eric Hameleers <alien@slackware.com>2020-12-28 14:37:00 +0100
committer Eric Hameleers <alien@slackware.com>2020-12-28 14:37:00 +0100
commitabfde8a10d6cbc03a65d27b8bc619f2711509d4e (patch)
tree4ec7f7341ab80b63ed334c3a605427a1b9708362
parent840c7af5702a04e22fb7de47e2a32b5e0c7853c0 (diff)
downloadliveslak-abfde8a10d6cbc03a65d27b8bc619f2711509d4e.tar.gz
liveslak-abfde8a10d6cbc03a65d27b8bc619f2711509d4e.tar.xz
DAW: make all plugins available to the user
-rwxr-xr-xmake_slackware_live.sh6
1 files changed, 6 insertions, 0 deletions
diff --git a/make_slackware_live.sh b/make_slackware_live.sh
index ebae873..4cb3b81 100755
--- a/make_slackware_live.sh
+++ b/make_slackware_live.sh
@@ -2459,6 +2459,12 @@ EOT
fi
done
+ # VCV Rack plugins need to be linked into the user-directory to be seen:
+ mkdir -p ${LIVE_ROOTDIR}/home/${LIVEUID}/.Rack/plugins-v1
+ for PLUGIN in $(find ${LIVE_ROOTDIR}/usr/share/vcvrack/ -type f -name "*.zip" -mindepth 1 -maxdepth 1); do
+ ln -s /usr/share/vcvrack/$(basename ${PLUGIN}) ${LIVE_ROOTDIR}/home/${LIVEUID}/.Rack/plugins-v1/
+ done
+
fi # End LIVEDE = DAW
if [ "$LIVEDE" = "STUDIOWARE" ]; then