ddcutil: add page (#7275)

feature/windows-fix-syntax-2
Miha Frangež 2021-12-10 22:24:17 +01:00 committed by GitHub
parent fde599b0ef
commit 480cdbbc80
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 21 additions and 0 deletions

21
pages/linux/ddcutil.md Normal file
View File

@ -0,0 +1,21 @@
# ddcutil
> Control the settings of connected displays via DDC/CI.
> This command requires the kernel module `i2c-dev` to be loaded. See also: `modprobe`.
> More information: <https://www.ddcutil.com>.
- List all compatible displays:
`ddcutil detect`
- Change the brightness (option 0x10) of display 1 to 50%:
`ddcutil --display {{1}} setvcp {{10}} {{50}}`
- Increase the contrast (option 0x12) of display 1 by 5%:
`ddcutil -d {{1}} setvcp {{12}} {{+}} {{5}}`
- Read the settings of display 1:
`ddcutil -d {{1}} getvcp {{ALL}}`