Skip to content

Instantly share code, notes, and snippets.

@tonio-m
Created December 3, 2021 00:09
Show Gist options
  • Save tonio-m/8604d349d836c93160cb4aa5d4d02e80 to your computer and use it in GitHub Desktop.
Save tonio-m/8604d349d836c93160cb4aa5d4d02e80 to your computer and use it in GitHub Desktop.
script to install yabridge and configure your windows vst plugins on linux
sudo pacman -S wine-staging
yay -S yabridge
# make the commonly used folders for vst plugins
mkdir -p "$HOME/.wine/drive_c/Program Files/Steinberg/VstPlugins"
mkdir -p "$HOME/.wine/drive_c/Program Files/Common Files/VST2"
mkdir -p "$HOME/.wine/drive_c/Program Files/Common Files/VST3"
# Add them to yabridge
yabridgectl add "$HOME/.wine/drive_c/Program Files/Steinberg/VstPlugins"
yabridgectl add "$HOME/.wine/drive_c/Program Files/Common Files/VST2"
yabridgectl add "$HOME/.wine/drive_c/Program Files/Common Files/VST3"
# install the plugin with wine
wine Serum_setup.exe
yabridge sync # this creates an so file on the same dir as the .dll file
# add these folders to your DAW:
# $HOME/.wine/drive_c/Program Files/Steinberg/VstPlugins
# $HOME/.wine/drive_c/Program Files/Common Files/VST2
# $HOME/.wine/drive_c/Program Files/Common Files/VST3
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment