diff --git a/README.md b/README.md index 276f7e2..b3908b0 100644 --- a/README.md +++ b/README.md @@ -1,2 +1,4 @@ # Synthesizer V Studio 2 Linux Installer Just a script to install Synth V 2 on linux. + + Download the script and run it, make sure you have wine, winetricks and yabridge/yabridgectl installed if you want to try and use the VST plugin. diff --git a/sv-studio-icon.png b/sv-studio-icon.png deleted file mode 100644 index bf60afd..0000000 Binary files a/sv-studio-icon.png and /dev/null differ diff --git a/sv2linuxinstaller.sh b/sv2linuxinstaller.sh index 48a260b..5dbfc37 100755 --- a/sv2linuxinstaller.sh +++ b/sv2linuxinstaller.sh @@ -1,5 +1,5 @@ #!/bin/bash -echo "Starting Synthesizer V Studio 2 Pro Linux Installer. For VST support, wine 9.21 staging is recommended." +echo "Starting Synthesizer V Studio 2 Pro Linux Installer. For VST support, wine 9.21 staging is recommended for yabridge." # Checking if everything we need is installed if ! [ -x "$(command -v wine)" ]; then @@ -11,7 +11,7 @@ if ! [ -x "$(command -v winetricks)" ]; then exit 1 fi if ! [ -x "$(command -v yabridgectl)" ]; then - echo 'Error: Yabridgectl is not installed, vst support wont work.' >&2 + echo "Yabridgectl is not installed, vst support won't work." >&2 fi echo 'Passed dependency checks' @@ -26,7 +26,6 @@ if [ ! -d "$wineprefix_path" ]; then exit 1 fi - # Download Edge Webview and SV2 curl -L -o MicrosoftEdgeWebview2Setup.exe https://go.microsoft.com/fwlink/p/?LinkId=2124703 curl -L -o svstudio2-pro-setup-latest.exe https://download.dreamtonics.com/svstudio2/svstudio2-pro-setup-latest.exe @@ -47,29 +46,20 @@ cat > $wineprefix_path/synth_v_login.sh < ~/.local/share/applications/synthv.desktop < /dev/null 2>&1 | echo "Converting VST for Linux..." yabridgectl sync > /dev/null 2>&1 echo "" -echo "Trickiest part, you should have a working installation right now, when you click log in, your browser will ask you what application to open the link with. A script called synth_v_login.sh has been created in your wineprefix, tell your browser to use this script." +echo "When you click log in, your browser will ask you what application to open the link with. A script called synth_v_login.sh has been created in your wineprefix, tell your browser to use this script." sleep 5 echo "" echo "Launching Synthesizer V Studio 2 Pro..." WINEPREFIX="$wineprefix_path" wine "C:\Program Files\Synthesizer V Studio 2 Pro\synthv-studio.exe" > /dev/null 2>&1 - echo "" -echo "Completed, you may use Synthesizer V Studio 2 Pro standalone or the VST might work in your DAW of choice, it should be in your VST3 folder." +echo "Completed, you may use Synthesizer V Studio 2 Pro standalone or the VST might work in your DAW of choice, it should be in your VST3 folder if you had yabridgectl installed." exit 0