Last active
August 6, 2019 20:41
-
-
Save alexisdiel/4e6747af930677b023daaf4e3cfc8570 to your computer and use it in GitHub Desktop.
Command to config 3 monitors on ubuntu
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
______________ _________________ _________________ | |
|| eDP-1 || || HDMI-1 || || DP-1 || | |
|| 1920 || || 1440 || || 1440 || | |
|| 1080 || || 900 || || 900 || | |
||____________|| ||_______________|| ||_______________|| | |
|______________| |_________________| |_________________| | |
\\############\\ _|_______|_ _|_______|_ | |
\ ____ \ | |
\_____\___\____\ | |
xrandr | |
--output eDP-1 --auto --panning 1920x1080+0+0 | |
--output HDMI-1 --auto --panning 1440x900+1920+0 --right-of eDP-1 | |
--output DP-1 --auto --panning 1440x900+3360+0 --right-of HDMI-1 | |
_________________ _________________ ______________ | |
|| HDMI-1 || || DP-1 || || eDP-1 || | |
|| 1440 || || 1440 || || 1920 || | |
|| 900 || || 900 || || 1080 || | |
||_______________|| ||_______________|| ||____________|| | |
|_________________| |_________________| |______________| | |
_|_______|_ _|_______|_ \\############\\ | |
\ ____ \ | |
\_____\___\____\ | |
xrandr | |
--output HDMI-1 --auto --panning 1440x900+0+0 | |
--output DP-1 --auto --panning 1440x900+1440+0 --right-of HDMI-1 | |
--output eDP-1 --auto --panning 1920x1080+2880+0 --right-of DP-1 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment