From 527c3cdae7fb917ee5b75ee64b3443125a2b2141 Mon Sep 17 00:00:00 2001 From: Phillip Berndt Date: Wed, 11 Feb 2015 10:54:16 +0100 Subject: [PATCH] Transformation matrices can contain negative indices --- autorandr.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/autorandr.py b/autorandr.py index 1e08e50..c14e6d2 100755 --- a/autorandr.py +++ b/autorandr.py @@ -95,7 +95,7 @@ class XrandrOutput(object): ).* (?:\s*(?: # Properties of the output Gamma: (?P[0-9\.:\s]+) | # Gamma value - Transform: (?P[0-9\.\s]+) | # Transformation matrix + Transform: (?P[\-0-9\.\s]+) | # Transformation matrix EDID: (?P[0-9a-f\s]+) | # EDID of the output (?![0-9])[^:\s][^:\n]+:.*(?:\s\\t[\\t ].+)* # Other properties ))+ -- 2.39.2