mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-08-09 05:55:44 +02:00
xrandr: update page and add Dutch translation (#17456)
This commit is contained in:
parent
5bee8dc6dd
commit
b1a56da9d9
2 changed files with 36 additions and 4 deletions
32
pages.nl/linux/xrandr.md
Normal file
32
pages.nl/linux/xrandr.md
Normal 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]}}`
|
|
@ -13,19 +13,19 @@
|
|||
|
||||
- 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:
|
||||
|
||||
`xrandr --output {{HDMI2}} --mode {{1280x1024}} --right-of {{DP1}}`
|
||||
`xrandr --output HDMI2 --mode 1280x1024 --right-of DP1`
|
||||
|
||||
- Disable the VGA1 output:
|
||||
|
||||
`xrandr --output {{VGA1}} --off`
|
||||
`xrandr --output VGA1 --off`
|
||||
|
||||
- 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:
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue