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
| #!/usr/bin/env bash | |
| # | |
| # fix-t2-macbook.sh | |
| # Script to restore Apple T2 drivers, kernel, Touch Bar, and audio support after an OS upgrade. | |
| # | |
| set -euo pipefail | |
| # Ensure the script is run with root privileges | |
| if [ "${EUID}" -ne 0 ]; then |