Communities

Writing
Writing
Codidact Meta
Codidact Meta
The Great Outdoors
The Great Outdoors
Photography & Video
Photography & Video
Scientific Speculation
Scientific Speculation
Cooking
Cooking
Electrical Engineering
Electrical Engineering
Judaism
Judaism
Languages & Linguistics
Languages & Linguistics
Software Development
Software Development
Mathematics
Mathematics
Christianity
Christianity
Code Golf
Code Golf
Music
Music
Physics
Physics
Linux Systems
Linux Systems
Power Users
Power Users
Tabletop RPGs
Tabletop RPGs
Community Proposals
Community Proposals
tag:snake search within a tag
answers:0 unanswered questions
user:xxxx search by author id
score:0.5 posts with 0.5+ score
"snake oil" exact phrase
votes:4 posts with 4+ votes
created:<1w created < 1 week ago
post_type:xxxx type of post
Search help
Notifications
Mark all as read See all your notifications »
Q&A

Welcome to the Power Users community on Codidact!

Power Users is a Q&A site for questions about the usage of computer software and hardware. We are still a small site and would like to grow, so please consider joining our community. We are looking forward to your questions and answers; they are the building blocks of a repository of knowledge we are building together.

Disable input sources pop-up in macOS 14

+3
−0

Since the update to macOS 14.0 Sonoma, I every now and then get the following pop-up while typing. At first it is just the blue circle with "US":

Blue circle with the text "US" in it

When I click on it, the white part with "DE" appears:

A blue circle with "US" in it and a white ellipse with "DE" in it. Both of them pop-up above the current courser position

As these are the two input sources I have installed, I assume this is to switch between them.

This pop-up occurs in different applications, both from apple (e.g. in Terminal.app) as well as in third-party apps (e.g. TeXstudio.app), so I assume this is a feature from the operating system rather than from specific apps.

Is there a way to disable it?


My settings about input sources look like this:

Screenshot of the input sources settings with all options disabled


Uninstall all input sources but US did not solve the problem either. The pop-up will still occur even if clicking on it does not give any options to switch the language.

History
Why does this post require moderator attention?
You might want to add some details to your flag.
Why should this post be closed?

0 comment threads

1 answer

+0
−0

I finally found a solution thanks to @bogdanw at https://stackoverflow.com/a/77256214/2777074

The idea is to create a file called UIKit.plist with the content:

<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
	<key>redesigned_text_cursor</key>
	<dict>
		<key>Enabled</key>
		<false/>
	</dict>
</dict>
</plist>

This file should then be placed in /Library/Preferences/FeatureFlags/Domain and the system restarted.

History
Why does this post require moderator attention?
You might want to add some details to your flag.

0 comment threads

Sign up to answer this question »