Add 'Disable language indicator'

This commit is contained in:
HUMORCE 2024-09-30 11:03:33 +08:00
parent dd09d081d5
commit e5eb845254
No known key found for this signature in database
GPG key ID: FF7A96FF20AE10DC

View file

@ -0,0 +1,49 @@
---
title: Disable language indicator | Miscellaneous
description: Turn off the language indicator while switching input sources.
head:
- - meta
- property: 'og:title'
content: macOS defaults > Miscellaneous > Disable indicator of input sources
- - meta
- property: 'og:description'
content: Turn off the language indicator while switching input sources.
---
# Disable indicator of input sources
Turn off the language indicator while switching input sources.
<!-- break lists -->
- **Tested on macOS**:
- Sonoma
- **Parameter type**: bool
## Set to `true` (default value)
Turn on the language indicator while switching input sources.
```bash
defaults write kCFPreferencesAnyApplication TSMLanguageIndicatorEnabled -bool "true"
```
## Set to `false`
Turn off the language indicator while switching input sources.
```bash
defaults write kCFPreferencesAnyApplication TSMLanguageIndicatorEnabled -bool "false"
```
## Read current value
```bash
defaults read kCFPreferencesAnyApplication TSMLanguageIndicatorEnabled
```
## Reset to default value
```bash
defaults delete kCFPreferencesAnyApplication TSMLanguageIndicatorEnabled
```