Skip to content

Commit

Permalink
✨ Add the Apple Intelligence toggle command
Browse files Browse the repository at this point in the history
  • Loading branch information
yannbertrand committed Jan 29, 2025
1 parent d01c8e3 commit 343e6fc
Showing 1 changed file with 55 additions and 0 deletions.
55 changes: 55 additions & 0 deletions docs/misc/apple-intelligence.md
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

0 comments on commit 343e6fc

Please sign in to comment.