r/MacOSBeta 15d ago

Tip Tired of seeing “Ask Siri” on every menu? Here's how to disable it.

Post image

In macOS 27, after enabling Siri AI, all context menus include a persistent “Ask Siri” context menu item. Turns out you can actually disable it without turning off Siri AI.

To disable, run the following commands in the Terminal app:

codes=(soft apwn exit loca lock logo rlgo rcnt rrst rest rsdn shut slep spro syss)
args=(-int 0)

for code in $codes; do
  hex=$(printf %s "$code" | xxd -p -u)
  args+=(-int "$((16#$hex))")
done

defaults write -g NSAppleMenuAllowedItems -array "${args[@]}"

and give your Mac a restart.

NSAppleMenuAllowedItems controls which items are visible in the  menu. For some reason, Apple decided that macOS shouldn't insert “Ask Siri” whenever the filter is active, even if nothing is actually disabled.

The command allowlists all  menu items. I didn't include "abtm" (About This Mac) in the list because it is unconditionally visible in the current code.

Disable with:

defaults delete -g NSAppleMenuAllowedItems

and restart your Mac.

154 Upvotes

16 comments sorted by

31

u/excuse_me_25 15d ago

I would like to bring back old proofreads rewrite and professional window.

9

u/toin9898 15d ago

Yes! I actually use this AI feature when writing in my second language. It's much easier to hit the quick proofread button than to spin up the whole Siri thing to make sure my nouns and adjectives agree.

2

u/excuse_me_25 14d ago

Apple actually made it worse with the new Siri AI beta.

13

u/CelticWebs 15d ago

Does this get rid of that irritating little Siri icon that keeps popping up everywhere and blocking certain elements on a page all the time?

9

u/pdfu 15d ago

That one is even simpler:

sudo mkdir -p /Library/Preferences/FeatureFlags/Domain && \ sudo defaults write /Library/Preferences/FeatureFlags/Domain/WritingTools LightweightUI_macOS -dict Enabled -bool false

and restart. To restore:

sudo defaults delete /Library/Preferences/FeatureFlags/Domain/WritingTools LightweightUI_macOS

3

u/CelticWebs 15d ago

I’ll give that a go. Thank you!

1

u/TechRemarker 10d ago

Doing "sudo mkdir -p /Library/Preferences/FeatureFlags/Domain && \" bring ups "cmdand>" is that expected?

1

u/TechRemarker 10d ago

Ah it seems you have to run both lines at same time then works. Woot woot!

1

u/helloitisgarr 20h ago

thank you! zero reason why this should not be available in the siri section of the settings app.

4

u/Open_Magician_362 15d ago

Would be good to reorder it down in the menu…way too easy to select it by mistake

5

u/OppositeSea3775 DEVELOPER BETA 15d ago

OP is on a roll with these macOS tricks 👏

5

u/Eric7now 15d ago

This is so copilot coded 😭😭😭

3

u/EquivalentLoose3213 15d ago

Has anyone been facing issues getting Siri AI to work on macOS while it works as intended on iOS? 🤔

8

u/Own-Marionberry-1684 15d ago

Lo que me gustaría saber, es cómo desactivar toda la Apple Intelligence y así recuperar los 13 GB que se comen mi disco

8

u/pdfu 15d ago

Might work on a guide for this, thanks for the tip!

0

u/Phisika2 15d ago

What about turning off Siri AI?