Update cheatsheets

This commit is contained in:
ivuorinen
2026-01-23 00:23:11 +00:00
parent 7a260c8cd2
commit b6a6d775f5
16 changed files with 125 additions and 24 deletions

View File

@@ -12,16 +12,24 @@ source: https://github.com/tldr-pages/tldr.git
- List all compatible displays:
`ddcutil detect`
`ddcutil {{[det|detect]}}`
- Change the brightness (option 0x10) of display 1 to 50%:
- Query the first compatible display for capabilities:
`ddcutil {{[-d|--display]}} {{1}} setvcp {{10}} {{50}}`
`ddcutil {{[cap|capabilities]}}`
- Increase the contrast (option 0x12) of display 1 by 5%:
- Change the brightness (option `10`) of display 1 to 50%:
`ddcutil {{[-d|--display]}} {{1}} setvcp {{12}} {{+}} {{5}}`
`ddcutil {{[-d|--display]}} 1 {{[set|setvcp]}} 10 50`
- Increase the contrast (option `12`) of display 1 by 5%:
`ddcutil {{[-d|--display]}} 1 {{[set|setvcp]}} 12 + 5`
- Change the display source (option `60`) of a display:
`ddcutil {{[-d|--display]}} {{1}} {{[set|setvcp]}} 60 0x{{0f}}`
- Read the settings of display 1:
`ddcutil {{[-d|--display]}} {{1}} getvcp {{ALL}}`
`ddcutil {{[-d|--display]}} 1 {{[get|getvcp]}} ALL`