Conversation

Jarkko Sakkinen

Organizing #wine folders for #yabridge #linux #audio #vst #vst3 #clap
1
1
3
This is the way I sync all this in a script called `yabridge-refresh`:
````
#!/usr/bin/env bash

yabridgectl list | xargs -I{} yabridgectl rm '{}'
find ~/Documents/Yabridge/ -regex '.*\(VST2\|VST3\)$' -exec yabridgectl add '{}' \;
yabridgectl sync --prune
```
It is nice to do it like this because then well-behaving plugin families do not get hit from the shittier ones :-) And bit more structuring also gives more clean way to test whether a plugin has chances work at all.
1
0
0
Note: I take special care to set the install folder for VST2's to to Common Files/VST2 in order of this scheme to work.
0
0
0