Saltar para o conteúdo

VZtec

Fuzz Malibu Overdrive

#!/bin/bash
set -e
source <(curl -sSL https://estudio-debian.pages.dev/functions.lib)
script() {
	wget -q --show-progress -O fuzz.zip "$(curl -sSL https://en.vztecfx.com/fuzz-plugin | grep Linux.zip | cut -d '"' -f 38)"
	mkdir -p "$HOME"/.vst3
	rm -fr "$HOME"/.vst3/Fuzz.vst3
	unzip -oqq "$PWD"/fuzz.zip
	mv "$PWD"/Fuzz.vst3 "$HOME"/.vst3/
	wget -q --show-progress -O overdrive.zip "$(curl -sSL https://en.vztecfx.com/overdrive-plugin | grep Linux.zip | cut -d '"' -f 38)"
	mkdir -p "$HOME"/.vst3
	rm -fr "$HOME"/.vst3/Overdrive.vst3
	unzip -oqq "$PWD"/overdrive.zip
	mv "$PWD"/Overdrive.vst3 "$HOME"/.vst3/
	wget -q --show-progress -O malibu.zip "$(curl -sSL https://en.vztecfx.com/malibu-plugin | grep Linux | grep Files.zip | cut -d '"' -f 10)"
}
tmprun script