Last active
December 6, 2022 21:28
-
-
Save koomar/70b58702ad7c68a2f6582b5a3a54593f to your computer and use it in GitHub Desktop.
fix_wifi.sh
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 | |
read -p "See https://www.meter.com/mac_osx_awdl_psa for more details. You will be prompted for your admin password. Do you want to continue? y/n/c " choice | |
case $choice in | |
[yY]* ) echo "Great" ;; | |
[nN]* ) exit ;; | |
[cC]* ) exit ;; | |
*) exit ;; | |
esac | |
sudo echo "Installing ventura_wifi_fix.sh in your home directory. This will run in background." | |
curl -s https://gist.githubusercontent.com/koomar/96b6d39f44aab8a27c025ac362885d49/raw/57099b20daa01867fc203ff8c58dd6f85ce33ad6/ventura_wifi_fix.sh > ~/ventura_wifi_fix.sh | |
chmod u+x ~/ventura_wifi_fix.sh | |
sudo ~/./ventura_wifi_fix.sh > /dev/null & |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment