mirror of
https://github.com/yannbertrand/macos-defaults
synced 2024-11-14 15:47:16 +00:00
Add 'Disable language indicator'
This commit is contained in:
parent
dd09d081d5
commit
e5eb845254
1 changed files with 49 additions and 0 deletions
49
docs/misc/disable-language-indicator.md
Normal file
49
docs/misc/disable-language-indicator.md
Normal 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
|
||||
```
|
Loading…
Reference in a new issue