Skip to content

Instantly share code, notes, and snippets.

View rodchristiansen's full-sized avatar

Rod Christiansen rodchristiansen

  • Vancouver, BC
View GitHub Profile
@rodchristiansen
rodchristiansen / Uninstall Soundflower in macOS Catalina
Created June 27, 2020 20:22
Script to remove Soundflower audio driver from macOS Catalina 10.15+
#!/bin/bash
# Clears the SIP protected folder where Soundflower will be loaded by the system
sudo kextcache --clear-staging
if [ -d /Library/Extensions/Soundflower.kext ]; then
sudo kextunload -q /Library/Extensions/Soundflower.kext
sudo rm -rf /Library/Extensions/Soundflower.kext
fi