1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-08-09 11:35:45 +02:00

xrandr: update page and add Dutch translation (#17456)

This commit is contained in:
Dylan 2025-08-07 08:17:32 +00:00 committed by GitHub
parent 5bee8dc6dd
commit b1a56da9d9
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 36 additions and 4 deletions

32
pages.nl/linux/xrandr.md Normal file
View file

@ -0,0 +1,32 @@
# xrandr
> Stel de grootte, oriëntatie en/of reflectie van de outputs voor een scherm in.
> Meer informatie: <https://www.x.org/releases/current/doc/man/man1/xrandr.1.xhtml>.
- Toon de huidige status van het systeem (bekende schermen, resoluties, ...):
`xrandr {{[-q|--query]}}`
- Schakel losgekoppelde outputs uit en schakel verbonden outputs aan met de standaardinstellingen:
`xrandr --auto`
- Wijzig de resolutie en updatefrequentie van DisplayPort 1 naar 1920x1080, 60Hz:
`xrandr --output DP1 --mode 1920x1080 {{[-r|--rate]}} 60`
- Stel de resolutie van HDMI2 in op 1280x1024 en plaats deze rechts van DP1:
`xrandr --output HDMI2 --mode 1280x1024 --right-of DP1`
- Schakel de VGA1 output uit:
`xrandr --output VGA1 --off`
- Stel de helderheid voor LVDS1 in op 50%:
`xrandr --output LVDS1 --brightness 0.5`
- Toon de huidige status van een X server:
`xrandr {{[-d|--display]}} :{{0}} {{[-q|--query]}}`

View file

@ -13,19 +13,19 @@
- Change the resolution and update frequency of DisplayPort 1 to 1920x1080, 60Hz: - Change the resolution and update frequency of DisplayPort 1 to 1920x1080, 60Hz:
`xrandr --output {{DP1}} --mode {{1920x1080}} --rate {{60}}` `xrandr --output DP1 --mode 1920x1080 {{[-r|--rate]}} 60`
- Set the resolution of HDMI2 to 1280x1024 and put it on the right of DP1: - Set the resolution of HDMI2 to 1280x1024 and put it on the right of DP1:
`xrandr --output {{HDMI2}} --mode {{1280x1024}} --right-of {{DP1}}` `xrandr --output HDMI2 --mode 1280x1024 --right-of DP1`
- Disable the VGA1 output: - Disable the VGA1 output:
`xrandr --output {{VGA1}} --off` `xrandr --output VGA1 --off`
- Set the brightness for LVDS1 to 50%: - Set the brightness for LVDS1 to 50%:
`xrandr --output {{LVDS1}} --brightness {{0.5}}` `xrandr --output LVDS1 --brightness 0.5`
- Display the current state of any X server: - Display the current state of any X server: