If you're using a high-end bluetooth headset on your Macbook Pro it's likely your mac is using an audio codec which favors battery efficiency over high quality. This results in a drastic degradation of sound, the SBC codec is the likely culprit, read more about it here.
This file contains 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 | |
# NOTE: This requires you to have Homebrew installed | |
# --> https://brew.sh/ | |
# NOTE: You need to have Homebrew's GCC installed | |
# --> brew install gcc | |
wget ftp://ftp.cpc.ncep.noaa.gov/wd51we/wgrib2/wgrib2.tgz | |
tar xvzf wgrib2.tgz |
This file contains 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
# Disables touchscreen emulation | |
touchscreen.vusb.present = "FALSE" | |
# Enables support for nested hypervisors | |
hypervisor.cpuid.v0 = "FALSE" | |
vhv.enable = "TRUE" | |
vpmc.enable = "TRUE" | |
mce.enable = "TRUE" | |
vhu.enable = "TRUE" |