-
Notifications
You must be signed in to change notification settings - Fork 63
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
✨ Add the Apple Intelligence toggle command
- Loading branch information
1 parent
d01c8e3
commit 343e6fc
Showing
1 changed file
with
55 additions
and
0 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,55 @@ | ||
--- | ||
title: Toggle Apple Intelligence | Miscellaneous | ||
description: Toggle Apple Intelligence from command line interface. | ||
head: | ||
- - meta | ||
- property: 'og:title' | ||
content: macOS defaults > Miscellaneous > Toggle Apple Intelligence | ||
- - meta | ||
- property: 'og:description' | ||
content: Toggle Apple Intelligence from command line interface. | ||
--- | ||
|
||
# Toggle Apple Intelligence | ||
|
||
Starting from macOS 15.3, Apple Intelligence is activated by default on ARM Macs. It is possible to deactivate it from the command line. | ||
|
||
> [!TIP] | ||
> It may be needed to restart the Mac after toggling the option. | ||
- **Tested on macOS**: | ||
- Sequoia | ||
- **Parameter type**: bool | ||
|
||
## Set to `false` | ||
|
||
Deactivate Apple Intelligence. | ||
|
||
```bash | ||
defaults write com.apple.CloudSubscriptionFeatures.optIn "545129924" -bool "false" | ||
``` | ||
|
||
## Set to `true` (default value) | ||
|
||
Activate Apple Intelligence. | ||
|
||
```bash | ||
defaults write com.apple.CloudSubscriptionFeatures.optIn "545129924" -bool "true" | ||
``` | ||
|
||
## Read current value | ||
|
||
```bash | ||
defaults read com.apple.CloudSubscriptionFeatures.optIn "545129924" | ||
``` | ||
|
||
## Reset to default value | ||
|
||
```bash | ||
defaults delete com.apple.CloudSubscriptionFeatures.optIn "545129924" | ||
``` | ||
|
||
## Set value from UI | ||
|
||
1. <a href="x-apple.systempreferences:com.apple.Siri-Settings">Access Apple Intelligence settings from macOS UI</a> | ||
2. Toggle "Apple Intelligence" value |