From abfde8a10d6cbc03a65d27b8bc619f2711509d4e Mon Sep 17 00:00:00 2001 From: Eric Hameleers Date: Mon, 28 Dec 2020 14:37:00 +0100 Subject: DAW: make all plugins available to the user --- make_slackware_live.sh | 6 ++++++ 1 file changed, 6 insertions(+) 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 -- cgit v1.2.3