config: allow disabling color-management
This commit is contained in:
parent
c66f5798b7
commit
248eb324a5
24 changed files with 388 additions and 9 deletions
|
|
@ -2286,6 +2286,18 @@ Config:
|
|||
```toml
|
||||
xwayland = { scaling-mode = "downscaled" }
|
||||
```
|
||||
color-management:
|
||||
ref: ColorManagement
|
||||
required: false
|
||||
description: |
|
||||
Configures the color-management settings.
|
||||
|
||||
- Example:
|
||||
|
||||
```toml
|
||||
[color-management]
|
||||
enabled = true
|
||||
```
|
||||
|
||||
|
||||
Idle:
|
||||
|
|
@ -2727,3 +2739,26 @@ XScalingMode:
|
|||
Additionally, this mode requires the X window to scale its contents itself. In the
|
||||
example above, you might achieve this by setting the environment variable
|
||||
`GDK_SCALE=2`.
|
||||
|
||||
|
||||
ColorManagement:
|
||||
kind: table
|
||||
description: |
|
||||
Describes color-management settings.
|
||||
|
||||
- Example:
|
||||
|
||||
```toml
|
||||
[color-management]
|
||||
enabled = true
|
||||
```
|
||||
fields:
|
||||
enabled:
|
||||
description: |
|
||||
Whether the color management protocol is enabled.
|
||||
|
||||
This has no effect on running applications.
|
||||
|
||||
The default is `false`.
|
||||
kind: boolean
|
||||
required: false
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue