1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 15:57:45 +00:00

Base: Add man page for keymap(1)

This commit is contained in:
Jami Kettunen 2019-12-30 14:52:37 +02:00 committed by Andreas Kling
parent 107612209d
commit edba444aa9

View file

@ -0,0 +1,28 @@
## Name
keymap - load a keyboard layout
## Synopsis
```**sh
# keymap <name|file>
```
## Description
The `keymap` utility can be used to set a keyboard layout using the given name or file.
Loading by name will search for keyboard layout files in `/res/keymaps/*.json`.
## Examples
Load a keyboard layout by name:
```sh
# keymap en
```
Load a keyboard layout using a file:
```sh
# keymap /res/keymaps/en.json
# keymap ./map.json
```