We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The one thing I've found is that you can at least see if it's supported on your Mac. system_profiler SPBluetoothDataType | grep LMP (via LifeHacker)
system_profiler SPBluetoothDataType | grep LMP
The text was updated successfully, but these errors were encountered:
I took the approch from here and simplified it.
uuid=$(/usr/sbin/system_profiler SPHardwareDataType | grep "Hardware UUID" | cut -c22-57) defaults write ~/Library/Preferences/ByHost/com.apple.coreservices.useractivityd.$uuid.plist ActivityReceivingAllowed 0 defaults write ~/Library/Preferences/ByHost/com.apple.coreservices.useractivityd.$uuid.plist ActivityAdvertisingAllowed 0
However, the cut hack isn't really robust, we should find a more flexible solution.
cut
Sorry, something went wrong.
A more robust solution, taken from here.
uuid=$(system_profiler SPHardwareDataType | awk '/UUID/ { print $3; }')
No branches or pull requests
The one thing I've found is that you can at least see if it's supported on your Mac.
system_profiler SPBluetoothDataType | grep LMP
(via LifeHacker)The text was updated successfully, but these errors were encountered: