mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-09-10 15:53:34 +02:00
xrandr: add German translation (#7254)
This commit is contained in:
parent
211bb41d86
commit
f56316e276
1 changed files with 32 additions and 0 deletions
32
pages.de/linux/xrandr.md
Normal file
32
pages.de/linux/xrandr.md
Normal file
|
@ -0,0 +1,32 @@
|
|||
# xrandr
|
||||
|
||||
> Setzt die Auflösung, Orientierung und/oder Reflektion eines Bildschirmausgangs.
|
||||
> Weitere Informationen: <https://www.x.org/releases/current/doc/man/man1/xrandr.1.xhtml>.
|
||||
|
||||
- Zeige den momentanen Systemzustand an (erkannte Bildschirme, Auflösungen, ...):
|
||||
|
||||
`xrandr --query`
|
||||
|
||||
- Deaktiviere nicht mehr verbundene Ausgangsgeräte und aktiviere verbundene Ausgänge mit Standardeinstellungen:
|
||||
|
||||
`xrandr --auto`
|
||||
|
||||
- Ändere die Auflösung und Bildfrequenz von DisplayPort 1 zu 1920x1080, 60Hz:
|
||||
|
||||
`xrandr --output {{DP1}} --mode {{1920x1080}} --rate {{60}}`
|
||||
|
||||
- Setze die Auflösung von HDMI auf 1280x1024 und platziere HDMI1 rechts von DP1:
|
||||
|
||||
`xrandr --output {{HDMI2}} --mode {{1280x1024}} --right-of {{DP1}}`
|
||||
|
||||
- Deaktiviere den Ausgang von VGA1:
|
||||
|
||||
`xrandr --output {{VGA1}} --off`
|
||||
|
||||
- Setze die Bildschirmhelligkeit von LVDS1 auf 50%:
|
||||
|
||||
`xrandr --output {{LVDS1}} --brightness {{0.5}}`
|
||||
|
||||
- Zeige Hardwareinformation der Bildschirme an:
|
||||
|
||||
`xrandr -q`
|
Loading…
Add table
Reference in a new issue