├── .github ├── FUNDING.yml └── ISSUE_TEMPLATE │ ├── bug_report.yml │ └── config.yml ├── .gitignore ├── BlackHole.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ └── IDEWorkspaceChecks.plist └── xcshareddata │ └── xcschemes │ └── BlackHole.xcscheme ├── BlackHole ├── BlackHole.c ├── BlackHole.icns └── BlackHole.plist ├── BlackHoleTests └── main.c ├── CHANGELOG.md ├── Images ├── audio-midi-setup.png └── blackhole-banner-830px.png ├── Installer ├── conclusion.html ├── create_installer.sh ├── requirements.xml ├── scripts │ ├── postinstall │ └── preinstall └── welcome.html ├── LICENSE ├── README.md ├── Uninstaller ├── Scripts │ └── postinstall └── create_uninstaller.sh └── VERSION /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExistentialAudio/BlackHole/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExistentialAudio/BlackHole/HEAD/.github/ISSUE_TEMPLATE/bug_report.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExistentialAudio/BlackHole/HEAD/.github/ISSUE_TEMPLATE/config.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | xcuserdata/ 2 | .DS_Store 3 | *.pkg -------------------------------------------------------------------------------- /BlackHole.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExistentialAudio/BlackHole/HEAD/BlackHole.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /BlackHole.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExistentialAudio/BlackHole/HEAD/BlackHole.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /BlackHole.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExistentialAudio/BlackHole/HEAD/BlackHole.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /BlackHole.xcodeproj/xcshareddata/xcschemes/BlackHole.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExistentialAudio/BlackHole/HEAD/BlackHole.xcodeproj/xcshareddata/xcschemes/BlackHole.xcscheme -------------------------------------------------------------------------------- /BlackHole/BlackHole.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExistentialAudio/BlackHole/HEAD/BlackHole/BlackHole.c -------------------------------------------------------------------------------- /BlackHole/BlackHole.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExistentialAudio/BlackHole/HEAD/BlackHole/BlackHole.icns -------------------------------------------------------------------------------- /BlackHole/BlackHole.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExistentialAudio/BlackHole/HEAD/BlackHole/BlackHole.plist -------------------------------------------------------------------------------- /BlackHoleTests/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExistentialAudio/BlackHole/HEAD/BlackHoleTests/main.c -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExistentialAudio/BlackHole/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /Images/audio-midi-setup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExistentialAudio/BlackHole/HEAD/Images/audio-midi-setup.png -------------------------------------------------------------------------------- /Images/blackhole-banner-830px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExistentialAudio/BlackHole/HEAD/Images/blackhole-banner-830px.png -------------------------------------------------------------------------------- /Installer/conclusion.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExistentialAudio/BlackHole/HEAD/Installer/conclusion.html -------------------------------------------------------------------------------- /Installer/create_installer.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExistentialAudio/BlackHole/HEAD/Installer/create_installer.sh -------------------------------------------------------------------------------- /Installer/requirements.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExistentialAudio/BlackHole/HEAD/Installer/requirements.xml -------------------------------------------------------------------------------- /Installer/scripts/postinstall: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | sudo chown -R root:wheel /Library/Audio/Plug-Ins/HAL/BlackHole*ch.driver 4 | -------------------------------------------------------------------------------- /Installer/scripts/preinstall: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExistentialAudio/BlackHole/HEAD/Installer/scripts/preinstall -------------------------------------------------------------------------------- /Installer/welcome.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExistentialAudio/BlackHole/HEAD/Installer/welcome.html -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExistentialAudio/BlackHole/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExistentialAudio/BlackHole/HEAD/README.md -------------------------------------------------------------------------------- /Uninstaller/Scripts/postinstall: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExistentialAudio/BlackHole/HEAD/Uninstaller/Scripts/postinstall -------------------------------------------------------------------------------- /Uninstaller/create_uninstaller.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExistentialAudio/BlackHole/HEAD/Uninstaller/create_uninstaller.sh -------------------------------------------------------------------------------- /VERSION: -------------------------------------------------------------------------------- 1 | 0.6.1 2 | --------------------------------------------------------------------------------