mirror of
https://github.com/phillipberndt/autorandr
synced 2024-12-20 05:10:11 +00:00
Added support for rotated outputs to the xrandr codepath.
This commit is contained in:
parent
72bced7aeb
commit
8dbcc7f2ef
@ -123,6 +123,11 @@ current_cfg_xrandr() {
|
||||
/^[^ ]+ connected [^(]/ {
|
||||
split($3, A, "+");
|
||||
print "output "$1;
|
||||
if (($4 == "left") || ($4 == "right")) {
|
||||
split(A[1], B, "x");
|
||||
A[1] = B[2]"x"B[1];
|
||||
print "rotate "$4;
|
||||
}
|
||||
print "mode "A[1];
|
||||
print "pos "A[2]"x"A[3];
|
||||
if (A[1] A[2] "," A[3] == primary_setup)
|
||||
|
Loading…
Reference in New Issue
Block a user