mirror of
https://github.com/tldr-pages/tldr.git
synced 2024-11-01 17:17:56 +01:00
commit
83b9e04f8d
1 changed files with 23 additions and 0 deletions
23
pages/linux/xrandr.md
Normal file
23
pages/linux/xrandr.md
Normal file
|
@ -0,0 +1,23 @@
|
|||
# xrandr
|
||||
|
||||
> Set the size, orientation and/or reflection of the outputs for a screen
|
||||
|
||||
- Display the current state of the system (known screens, resolutions, ...)
|
||||
|
||||
`xrandr --query`
|
||||
|
||||
- Disable disconnected outputs and enable connected ones with default settings
|
||||
|
||||
`xrandr --auto`
|
||||
|
||||
- Change the resolution and update frequency of DisplayPort 1 to 1920x1080, 60Hz
|
||||
|
||||
`xrandr --output {{DP1}} --mode {{1920x1080}} --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}}`
|
||||
|
||||
- Disable the VGA1 output
|
||||
|
||||
`xrandr --output {{VGA1}} --off`
|
Loading…
Reference in a new issue