What’s xrandr ?
Xrand is a command that can be use to configure a screen resolution as well as many other parameters of a screen
To use xrand open a shell and type
1 |
server # xrandr |
you should see the actual configuration of your screen(s)
to rotate them you can use this command
1 |
xrandr --output SCREEN1 --rotate left |
(*note: SCREEN1 is the name of the current screen) commands such as ;eft, right, inverted , normal. can be used.
To use the command on a dual screen simply add the second screen as parameter.
1 |
xrandr --output SCREEN1 --right-of SCREEN2 |
More information the command in the man.
1 |
man xrandr |
That’s it.
Post a Comment