blob: a64bf36b13c17085b490c28b04f4becf3a5d004e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
## Name
INI - generic config file format (.ini)
## Description
INI files serve as human-readable configuration files.
They consist of key-value pairs separated by '=', optionally located under a unique group in square brackets.
Additionally, [`Userland/Libraries/LibCore/ConfigFile.cpp`](../../../../../Userland/Libraries/LibCore/ConfigFile.cpp)
supports comments: the characters '#' and ';' skip the entire line only if they appear at the beginning of the line.
## Examples
[`/etc/Keyboard.ini`](../../../../etc/Keyboard.ini)
```ini
[Mapping]
Keymaps=en-us
```
|