-
Notifications
You must be signed in to change notification settings - Fork 63
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Co-authored-by: Alexander Momchilov <[email protected]>
- Loading branch information
1 parent
fb3d690
commit 8ae5524
Showing
9 changed files
with
119 additions
and
12 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,71 @@ | ||
--- | ||
title: Keyboard | Fn key usage | ||
description: Choose what happens when you press the Fn or 🌐︎ key on the keyboard. | ||
head: | ||
- - meta | ||
- property: 'og:title' | ||
content: macOS defaults > Keyboard > Fn key usage | ||
- - meta | ||
- property: 'og:description' | ||
content: Choose what happens when you press the Fn or 🌐︎ key on the keyboard. | ||
--- | ||
|
||
# Function key usage | ||
|
||
Choose what happens when you press the Fn or 🌐︎ key on the keyboard. | ||
|
||
⚠️ A restart of your Mac is required to apply these changes. | ||
|
||
<!-- break lists --> | ||
|
||
- **Tested on macOS**: | ||
- Sonoma | ||
- **Parameter type**: int | ||
- 0 | ||
- 1 | ||
- 2 | ||
- 3 | ||
|
||
## Set to: Do Nothing (default) | ||
|
||
Nothing happens. | ||
|
||
```bash | ||
defaults write com.apple.HIToolbox AppleFnUsageType -int "0" | ||
``` | ||
|
||
## Set to: Change input source | ||
|
||
Switches between keyboard layouts for writing in other languages (known as input sources). | ||
|
||
```bash | ||
defaults write com.apple.HIToolbox AppleFnUsageType -int "1" | ||
``` | ||
|
||
## Set to: Show Emoji & Symbols | ||
|
||
Opens the Character Viewer for entering emoji, symbols, and more. | ||
|
||
```bash | ||
defaults write com.apple.HIToolbox AppleFnUsageType -int "2" | ||
``` | ||
|
||
## Set to: Start Dictation | ||
|
||
Starts dictation when you press the key twice (you may be asked to enable dictation first). | ||
|
||
```bash | ||
defaults write com.apple.HIToolbox AppleFnUsageType -int "3" | ||
``` | ||
|
||
## Read current value | ||
|
||
```bash | ||
defaults read com.apple.HIToolbox AppleFnUsageType | ||
``` | ||
|
||
## Reset to default value | ||
|
||
```bash | ||
defaults delete com.apple.HIToolbox AppleFnUsageType | ||
``` |
4 changes: 2 additions & 2 deletions
4
docs/misc/applekeyboardfnstate.md → docs/keyboard/applekeyboardfnstate.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
4 changes: 2 additions & 2 deletions
4
docs/misc/applepressandholdenabled.md → docs/keyboard/applepressandholdenabled.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes
File renamed without changes
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
--- | ||
title: Keyboard | ||
description: The hardware device to type on a computer. | ||
head: | ||
- - meta | ||
- property: 'og:title' | ||
content: macOS defaults > Keyboard | ||
- - meta | ||
- property: 'og:description' | ||
content: The hardware device to type on a computer. | ||
--- | ||
|
||
# Keyboard | ||
|
||
The hardware device to type on a computer. | ||
|
||
## Keys | ||
|
||
- [Key held down behavior](./applepressandholdenabled.md) | ||
- [Configure fn/🌐︎ key](./applefnusagetype.md) | ||
- [Function keys behavior](./applekeyboardfnstate.md) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters