Created
September 22, 2020 16:09
-
-
Save jsantell/a464d9b13ba3fc23fba53fc6060f9304 to your computer and use it in GitHub Desktop.
Logic Pro X scripts
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
# Disables system policy, validates audio plugins, and re-enables system policy | |
# to allow unverified audio plugins in OS X 10.15 Catalina | |
sudo spctl --master-disable | |
auval -a | |
sudo spctl --master-enable |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
# Clears audio plugin cache | |
rm -r ~/Library/Caches/AudioUnitCache/com.apple.audiounits.cache |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment