diff options
Diffstat (limited to 'monitor-probe-using-X')
-rwxr-xr-x | monitor-probe-using-X | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/monitor-probe-using-X b/monitor-probe-using-X index 70b0252..1b6299c 100755 --- a/monitor-probe-using-X +++ b/monitor-probe-using-X @@ -177,6 +177,11 @@ sub parse_X_log { # via format: "Selected Panel Size is 640x480\n", ... (via/via_driver.c) || $log =~ m!\bSelected Panel Size is (\d+)x(\d+)$!m + # (WW) intel(0): BIOS panel mode is bigger than probed programmed mode, continuing with BIOS mode. + # (II) intel(0): BIOS mode: + # (II) intel(0): Modeline "1280x800"x0.0 68.88 1280 1296 1344 1410 800 804 807 815 (48.9 kHz) + || $log =~ m!BIOS panel mode is bigger than probed programmed mode, continuing with BIOS mode.*?BIOS mode:.*?Modeline "(\d+)x(\d+)"!s + or return; my ($X, $Y) = ($1, $2); |