You are not logged in.

#1 2022-03-14 11:34:09

liviubiur
Member
Registered: 2016-07-02
Posts: 22

Ugly font rendering. Wrong dimensions detected by xdpyinfo and xrandr

I'm using XFCE 4.16 with an external monitor connected via HDMI.

I don't like how the fonts are rendering especially on the external monitor and for that I started to try to fix it.

For that I created the configuration for the two monitors (the external one and the laptop one):

cat /etc/X11/xorg.conf.d/90-monitor.conf 
Section "Monitor"
    Identifier             "HDMI-2"
    DisplaySize            531 300   
    Option                 "DPI" "92 x 92"
EndSection

Section "Monitor"
    Identifier             "eDP-1"
    DisplaySize            344 194
    Option                 "DPI" "141 x 141"
EndSection

I used this website https://pxcalc.com/ and this one https://dpi.lv/ to get the right DPI and physical size.

From the output of xrandr I got the wrong physical size for the external monitor. Instead for the screen of the laptop it looks correct but the resolution of it looks wrong (it is 1920 x 1080 but xrandr says it is 3840 x 1080).

xrandr
Screen 0: minimum 320 x 200, current 3840 x 1080, maximum 16384 x 16384
eDP-1 connected 1920x1080+0+0 (normal left inverted right x axis y axis) 344mm x 193mm
   1920x1080     60.00*+  59.97    59.96    59.93  
   1680x1050     59.95    59.88  
   1400x1050     59.98  
   1600x900      59.99    59.94    59.95    59.82  
   1280x1024     60.02  
   1400x900      59.96    59.88  
   1280x960      60.00  
   1440x810      60.00    59.97  
   1368x768      59.88    59.85  
   1280x800      59.99    59.97    59.81    59.91  
   1280x720      60.00    59.99    59.86    59.74  
   1024x768      60.04    60.00  
   960x720       60.00  
   928x696       60.05  
   896x672       60.01  
   1024x576      59.95    59.96    59.90    59.82  
   960x600       59.93    60.00  
   960x540       59.96    59.99    59.63    59.82  
   800x600       60.00    60.32    56.25  
   840x525       60.01    59.88  
   864x486       59.92    59.57  
   700x525       59.98  
   800x450       59.95    59.82  
   640x512       60.02  
   700x450       59.96    59.88  
   640x480       60.00    59.94  
   720x405       59.51    58.99  
   684x384       59.88    59.85  
   640x400       59.88    59.98  
   640x360       59.86    59.83    59.84    59.32  
   512x384       60.00  
   512x288       60.00    59.92  
   480x270       59.63    59.82  
   400x300       60.32    56.34  
   432x243       59.92    59.57  
   320x240       60.05  
   360x202       59.51    59.13  
   320x180       59.84    59.32  
DP-1 disconnected (normal left inverted right x axis y axis)
HDMI-1 disconnected (normal left inverted right x axis y axis)
HDMI-2 connected primary 1920x1080+1920+0 (normal left inverted right x axis y axis) 368mm x 207mm
   1920x1080     60.00*+  60.00    50.00    59.94    59.99  
   1920x1080i    60.00    50.00    59.94  
   1680x1050     59.88  
   1600x900      60.00  
   1280x1024     75.02    60.02  
   1440x900      59.90  
   1280x960      60.00  
   1366x768      59.79  
   1152x864      75.00  
   1280x768i    119.74  
   1280x720      60.00    50.00    59.94  
   1024x768      75.03    70.07    60.00  
   832x624       74.55  
   800x600       72.19    75.00    60.32    56.25  
   720x576       50.00  
   720x480       60.00    59.94  
   640x480       75.00    72.81    66.67    60.00    59.94  
   720x400       70.08  

Here is the output of xdpyinfo. I don't understand why it shows only one monitor (no info related to the external monitor).

xdpyinfo | grep -B1 dot
  dimensions:    3840x1080 pixels (531x300 millimeters)
  resolution:    184x91 dots per inch

Offline

#2 2022-03-14 12:16:47

seth
Member
From: Won't reply 2 private help req
Registered: 2012-09-03
Posts: 77,275

Re: Ugly font rendering. Wrong dimensions detected by xdpyinfo and xrandr

X11 only support one logical DPI per DISPLAY - you cannot have different DPIs for different outputs.
Mitigation strategies are to scale one of the outputs (pretty much what wayland does) or force an intermediate DPI (eg. 116 dpi)

The xorg config option is (afaik) only supporged by the binary nvidia driver.
Try "xrandr --dpi 116", but there're more values impacting various font rasterization implementations.
https://wiki.archlinux.org/title/HiDPI

What you see in xdpyinfo is the dimensions of the root window and the (somehow) configured DPI, which in combination leads to wrongly calculated physical dimensions (the height is added up, though the actual height of the root window is 207mm

xrandr correctly shows the resolutions of both outputs, the "screen" size is the combination, reflecting the horizontal layout of the outputs.
It's also the most trustworthy source for the physical dimensions of the outputs (the mm values)

Offline

#3 2022-03-14 12:45:26

liviubiur
Member
Registered: 2016-07-02
Posts: 22

Re: Ugly font rendering. Wrong dimensions detected by xdpyinfo and xrandr

What I need to do is just to change the DPI value and to set the same value for both of the monitors?

I'm not sure if I understood right but basically the resolution of the "Screen 0", of xrandr command, is correct because it shows the combination of "eDP-1" and "HDMI-2".

Instead for the physical dimension I'm not sure I understood it right.
xrandr shows me that my external monitor is "368mm x 207mm" but this is not true.

Should I fix it somehow?

Offline

#4 2022-03-14 12:48:36

seth
Member
From: Won't reply 2 private help req
Registered: 2012-09-03
Posts: 77,275

Re: Ugly font rendering. Wrong dimensions detected by xdpyinfo and xrandr

What I need to do is just to change the DPI value and to set the same value for both of the monitors?

Yes.

I'm not sure if I understood right but basically the resolution of the "Screen 0", of xrandr command, is correct because it shows the combination of "eDP-1" and "HDMI-2".

Yes.

xrandr shows me that my external monitor is "368mm x 207mm" but this is not true.
Should I fix it somehow?

Yes, https://man.archlinux.org/man/xorg.conf.5#DisplaySize
WHat is the actual size of the monitor? (roughly)

Offline

#5 2022-03-14 12:55:49

liviubiur
Member
Registered: 2016-07-02
Posts: 22

Re: Ugly font rendering. Wrong dimensions detected by xdpyinfo and xrandr

Yes, https://man.archlinux.org/man/xorg.conf.5#DisplaySize
WHat is the actual size of the monitor? (roughly)

It is roughly "531 x 300 ".

Offline

#6 2022-03-14 12:59:17

seth
Member
From: Won't reply 2 private help req
Registered: 2012-09-03
Posts: 77,275

Re: Ugly font rendering. Wrong dimensions detected by xdpyinfo and xrandr

That would fit the 92 and is actually in your /etc/X11/xorg.conf.d/90-monitor.conf  - can you please post the Xorg log, https://wiki.archlinux.org/title/Xorg#General

Offline

#7 2022-03-14 13:07:18

liviubiur
Member
Registered: 2016-07-02
Posts: 22

Re: Ugly font rendering. Wrong dimensions detected by xdpyinfo and xrandr

seth wrote:

That would fit the 92 and is actually in your /etc/X11/xorg.conf.d/90-monitor.conf  - can you please post the Xorg log, https://wiki.archlinux.org/title/Xorg#General

Sure, here is the log!

[     4.239] (==) Log file: "/var/log/Xorg.0.log", Time: Mon Mar 14 13:34:30 2022
[     4.243] (II) systemd-logind: logind integration requires -keeptty and -keeptty was not provided, disabling logind integration
[     5.216] (II) config/udev: Adding input device Logitech Wireless Mouse (/dev/input/event8)
[     5.216] (**) Logitech Wireless Mouse: Applying InputClass "libinput pointer catchall"
[     5.216] (II) Using input driver 'libinput' for 'Logitech Wireless Mouse'
[     5.216] (**) Logitech Wireless Mouse: always reports core events
[     5.221] (II) event8  - Logitech Wireless Mouse: is tagged by udev as: Mouse
[     5.221] (II) event8  - Logitech Wireless Mouse: device is a pointer
[     5.222] (II) event8  - Logitech Wireless Mouse: device removed
[     5.275] (II) XINPUT: Adding extended input device "Logitech Wireless Mouse" (type: MOUSE, id 11)
[     5.276] (**) Logitech Wireless Mouse: (accel) selected scheme none/0
[     5.276] (**) Logitech Wireless Mouse: (accel) acceleration factor: 2.000
[     5.276] (**) Logitech Wireless Mouse: (accel) acceleration threshold: 4
[     5.280] (II) event8  - Logitech Wireless Mouse: is tagged by udev as: Mouse
[     5.281] (II) event8  - Logitech Wireless Mouse: device is a pointer
[     5.284] (II) config/udev: Adding input device Logitech Wireless Mouse (/dev/input/mouse1)
[     5.286] (II) config/udev: Adding input device Logitech K540/K545 (/dev/input/event9)
[     5.286] (**) Logitech K540/K545: Applying InputClass "libinput keyboard catchall"
[     5.286] (**) Logitech K540/K545: Applying InputClass "system-keyboard"
[     5.286] (**) Logitech K540/K545: Applying InputClass "system-keyboard"
[     5.286] (II) Using input driver 'libinput' for 'Logitech K540/K545'
[     5.286] (**) Logitech K540/K545: always reports core events
[     5.291] (II) event9  - Logitech K540/K545: is tagged by udev as: Keyboard
[     5.291] (II) event9  - Logitech K540/K545: device is a keyboard
[     5.292] (II) event9  - Logitech K540/K545: device removed
[     5.329] (II) libinput: Logitech K540/K545: needs a virtual subdevice
[     5.329] (II) XINPUT: Adding extended input device "Logitech K540/K545" (type: MOUSE, id 12)
[     5.329] (**) Logitech K540/K545: (accel) selected scheme none/0
[     5.329] (**) Logitech K540/K545: (accel) acceleration factor: 2.000
[     5.329] (**) Logitech K540/K545: (accel) acceleration threshold: 4
[     5.334] (II) event9  - Logitech K540/K545: is tagged by udev as: Keyboard
[     5.334] (II) event9  - Logitech K540/K545: device is a keyboard
[     5.626] (**) Logitech K540/K545: Applying InputClass "libinput keyboard catchall"
[     5.626] (**) Logitech K540/K545: Applying InputClass "system-keyboard"
[     5.626] (**) Logitech K540/K545: Applying InputClass "system-keyboard"
[     5.626] (II) Using input driver 'libinput' for 'Logitech K540/K545'
[     5.626] (**) Logitech K540/K545: always reports core events
[     5.626] (II) libinput: Logitech K540/K545: is a virtual subdevice
[     5.626] (II) XINPUT: Adding extended input device "Logitech K540/K545" (type: KEYBOARD, id 16)
[     6.111] (II) config/udev: Adding input device Logitech Wireless Mouse (/dev/input/mouse1)
[     6.112] (II) config/udev: removing device Logitech K540/K545
[     6.112] (II) config/udev: removing device Logitech K540/K545
[     6.112] (II) event9  - Logitech K540/K545: device removed
[     6.144] (II) config/udev: Adding input device Logitech K540/K545 (/dev/input/event9)
[     6.144] (**) Logitech K540/K545: Applying InputClass "libinput keyboard catchall"
[     6.144] (**) Logitech K540/K545: Applying InputClass "system-keyboard"
[     6.144] (**) Logitech K540/K545: Applying InputClass "system-keyboard"
[     6.144] (II) Using input driver 'libinput' for 'Logitech K540/K545'
[     6.144] (**) Logitech K540/K545: always reports core events
[     6.148] (II) event9  - Logitech K540/K545: is tagged by udev as: Keyboard
[     6.148] (II) event9  - Logitech K540/K545: device is a keyboard
[     6.148] (II) event9  - Logitech K540/K545: device removed
[     6.182] (II) libinput: Logitech K540/K545: needs a virtual subdevice
[     6.182] (II) XINPUT: Adding extended input device "Logitech K540/K545" (type: MOUSE, id 12)
[     6.183] (**) Logitech K540/K545: (accel) selected scheme none/0
[     6.183] (**) Logitech K540/K545: (accel) acceleration factor: 2.000
[     6.183] (**) Logitech K540/K545: (accel) acceleration threshold: 4
[     6.187] (II) event9  - Logitech K540/K545: is tagged by udev as: Keyboard
[     6.187] (II) event9  - Logitech K540/K545: device is a keyboard
[     6.188] (**) Logitech K540/K545: Applying InputClass "libinput keyboard catchall"
[     6.188] (**) Logitech K540/K545: Applying InputClass "system-keyboard"
[     6.188] (**) Logitech K540/K545: Applying InputClass "system-keyboard"
[     6.188] (II) Using input driver 'libinput' for 'Logitech K540/K545'
[     6.188] (**) Logitech K540/K545: always reports core events
[     6.188] (II) libinput: Logitech K540/K545: is a virtual subdevice
[     6.188] (II) XINPUT: Adding extended input device "Logitech K540/K545" (type: KEYBOARD, id 16)
[     6.189] (II) config/udev: removing device Logitech Wireless Mouse
[     6.189] (II) event8  - Logitech Wireless Mouse: device removed
[     6.264] (II) config/udev: Adding input device Logitech Wireless Mouse (/dev/input/event8)
[     6.264] (**) Logitech Wireless Mouse: Applying InputClass "libinput pointer catchall"
[     6.264] (II) Using input driver 'libinput' for 'Logitech Wireless Mouse'
[     6.264] (**) Logitech Wireless Mouse: always reports core events
[     6.268] (II) event8  - Logitech Wireless Mouse: is tagged by udev as: Mouse
[     6.269] (II) event8  - Logitech Wireless Mouse: device is a pointer
[     6.270] (II) event8  - Logitech Wireless Mouse: device removed
[     6.342] (II) XINPUT: Adding extended input device "Logitech Wireless Mouse" (type: MOUSE, id 11)
[     6.343] (**) Logitech Wireless Mouse: (accel) selected scheme none/0
[     6.343] (**) Logitech Wireless Mouse: (accel) acceleration factor: 2.000
[     6.343] (**) Logitech Wireless Mouse: (accel) acceleration threshold: 4
[     6.347] (II) event8  - Logitech Wireless Mouse: is tagged by udev as: Mouse
[     6.348] (II) event8  - Logitech Wireless Mouse: device is a pointer
[   254.817] (EE) event9  - Logitech K540/K545: client bug: event processing lagging behind by 24ms, your system is too slow
[  1085.236] (EE) event9  - Logitech K540/K545: client bug: event processing lagging behind by 34ms, your system is too slow

Meanwhile I changed the DPI to 92 but xdpyinfo continue to see the DPI value as 96:

cat /etc/X11/xorg.conf.d/90-monitor.conf 
Section "Monitor"
    Identifier             "HDMI-2"
    DisplaySize            531 300   
    Option                 "DPI" "92 x 92"
EndSection

Section "Monitor"
    Identifier             "eDP-1"
    DisplaySize            344 194
    Option                 "DPI" "92 x 92"
xdpyinfo | grep -B1 dot
  dimensions:    3840x1080 pixels (1016x286 millimeters)
  resolution:    96x96 dots per inch

Offline

#8 2022-03-14 13:11:14

seth
Member
From: Won't reply 2 private help req
Registered: 2012-09-03
Posts: 77,275

Re: Ugly font rendering. Wrong dimensions detected by xdpyinfo and xrandr

That's noway near a complete Xorg log (no config parsing or any graphics related data at all) - as pointed out previously, only the nvidia blob will interpret that option.
You've to specify it on the commandline otherwise, https://wiki.archlinux.org/title/Xorg#D … ze_and_DPI - or set it at runtime using xrandr.

Offline

#9 2022-03-14 13:19:09

liviubiur
Member
Registered: 2016-07-02
Posts: 22

Re: Ugly font rendering. Wrong dimensions detected by xdpyinfo and xrandr

seth wrote:

That's noway near a complete Xorg log (no config parsing or any graphics related data at all) - as pointed out previously, only the nvidia blob will interpret that option.
You've to specify it on the commandline otherwise, https://wiki.archlinux.org/title/Xorg#D … ze_and_DPI - or set it at runtime using xrandr.

Hmmm, sorry but I don't understand exactly what should I do.
Do you want more log data?

Offline

#10 2022-03-14 13:20:38

seth
Member
From: Won't reply 2 private help req
Registered: 2012-09-03
Posts: 77,275

Re: Ugly font rendering. Wrong dimensions detected by xdpyinfo and xrandr

Do you want more log data?

I'll have to see the entire xorg log to make an informed comment on what's going on and why.

Offline

#11 2022-03-14 13:24:37

liviubiur
Member
Registered: 2016-07-02
Posts: 22

Re: Ugly font rendering. Wrong dimensions detected by xdpyinfo and xrandr

seth wrote:

Do you want more log data?

I'll have to see the entire xorg log to make an informed comment on what's going on and why.

Ah, ok. Sorry for misunderstanding it. Here is the log:

[     4.600] (II) modeset(0): 	02031ef14b900504030201111213141f
[     4.600] (II) modeset(0): 	230907078301000065030c0010001a36
[     4.600] (II) modeset(0): 	80a070381e403020350022602100001a
[     4.600] (II) modeset(0): 	662156aa51001e30468f330022602100
[     4.600] (II) modeset(0): 	001e011d007251d01e206e2855002260
[     4.600] (II) modeset(0): 	2100001e8c0ad08a20e02d10103e9600
[     4.600] (II) modeset(0): 	2260210000180e1f008051001e303020
[     4.600] (II) modeset(0): 	370022602100009e0000000000000035
[     4.600] (II) modeset(0): Not using mode "1600x1200" (bad mode clock/interlace/doublescan)
[     4.600] (II) modeset(0): Printing probed modes for output HDMI-2
[     4.601] (II) modeset(0): Modeline "1920x1080"x60.0  148.50  1920 2008 2052 2200  1080 1084 1089 1125 +hsync -vsync (67.5 kHz eP)
[     4.601] (II) modeset(0): Modeline "1920x1080"x60.0  148.50  1920 2008 2052 2200  1080 1084 1089 1125 +hsync +vsync (67.5 kHz e)
[     4.601] (II) modeset(0): Modeline "1920x1080"x50.0  148.50  1920 2448 2492 2640  1080 1084 1089 1125 +hsync +vsync (56.2 kHz e)
[     4.601] (II) modeset(0): Modeline "1920x1080"x59.9  148.35  1920 2008 2052 2200  1080 1084 1089 1125 +hsync +vsync (67.4 kHz e)
[     4.601] (II) modeset(0): Modeline "1920x1080"x60.0  138.50  1920 1968 2000 2080  1080 1083 1088 1110 +hsync -vsync (66.6 kHz e)
[     4.601] (II) modeset(0): Modeline "1920x1080i"x60.0   74.25  1920 2008 2052 2200  1080 1084 1094 1125 interlace +hsync +vsync (33.8 kHz e)
[     4.601] (II) modeset(0): Modeline "1920x1080i"x50.0   74.25  1920 2448 2492 2640  1080 1084 1094 1125 interlace +hsync +vsync (28.1 kHz e)
[     4.601] (II) modeset(0): Modeline "1920x1080i"x59.9   74.18  1920 2008 2052 2200  1080 1084 1094 1125 interlace +hsync +vsync (33.7 kHz e)
[     4.601] (II) modeset(0): Modeline "1680x1050"x59.9  119.00  1680 1728 1760 1840  1050 1053 1059 1080 +hsync -vsync (64.7 kHz e)
[     4.601] (II) modeset(0): Modeline "1600x900"x60.0  108.00  1600 1624 1704 1800  900 901 904 1000 +hsync +vsync (60.0 kHz e)
[     4.601] (II) modeset(0): Modeline "1280x1024"x75.0  135.00  1280 1296 1440 1688  1024 1025 1028 1066 +hsync +vsync (80.0 kHz e)
[     4.601] (II) modeset(0): Modeline "1280x1024"x60.0  108.00  1280 1328 1440 1688  1024 1025 1028 1066 +hsync +vsync (64.0 kHz e)
[     4.601] (II) modeset(0): Modeline "1440x900"x59.9   88.75  1440 1488 1520 1600  900 903 909 926 +hsync -vsync (55.5 kHz e)
[     4.601] (II) modeset(0): Modeline "1280x960"x60.0  108.00  1280 1376 1488 1800  960 961 964 1000 +hsync +vsync (60.0 kHz e)
[     4.601] (II) modeset(0): Modeline "1366x768"x59.8   85.50  1366 1436 1579 1792  768 771 774 798 +hsync +vsync (47.7 kHz e)
[     4.601] (II) modeset(0): Modeline "1152x864"x75.0  108.00  1152 1216 1344 1600  864 865 868 900 +hsync +vsync (67.5 kHz e)
[     4.601] (II) modeset(0): Modeline "1280x768i"x119.7   79.50  1280 1328 1360 1664  768 771 778 798 interlace +hsync +vsync (47.8 kHz e)
[     4.601] (II) modeset(0): Modeline "1280x720"x60.0   74.25  1280 1390 1430 1650  720 725 730 750 +hsync +vsync (45.0 kHz e)
[     4.601] (II) modeset(0): Modeline "1280x720"x50.0   74.25  1280 1720 1760 1980  720 725 730 750 +hsync +vsync (37.5 kHz e)
[     4.601] (II) modeset(0): Modeline "1280x720"x59.9   74.18  1280 1390 1430 1650  720 725 730 750 +hsync +vsync (45.0 kHz e)
[     4.601] (II) modeset(0): Modeline "1024x768"x75.0   78.75  1024 1040 1136 1312  768 769 772 800 +hsync +vsync (60.0 kHz e)
[     4.601] (II) modeset(0): Modeline "1024x768"x70.1   75.00  1024 1048 1184 1328  768 771 777 806 -hsync -vsync (56.5 kHz e)
[     4.601] (II) modeset(0): Modeline "1024x768"x60.0   65.00  1024 1048 1184 1344  768 771 777 806 -hsync -vsync (48.4 kHz e)
[     4.601] (II) modeset(0): Modeline "832x624"x74.6   57.28  832 864 928 1152  624 625 628 667 -hsync -vsync (49.7 kHz e)
[     4.601] (II) modeset(0): Modeline "800x600"x72.2   50.00  800 856 976 1040  600 637 643 666 +hsync +vsync (48.1 kHz e)
[     4.601] (II) modeset(0): Modeline "800x600"x75.0   49.50  800 816 896 1056  600 601 604 625 +hsync +vsync (46.9 kHz e)
[     4.601] (II) modeset(0): Modeline "800x600"x60.3   40.00  800 840 968 1056  600 601 605 628 +hsync +vsync (37.9 kHz e)
[     4.601] (II) modeset(0): Modeline "800x600"x56.2   36.00  800 824 896 1024  600 601 603 625 +hsync +vsync (35.2 kHz e)
[     4.601] (II) modeset(0): Modeline "720x576"x50.0   27.00  720 732 796 864  576 581 586 625 -hsync -vsync (31.2 kHz e)
[     4.601] (II) modeset(0): Modeline "720x480"x60.0   27.03  720 736 798 858  480 489 495 525 -hsync -vsync (31.5 kHz e)
[     4.601] (II) modeset(0): Modeline "720x480"x59.9   27.00  720 736 798 858  480 489 495 525 -hsync -vsync (31.5 kHz e)
[     4.601] (II) modeset(0): Modeline "640x480"x75.0   31.50  640 656 720 840  480 481 484 500 -hsync -vsync (37.5 kHz e)
[     4.601] (II) modeset(0): Modeline "640x480"x72.8   31.50  640 664 704 832  480 489 492 520 -hsync -vsync (37.9 kHz e)
[     4.601] (II) modeset(0): Modeline "640x480"x66.7   30.24  640 704 768 864  480 483 486 525 -hsync -vsync (35.0 kHz e)
[     4.601] (II) modeset(0): Modeline "640x480"x60.0   25.20  640 656 752 800  480 490 492 525 -hsync -vsync (31.5 kHz e)
[     4.601] (II) modeset(0): Modeline "640x480"x59.9   25.18  640 656 752 800  480 490 492 525 -hsync -vsync (31.5 kHz e)
[     4.601] (II) modeset(0): Modeline "720x400"x70.1   28.32  720 738 846 900  400 412 414 449 -hsync +vsync (31.5 kHz e)
[     4.601] (II) modeset(0): Output eDP-1 connected
[     4.601] (II) modeset(0): Output DP-1 disconnected
[     4.601] (II) modeset(0): Output HDMI-1 disconnected
[     4.601] (II) modeset(0): Output HDMI-2 connected
[     4.601] (II) modeset(0): Using spanning desktop for initial modes
[     4.601] (II) modeset(0): Output eDP-1 using initial mode 1920x1080 +0+0
[     4.601] (II) modeset(0): Output HDMI-2 using initial mode 1920x1080 +1920+0
[     4.601] (==) modeset(0): Using gamma correction (1.0, 1.0, 1.0)
[     4.601] (==) modeset(0): DPI set to (96, 96)
[     4.601] (II) Loading sub module "fb"
[     4.601] (II) LoadModule: "fb"
[     4.601] (II) Module "fb" already built-in
[     4.634] (==) modeset(0): Backing store enabled
[     4.634] (==) modeset(0): Silken mouse enabled
[     4.842] (II) modeset(0): Initializing kms color map for depth 24, 8 bpc.
[     4.843] (==) modeset(0): DPMS enabled
[     4.843] (II) modeset(0): [DRI2] Setup complete
[     4.843] (II) modeset(0): [DRI2]   DRI driver: iris
[     4.843] (II) modeset(0): [DRI2]   VDPAU driver: va_gl
[     4.843] (II) Initializing extension Generic Event Extension
[     4.843] (II) Initializing extension SHAPE
[     4.844] (II) Initializing extension MIT-SHM
[     4.844] (II) Initializing extension XInputExtension
[     4.844] (II) Initializing extension XTEST
[     4.845] (II) Initializing extension BIG-REQUESTS
[     4.845] (II) Initializing extension SYNC
[     4.845] (II) Initializing extension XKEYBOARD
[     4.846] (II) Initializing extension XC-MISC
[     4.846] (II) Initializing extension SECURITY
[     4.846] (II) Initializing extension XFIXES
[     4.847] (II) Initializing extension RENDER
[     4.847] (II) Initializing extension RANDR
[     4.848] (II) Initializing extension COMPOSITE
[     4.848] (II) Initializing extension DAMAGE
[     4.848] (II) Initializing extension MIT-SCREEN-SAVER
[     4.849] (II) Initializing extension DOUBLE-BUFFER
[     4.849] (II) Initializing extension RECORD
[     4.849] (II) Initializing extension DPMS
[     4.849] (II) Initializing extension Present
[     4.850] (II) Initializing extension DRI3
[     4.850] (II) Initializing extension X-Resource
[     4.850] (II) Initializing extension XVideo
[     4.851] (II) Initializing extension XVideo-MotionCompensation
[     4.851] (II) Initializing extension GLX
[     4.871] (II) AIGLX: Loaded and initialized iris
[     4.871] (II) GLX: Initialized DRI2 GL provider for screen 0
[     4.871] (II) Initializing extension XFree86-VidModeExtension
[     4.871] (II) Initializing extension XFree86-DGA
[     4.872] (II) Initializing extension XFree86-DRI
[     4.872] (II) Initializing extension DRI2
[     4.873] (II) modeset(0): Damage tracking initialized
[     4.873] (II) modeset(0): Setting screen physical size to 531 x 300
[     4.945] (II) config/udev: Adding input device Power Button (/dev/input/event3)
[     4.945] (**) Power Button: Applying InputClass "libinput keyboard catchall"
[     4.945] (**) Power Button: Applying InputClass "system-keyboard"
[     4.945] (**) Power Button: Applying InputClass "system-keyboard"
[     4.945] (II) LoadModule: "libinput"
[     4.945] (II) Loading /usr/lib/xorg/modules/input/libinput_drv.so
[     4.947] (II) Module libinput: vendor="X.Org Foundation"
[     4.947] 	compiled for 1.21.1.3, module version = 1.2.1
[     4.947] 	Module class: X.Org XInput Driver
[     4.947] 	ABI class: X.Org XInput driver, version 24.4
[     4.947] (II) Using input driver 'libinput' for 'Power Button'
[     4.947] (**) Power Button: always reports core events
[     4.947] (**) Option "Device" "/dev/input/event3"
[     4.952] (II) event3  - Power Button: is tagged by udev as: Keyboard
[     4.952] (II) event3  - Power Button: device is a keyboard
[     4.952] (II) event3  - Power Button: device removed
[     4.978] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/LNXPWRBN:00/input/input3/event3"
[     4.978] (II) XINPUT: Adding extended input device "Power Button" (type: KEYBOARD, id 6)
[     4.978] (**) Option "xkb_model" "pc105"
[     4.978] (**) Option "xkb_layout" "ro"
[     4.978] (**) Option "xkb_variant" "cedilla,,,"
[     5.007] (II) event3  - Power Button: is tagged by udev as: Keyboard
[     5.007] (II) event3  - Power Button: device is a keyboard
[     5.007] (II) config/udev: Adding input device Video Bus (/dev/input/event10)
[     5.007] (**) Video Bus: Applying InputClass "libinput keyboard catchall"
[     5.007] (**) Video Bus: Applying InputClass "system-keyboard"
[     5.007] (**) Video Bus: Applying InputClass "system-keyboard"
[     5.007] (II) Using input driver 'libinput' for 'Video Bus'
[     5.007] (**) Video Bus: always reports core events
[     5.007] (**) Option "Device" "/dev/input/event10"
[     5.008] (II) event10 - Video Bus: is tagged by udev as: Keyboard
[     5.008] (II) event10 - Video Bus: device is a keyboard
[     5.008] (II) event10 - Video Bus: device removed
[     5.062] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/LNXVIDEO:00/input/input15/event10"
[     5.062] (II) XINPUT: Adding extended input device "Video Bus" (type: KEYBOARD, id 7)
[     5.062] (**) Option "xkb_model" "pc105"
[     5.062] (**) Option "xkb_layout" "ro"
[     5.062] (**) Option "xkb_variant" "cedilla,,,"
[     5.065] (II) event10 - Video Bus: is tagged by udev as: Keyboard
[     5.065] (II) event10 - Video Bus: device is a keyboard
[     5.067] (II) config/udev: Adding input device Power Button (/dev/input/event0)
[     5.067] (**) Power Button: Applying InputClass "libinput keyboard catchall"
[     5.067] (**) Power Button: Applying InputClass "system-keyboard"
[     5.067] (**) Power Button: Applying InputClass "system-keyboard"
[     5.067] (II) Using input driver 'libinput' for 'Power Button'
[     5.067] (**) Power Button: always reports core events
[     5.067] (**) Option "Device" "/dev/input/event0"
[     5.069] (II) event0  - Power Button: is tagged by udev as: Keyboard
[     5.069] (II) event0  - Power Button: device is a keyboard
[     5.069] (II) event0  - Power Button: device removed
[     5.103] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input0/event0"
[     5.103] (II) XINPUT: Adding extended input device "Power Button" (type: KEYBOARD, id 8)
[     5.103] (**) Option "xkb_model" "pc105"
[     5.103] (**) Option "xkb_layout" "ro"
[     5.103] (**) Option "xkb_variant" "cedilla,,,"
[     5.106] (II) event0  - Power Button: is tagged by udev as: Keyboard
[     5.106] (II) event0  - Power Button: device is a keyboard
[     5.108] (II) config/udev: Adding input device Lid Switch (/dev/input/event2)
[     5.108] (II) No input driver specified, ignoring this device.
[     5.108] (II) This device may have been added with another device file.
[     5.109] (II) config/udev: Adding input device Sleep Button (/dev/input/event1)
[     5.109] (**) Sleep Button: Applying InputClass "libinput keyboard catchall"
[     5.109] (**) Sleep Button: Applying InputClass "system-keyboard"
[     5.109] (**) Sleep Button: Applying InputClass "system-keyboard"
[     5.109] (II) Using input driver 'libinput' for 'Sleep Button'
[     5.109] (**) Sleep Button: always reports core events
[     5.109] (**) Option "Device" "/dev/input/event1"
[     5.112] (II) event1  - Sleep Button: is tagged by udev as: Keyboard
[     5.112] (II) event1  - Sleep Button: device is a keyboard
[     5.112] (II) event1  - Sleep Button: device removed
[     5.132] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0E:00/input/input1/event1"
[     5.132] (II) XINPUT: Adding extended input device "Sleep Button" (type: KEYBOARD, id 9)
[     5.132] (**) Option "xkb_model" "pc105"
[     5.132] (**) Option "xkb_layout" "ro"
[     5.132] (**) Option "xkb_variant" "cedilla,,,"
[     5.134] (II) event1  - Sleep Button: is tagged by udev as: Keyboard
[     5.135] (II) event1  - Sleep Button: device is a keyboard
[     5.138] (II) config/udev: Adding input device Chicony USB2.0 Camera: Chicony  (/dev/input/event7)
[     5.138] (**) Chicony USB2.0 Camera: Chicony : Applying InputClass "libinput keyboard catchall"
[     5.138] (**) Chicony USB2.0 Camera: Chicony : Applying InputClass "system-keyboard"
[     5.138] (**) Chicony USB2.0 Camera: Chicony : Applying InputClass "system-keyboard"
[     5.138] (II) Using input driver 'libinput' for 'Chicony USB2.0 Camera: Chicony '
[     5.138] (**) Chicony USB2.0 Camera: Chicony : always reports core events
[     5.138] (**) Option "Device" "/dev/input/event7"
[     5.141] (II) event7  - Chicony USB2.0 Camera: Chicony : is tagged by udev as: Keyboard
[     5.141] (II) event7  - Chicony USB2.0 Camera: Chicony : device is a keyboard
[     5.141] (II) event7  - Chicony USB2.0 Camera: Chicony : device removed
[     5.209] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:14.0/usb1/1-5/1-5:1.0/input/input19/event7"
[     5.209] (II) XINPUT: Adding extended input device "Chicony USB2.0 Camera: Chicony " (type: KEYBOARD, id 10)
[     5.209] (**) Option "xkb_model" "pc105"
[     5.209] (**) Option "xkb_layout" "ro"
[     5.209] (**) Option "xkb_variant" "cedilla,,,"
[     5.213] (II) event7  - Chicony USB2.0 Camera: Chicony : is tagged by udev as: Keyboard
[     5.213] (II) event7  - Chicony USB2.0 Camera: Chicony : device is a keyboard
[     5.216] (II) config/udev: Adding input device Logitech Wireless Mouse (/dev/input/event8)
[     5.216] (**) Logitech Wireless Mouse: Applying InputClass "libinput pointer catchall"
[     5.216] (II) Using input driver 'libinput' for 'Logitech Wireless Mouse'
[     5.216] (**) Logitech Wireless Mouse: always reports core events
[     5.216] (**) Option "Device" "/dev/input/event8"
[     5.221] (II) event8  - Logitech Wireless Mouse: is tagged by udev as: Mouse
[     5.221] (II) event8  - Logitech Wireless Mouse: device is a pointer
[     5.222] (II) event8  - Logitech Wireless Mouse: device removed
[     5.275] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:14.0/usb1/1-6/1-6:1.2/0003:046D:C52B.0003/0003:046D:4055.0004/input/input37/event8"
[     5.275] (II) XINPUT: Adding extended input device "Logitech Wireless Mouse" (type: MOUSE, id 11)
[     5.276] (**) Option "AccelerationScheme" "none"
[     5.276] (**) Logitech Wireless Mouse: (accel) selected scheme none/0
[     5.276] (**) Logitech Wireless Mouse: (accel) acceleration factor: 2.000
[     5.276] (**) Logitech Wireless Mouse: (accel) acceleration threshold: 4
[     5.280] (II) event8  - Logitech Wireless Mouse: is tagged by udev as: Mouse
[     5.281] (II) event8  - Logitech Wireless Mouse: device is a pointer
[     5.284] (II) config/udev: Adding input device Logitech Wireless Mouse (/dev/input/mouse1)
[     5.284] (II) No input driver specified, ignoring this device.
[     5.284] (II) This device may have been added with another device file.
[     5.286] (II) config/udev: Adding input device Logitech K540/K545 (/dev/input/event9)
[     5.286] (**) Logitech K540/K545: Applying InputClass "libinput keyboard catchall"
[     5.286] (**) Logitech K540/K545: Applying InputClass "system-keyboard"
[     5.286] (**) Logitech K540/K545: Applying InputClass "system-keyboard"
[     5.286] (II) Using input driver 'libinput' for 'Logitech K540/K545'
[     5.286] (**) Logitech K540/K545: always reports core events
[     5.286] (**) Option "Device" "/dev/input/event9"
[     5.291] (II) event9  - Logitech K540/K545: is tagged by udev as: Keyboard
[     5.291] (II) event9  - Logitech K540/K545: device is a keyboard
[     5.292] (II) event9  - Logitech K540/K545: device removed
[     5.329] (II) libinput: Logitech K540/K545: needs a virtual subdevice
[     5.329] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:14.0/usb1/1-6/1-6:1.2/0003:046D:C52B.0003/0003:046D:4076.0005/input/input38/event9"
[     5.329] (II) XINPUT: Adding extended input device "Logitech K540/K545" (type: MOUSE, id 12)
[     5.329] (**) Option "AccelerationScheme" "none"
[     5.329] (**) Logitech K540/K545: (accel) selected scheme none/0
[     5.329] (**) Logitech K540/K545: (accel) acceleration factor: 2.000
[     5.329] (**) Logitech K540/K545: (accel) acceleration threshold: 4
[     5.334] (II) event9  - Logitech K540/K545: is tagged by udev as: Keyboard
[     5.334] (II) event9  - Logitech K540/K545: device is a keyboard
[     5.336] (II) config/udev: Adding input device HDA Intel PCH Mic (/dev/input/event12)
[     5.336] (II) No input driver specified, ignoring this device.
[     5.336] (II) This device may have been added with another device file.
[     5.337] (II) config/udev: Adding input device HDA Intel PCH Front Headphone (/dev/input/event13)
[     5.338] (II) No input driver specified, ignoring this device.
[     5.338] (II) This device may have been added with another device file.
[     5.339] (II) config/udev: Adding input device HDA Intel PCH HDMI/DP,pcm=3 (/dev/input/event14)
[     5.339] (II) No input driver specified, ignoring this device.
[     5.339] (II) This device may have been added with another device file.
[     5.340] (II) config/udev: Adding input device HDA Intel PCH HDMI/DP,pcm=7 (/dev/input/event15)
[     5.340] (II) No input driver specified, ignoring this device.
[     5.340] (II) This device may have been added with another device file.
[     5.341] (II) config/udev: Adding input device HDA Intel PCH HDMI/DP,pcm=8 (/dev/input/event16)
[     5.341] (II) No input driver specified, ignoring this device.
[     5.341] (II) This device may have been added with another device file.
[     5.342] (II) config/udev: Adding input device HDA Intel PCH HDMI/DP,pcm=9 (/dev/input/event17)
[     5.342] (II) No input driver specified, ignoring this device.
[     5.342] (II) This device may have been added with another device file.
[     5.344] (II) config/udev: Adding input device HDA Intel PCH HDMI/DP,pcm=10 (/dev/input/event18)
[     5.344] (II) No input driver specified, ignoring this device.
[     5.344] (II) This device may have been added with another device file.
[     5.345] (II) config/udev: Adding input device Intel HID events (/dev/input/event5)
[     5.345] (**) Intel HID events: Applying InputClass "libinput keyboard catchall"
[     5.345] (**) Intel HID events: Applying InputClass "system-keyboard"
[     5.345] (**) Intel HID events: Applying InputClass "system-keyboard"
[     5.345] (II) Using input driver 'libinput' for 'Intel HID events'
[     5.345] (**) Intel HID events: always reports core events
[     5.345] (**) Option "Device" "/dev/input/event5"
[     5.347] (II) event5  - Intel HID events: is tagged by udev as: Keyboard
[     5.347] (II) event5  - Intel HID events: device is a keyboard
[     5.347] (II) event5  - Intel HID events: device removed
[     5.395] (**) Option "config_info" "udev:/sys/devices/platform/INT33D5:00/input/input9/event5"
[     5.396] (II) XINPUT: Adding extended input device "Intel HID events" (type: KEYBOARD, id 13)
[     5.396] (**) Option "xkb_model" "pc105"
[     5.396] (**) Option "xkb_layout" "ro"
[     5.396] (**) Option "xkb_variant" "cedilla,,,"
[     5.398] (II) event5  - Intel HID events: is tagged by udev as: Keyboard
[     5.399] (II) event5  - Intel HID events: device is a keyboard
[     5.400] (II) config/udev: Adding input device AT Translated Set 2 keyboard (/dev/input/event4)
[     5.400] (**) AT Translated Set 2 keyboard: Applying InputClass "libinput keyboard catchall"
[     5.400] (**) AT Translated Set 2 keyboard: Applying InputClass "system-keyboard"
[     5.400] (**) AT Translated Set 2 keyboard: Applying InputClass "system-keyboard"
[     5.400] (II) Using input driver 'libinput' for 'AT Translated Set 2 keyboard'
[     5.400] (**) AT Translated Set 2 keyboard: always reports core events
[     5.400] (**) Option "Device" "/dev/input/event4"
[     5.401] (II) event4  - AT Translated Set 2 keyboard: is tagged by udev as: Keyboard
[     5.401] (II) event4  - AT Translated Set 2 keyboard: device is a keyboard
[     5.401] (II) event4  - AT Translated Set 2 keyboard: device removed
[     5.435] (**) Option "config_info" "udev:/sys/devices/platform/i8042/serio0/input/input4/event4"
[     5.436] (II) XINPUT: Adding extended input device "AT Translated Set 2 keyboard" (type: KEYBOARD, id 14)
[     5.436] (**) Option "xkb_model" "pc105"
[     5.436] (**) Option "xkb_layout" "ro"
[     5.436] (**) Option "xkb_variant" "cedilla,,,"
[     5.438] (II) event4  - AT Translated Set 2 keyboard: is tagged by udev as: Keyboard
[     5.439] (II) event4  - AT Translated Set 2 keyboard: device is a keyboard
[     5.443] (II) config/udev: Adding input device SynPS/2 Synaptics TouchPad (/dev/input/event6)
[     5.443] (**) SynPS/2 Synaptics TouchPad: Applying InputClass "libinput touchpad catchall"
[     5.443] (**) SynPS/2 Synaptics TouchPad: Applying InputClass "touchpad catchall"
[     5.443] (**) SynPS/2 Synaptics TouchPad: Applying InputClass "Default clickpad buttons"
[     5.443] (II) LoadModule: "synaptics"
[     5.443] (II) Loading /usr/lib/xorg/modules/input/synaptics_drv.so
[     5.451] (II) Module synaptics: vendor="X.Org Foundation"
[     5.451] 	compiled for 1.21.1.1, module version = 1.9.1
[     5.451] 	Module class: X.Org XInput Driver
[     5.451] 	ABI class: X.Org XInput driver, version 24.4
[     5.451] (II) Using input driver 'synaptics' for 'SynPS/2 Synaptics TouchPad'
[     5.451] (**) SynPS/2 Synaptics TouchPad: always reports core events
[     5.451] (**) Option "Device" "/dev/input/event6"
[     5.529] (--) synaptics: SynPS/2 Synaptics TouchPad: x-axis range 1266 - 5674 (res 45)
[     5.529] (--) synaptics: SynPS/2 Synaptics TouchPad: y-axis range 1086 - 4764 (res 70)
[     5.529] (--) synaptics: SynPS/2 Synaptics TouchPad: pressure range 0 - 255
[     5.529] (--) synaptics: SynPS/2 Synaptics TouchPad: finger width range 0 - 15
[     5.529] (--) synaptics: SynPS/2 Synaptics TouchPad: buttons: left right double triple
[     5.529] (--) synaptics: SynPS/2 Synaptics TouchPad: Vendor 0x2 Product 0x7
[     5.529] (--) synaptics: SynPS/2 Synaptics TouchPad: touchpad found
[     5.529] (**) SynPS/2 Synaptics TouchPad: always reports core events
[     5.595] (**) Option "config_info" "udev:/sys/devices/platform/i8042/serio2/input/input17/event6"
[     5.595] (II) XINPUT: Adding extended input device "SynPS/2 Synaptics TouchPad" (type: TOUCHPAD, id 15)
[     5.595] (**) synaptics: SynPS/2 Synaptics TouchPad: (accel) MinSpeed is now constant deceleration 2.5
[     5.595] (**) synaptics: SynPS/2 Synaptics TouchPad: (accel) MaxSpeed is now 1.75
[     5.595] (**) synaptics: SynPS/2 Synaptics TouchPad: (accel) AccelFactor is now 0.035
[     5.596] (**) SynPS/2 Synaptics TouchPad: (accel) keeping acceleration scheme 1
[     5.596] (**) SynPS/2 Synaptics TouchPad: (accel) acceleration profile 1
[     5.596] (**) SynPS/2 Synaptics TouchPad: (accel) acceleration factor: 2.000
[     5.596] (**) SynPS/2 Synaptics TouchPad: (accel) acceleration threshold: 4
[     5.596] (--) synaptics: SynPS/2 Synaptics TouchPad: touchpad found
[     5.597] (II) config/udev: Adding input device SynPS/2 Synaptics TouchPad (/dev/input/mouse0)
[     5.597] (**) SynPS/2 Synaptics TouchPad: Ignoring device from InputClass "touchpad ignore duplicates"
[     5.598] (II) config/udev: Adding input device PC Speaker (/dev/input/event11)
[     5.598] (II) No input driver specified, ignoring this device.
[     5.598] (II) This device may have been added with another device file.
[     5.626] (**) Logitech K540/K545: Applying InputClass "libinput keyboard catchall"
[     5.626] (**) Logitech K540/K545: Applying InputClass "system-keyboard"
[     5.626] (**) Logitech K540/K545: Applying InputClass "system-keyboard"
[     5.626] (II) Using input driver 'libinput' for 'Logitech K540/K545'
[     5.626] (**) Logitech K540/K545: always reports core events
[     5.626] (**) Option "Device" "/dev/input/event9"
[     5.626] (II) libinput: Logitech K540/K545: is a virtual subdevice
[     5.626] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:14.0/usb1/1-6/1-6:1.2/0003:046D:C52B.0003/0003:046D:4076.0005/input/input38/event9"
[     5.626] (II) XINPUT: Adding extended input device "Logitech K540/K545" (type: KEYBOARD, id 16)
[     5.626] (**) Option "xkb_model" "pc105"
[     5.626] (**) Option "xkb_layout" "ro"
[     5.626] (**) Option "xkb_variant" "cedilla,,,"
[     5.748] (II) config/udev: Adding input device HDA Intel PCH HDMI/DP,pcm=3 (/dev/input/event14)
[     5.748] (II) No input driver specified, ignoring this device.
[     5.748] (II) This device may have been added with another device file.
[     5.748] (II) config/udev: Adding input device HDA Intel PCH HDMI/DP,pcm=9 (/dev/input/event17)
[     5.749] (II) No input driver specified, ignoring this device.
[     5.749] (II) This device may have been added with another device file.
[     5.749] (II) config/udev: Adding input device HDA Intel PCH HDMI/DP,pcm=8 (/dev/input/event16)
[     5.749] (II) No input driver specified, ignoring this device.
[     5.749] (II) This device may have been added with another device file.
[     5.750] (II) config/udev: removing device SynPS/2 Synaptics TouchPad
[     5.825] (II) UnloadModule: "synaptics"
[     5.826] (II) config/udev: Adding input device SynPS/2 Synaptics TouchPad (/dev/input/event6)
[     5.826] (**) SynPS/2 Synaptics TouchPad: Applying InputClass "libinput touchpad catchall"
[     5.826] (**) SynPS/2 Synaptics TouchPad: Applying InputClass "touchpad catchall"
[     5.826] (**) SynPS/2 Synaptics TouchPad: Applying InputClass "Default clickpad buttons"
[     5.826] (II) Using input driver 'synaptics' for 'SynPS/2 Synaptics TouchPad'
[     5.826] (**) SynPS/2 Synaptics TouchPad: always reports core events
[     5.826] (**) Option "Device" "/dev/input/event6"
[     5.889] (--) synaptics: SynPS/2 Synaptics TouchPad: x-axis range 1266 - 5674 (res 45)
[     5.889] (--) synaptics: SynPS/2 Synaptics TouchPad: y-axis range 1086 - 4764 (res 70)
[     5.889] (--) synaptics: SynPS/2 Synaptics TouchPad: pressure range 0 - 255
[     5.889] (--) synaptics: SynPS/2 Synaptics TouchPad: finger width range 0 - 15
[     5.889] (--) synaptics: SynPS/2 Synaptics TouchPad: buttons: left right double triple
[     5.889] (--) synaptics: SynPS/2 Synaptics TouchPad: Vendor 0x2 Product 0x7
[     5.889] (--) synaptics: SynPS/2 Synaptics TouchPad: touchpad found
[     5.889] (**) SynPS/2 Synaptics TouchPad: always reports core events
[     5.955] (**) Option "config_info" "udev:/sys/devices/platform/i8042/serio2/input/input17/event6"
[     5.956] (II) XINPUT: Adding extended input device "SynPS/2 Synaptics TouchPad" (type: TOUCHPAD, id 15)
[     5.956] (**) synaptics: SynPS/2 Synaptics TouchPad: (accel) MinSpeed is now constant deceleration 2.5
[     5.956] (**) synaptics: SynPS/2 Synaptics TouchPad: (accel) MaxSpeed is now 1.75
[     5.956] (**) synaptics: SynPS/2 Synaptics TouchPad: (accel) AccelFactor is now 0.035
[     5.956] (**) SynPS/2 Synaptics TouchPad: (accel) keeping acceleration scheme 1
[     5.956] (**) SynPS/2 Synaptics TouchPad: (accel) acceleration profile 1
[     5.956] (**) SynPS/2 Synaptics TouchPad: (accel) acceleration factor: 2.000
[     5.956] (**) SynPS/2 Synaptics TouchPad: (accel) acceleration threshold: 4
[     5.956] (--) synaptics: SynPS/2 Synaptics TouchPad: touchpad found
[     5.957] (II) config/udev: Adding input device HDA Intel PCH Front Headphone (/dev/input/event13)
[     5.957] (II) No input driver specified, ignoring this device.
[     5.957] (II) This device may have been added with another device file.
[     5.958] (II) config/udev: Adding input device HDA Intel PCH HDMI/DP,pcm=10 (/dev/input/event18)
[     5.958] (II) No input driver specified, ignoring this device.
[     5.958] (II) This device may have been added with another device file.
[     5.958] (II) config/udev: Adding input device HDA Intel PCH Mic (/dev/input/event12)
[     5.958] (II) No input driver specified, ignoring this device.
[     5.959] (II) This device may have been added with another device file.
[     5.959] (II) config/udev: Adding input device HDA Intel PCH HDMI/DP,pcm=7 (/dev/input/event15)
[     5.959] (II) No input driver specified, ignoring this device.
[     5.959] (II) This device may have been added with another device file.
[     5.960] (II) config/udev: Adding input device SynPS/2 Synaptics TouchPad (/dev/input/mouse0)
[     5.961] (**) SynPS/2 Synaptics TouchPad: Ignoring device from InputClass "touchpad ignore duplicates"
[     5.961] (II) config/udev: removing device Chicony USB2.0 Camera: Chicony 
[     5.961] (II) event7  - Chicony USB2.0 Camera: Chicony : device removed
[     6.036] (II) UnloadModule: "libinput"
[     6.037] (II) config/udev: Adding input device Chicony USB2.0 Camera: Chicony  (/dev/input/event7)
[     6.037] (**) Chicony USB2.0 Camera: Chicony : Applying InputClass "libinput keyboard catchall"
[     6.037] (**) Chicony USB2.0 Camera: Chicony : Applying InputClass "system-keyboard"
[     6.037] (**) Chicony USB2.0 Camera: Chicony : Applying InputClass "system-keyboard"
[     6.037] (II) Using input driver 'libinput' for 'Chicony USB2.0 Camera: Chicony '
[     6.037] (**) Chicony USB2.0 Camera: Chicony : always reports core events
[     6.037] (**) Option "Device" "/dev/input/event7"
[     6.041] (II) event7  - Chicony USB2.0 Camera: Chicony : is tagged by udev as: Keyboard
[     6.041] (II) event7  - Chicony USB2.0 Camera: Chicony : device is a keyboard
[     6.042] (II) event7  - Chicony USB2.0 Camera: Chicony : device removed
[     6.102] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:14.0/usb1/1-5/1-5:1.0/input/input19/event7"
[     6.102] (II) XINPUT: Adding extended input device "Chicony USB2.0 Camera: Chicony " (type: KEYBOARD, id 10)
[     6.102] (**) Option "xkb_model" "pc105"
[     6.102] (**) Option "xkb_layout" "ro"
[     6.102] (**) Option "xkb_variant" "cedilla,,,"
[     6.106] (II) event7  - Chicony USB2.0 Camera: Chicony : is tagged by udev as: Keyboard
[     6.107] (II) event7  - Chicony USB2.0 Camera: Chicony : device is a keyboard
[     6.111] (II) config/udev: Adding input device Logitech Wireless Mouse (/dev/input/mouse1)
[     6.111] (II) No input driver specified, ignoring this device.
[     6.111] (II) This device may have been added with another device file.
[     6.112] (II) config/udev: removing device Logitech K540/K545
[     6.112] (II) UnloadModule: "libinput"
[     6.112] (II) config/udev: removing device Logitech K540/K545
[     6.112] (II) event9  - Logitech K540/K545: device removed
[     6.142] (II) UnloadModule: "libinput"
[     6.144] (II) config/udev: Adding input device Logitech K540/K545 (/dev/input/event9)
[     6.144] (**) Logitech K540/K545: Applying InputClass "libinput keyboard catchall"
[     6.144] (**) Logitech K540/K545: Applying InputClass "system-keyboard"
[     6.144] (**) Logitech K540/K545: Applying InputClass "system-keyboard"
[     6.144] (II) Using input driver 'libinput' for 'Logitech K540/K545'
[     6.144] (**) Logitech K540/K545: always reports core events
[     6.144] (**) Option "Device" "/dev/input/event9"
[     6.148] (II) event9  - Logitech K540/K545: is tagged by udev as: Keyboard
[     6.148] (II) event9  - Logitech K540/K545: device is a keyboard
[     6.148] (II) event9  - Logitech K540/K545: device removed
[     6.182] (II) libinput: Logitech K540/K545: needs a virtual subdevice
[     6.182] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:14.0/usb1/1-6/1-6:1.2/0003:046D:C52B.0003/0003:046D:4076.0005/input/input38/event9"
[     6.182] (II) XINPUT: Adding extended input device "Logitech K540/K545" (type: MOUSE, id 12)
[     6.182] (**) Option "AccelerationScheme" "none"
[     6.183] (**) Logitech K540/K545: (accel) selected scheme none/0
[     6.183] (**) Logitech K540/K545: (accel) acceleration factor: 2.000
[     6.183] (**) Logitech K540/K545: (accel) acceleration threshold: 4
[     6.187] (II) event9  - Logitech K540/K545: is tagged by udev as: Keyboard
[     6.187] (II) event9  - Logitech K540/K545: device is a keyboard
[     6.188] (**) Logitech K540/K545: Applying InputClass "libinput keyboard catchall"
[     6.188] (**) Logitech K540/K545: Applying InputClass "system-keyboard"
[     6.188] (**) Logitech K540/K545: Applying InputClass "system-keyboard"
[     6.188] (II) Using input driver 'libinput' for 'Logitech K540/K545'
[     6.188] (**) Logitech K540/K545: always reports core events
[     6.188] (**) Option "Device" "/dev/input/event9"
[     6.188] (II) libinput: Logitech K540/K545: is a virtual subdevice
[     6.188] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:14.0/usb1/1-6/1-6:1.2/0003:046D:C52B.0003/0003:046D:4076.0005/input/input38/event9"
[     6.188] (II) XINPUT: Adding extended input device "Logitech K540/K545" (type: KEYBOARD, id 16)
[     6.189] (**) Option "xkb_model" "pc105"
[     6.189] (**) Option "xkb_layout" "ro"
[     6.189] (**) Option "xkb_variant" "cedilla,,,"
[     6.189] (II) config/udev: removing device Logitech Wireless Mouse
[     6.189] (II) event8  - Logitech Wireless Mouse: device removed
[     6.262] (II) UnloadModule: "libinput"
[     6.264] (II) config/udev: Adding input device Logitech Wireless Mouse (/dev/input/event8)
[     6.264] (**) Logitech Wireless Mouse: Applying InputClass "libinput pointer catchall"
[     6.264] (II) Using input driver 'libinput' for 'Logitech Wireless Mouse'
[     6.264] (**) Logitech Wireless Mouse: always reports core events
[     6.264] (**) Option "Device" "/dev/input/event8"
[     6.268] (II) event8  - Logitech Wireless Mouse: is tagged by udev as: Mouse
[     6.269] (II) event8  - Logitech Wireless Mouse: device is a pointer
[     6.270] (II) event8  - Logitech Wireless Mouse: device removed
[     6.342] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:14.0/usb1/1-6/1-6:1.2/0003:046D:C52B.0003/0003:046D:4055.0004/input/input37/event8"
[     6.342] (II) XINPUT: Adding extended input device "Logitech Wireless Mouse" (type: MOUSE, id 11)
[     6.342] (**) Option "AccelerationScheme" "none"
[     6.343] (**) Logitech Wireless Mouse: (accel) selected scheme none/0
[     6.343] (**) Logitech Wireless Mouse: (accel) acceleration factor: 2.000
[     6.343] (**) Logitech Wireless Mouse: (accel) acceleration threshold: 4
[     6.347] (II) event8  - Logitech Wireless Mouse: is tagged by udev as: Mouse
[     6.348] (II) event8  - Logitech Wireless Mouse: device is a pointer
[    12.525] (II) modeset(0): EDID vendor "CHD", prod id 576
[    12.525] (II) modeset(0): Using EDID range info for horizontal sync
[    12.525] (II) modeset(0): Using EDID range info for vertical refresh
[    12.525] (II) modeset(0): Printing DDC gathered Modelines:
[    12.525] (II) modeset(0): Modeline "1920x1080"x0.0  148.50  1920 2008 2052 2200  1080 1084 1089 1125 +hsync -vsync (67.5 kHz eP)
[    12.525] (II) modeset(0): Modeline "1920x1080"x0.0  138.50  1920 1968 2000 2080  1080 1083 1088 1110 +hsync -vsync (66.6 kHz e)
[    12.525] (II) modeset(0): Modeline "1366x768"x0.0   85.50  1366 1436 1579 1792  768 771 774 798 +hsync +vsync (47.7 kHz e)
[    12.525] (II) modeset(0): Modeline "1280x720"x0.0   74.25  1280 1390 1430 1650  720 725 730 750 +hsync +vsync (45.0 kHz e)
[    12.525] (II) modeset(0): Modeline "720x480"x0.0   27.00  720 736 798 858  480 489 495 525 -hsync -vsync (31.5 kHz e)
[    12.525] (II) modeset(0): Modeline "1280x768i"x0.0   79.50  1280 1328 1360 1664  768 771 778 798 interlace +hsync +vsync (47.8 kHz e)
[    12.525] (II) modeset(0): Modeline "1920x1080"x0.0  148.50  1920 2008 2052 2200  1080 1084 1089 1125 +hsync +vsync (67.5 kHz e)
[    12.525] (II) modeset(0): Modeline "1920x1080i"x0.0   74.25  1920 2008 2052 2200  1080 1084 1094 1125 interlace +hsync +vsync (33.8 kHz e)
[    12.525] (II) modeset(0): Modeline "640x480"x0.0   25.18  640 656 752 800  480 490 492 525 -hsync -vsync (31.5 kHz e)
[    12.525] (II) modeset(0): Modeline "720x576"x0.0   27.00  720 732 796 864  576 581 586 625 -hsync -vsync (31.2 kHz e)
[    12.525] (II) modeset(0): Modeline "1280x720"x0.0   74.25  1280 1720 1760 1980  720 725 730 750 +hsync +vsync (37.5 kHz e)
[    12.525] (II) modeset(0): Modeline "1920x1080i"x0.0   74.25  1920 2448 2492 2640  1080 1084 1094 1125 interlace +hsync +vsync (28.1 kHz e)
[    12.525] (II) modeset(0): Modeline "1920x1080"x0.0  148.50  1920 2448 2492 2640  1080 1084 1089 1125 +hsync +vsync (56.2 kHz e)
[    12.525] (II) modeset(0): Modeline "800x600"x0.0   40.00  800 840 968 1056  600 601 605 628 +hsync +vsync (37.9 kHz e)
[    12.525] (II) modeset(0): Modeline "800x600"x0.0   36.00  800 824 896 1024  600 601 603 625 +hsync +vsync (35.2 kHz e)
[    12.525] (II) modeset(0): Modeline "640x480"x0.0   31.50  640 656 720 840  480 481 484 500 -hsync -vsync (37.5 kHz e)
[    12.525] (II) modeset(0): Modeline "640x480"x0.0   31.50  640 664 704 832  480 489 492 520 -hsync -vsync (37.9 kHz e)
[    12.525] (II) modeset(0): Modeline "640x480"x0.0   30.24  640 704 768 864  480 483 486 525 -hsync -vsync (35.0 kHz e)
[    12.525] (II) modeset(0): Modeline "720x400"x0.0   28.32  720 738 846 900  400 412 414 449 -hsync +vsync (31.5 kHz e)
[    12.525] (II) modeset(0): Modeline "1280x1024"x0.0  135.00  1280 1296 1440 1688  1024 1025 1028 1066 +hsync +vsync (80.0 kHz e)
[    12.525] (II) modeset(0): Modeline "1024x768"x0.0   78.75  1024 1040 1136 1312  768 769 772 800 +hsync +vsync (60.0 kHz e)
[    12.525] (II) modeset(0): Modeline "1024x768"x0.0   75.00  1024 1048 1184 1328  768 771 777 806 -hsync -vsync (56.5 kHz e)
[    12.525] (II) modeset(0): Modeline "1024x768"x0.0   65.00  1024 1048 1184 1344  768 771 777 806 -hsync -vsync (48.4 kHz e)
[    12.525] (II) modeset(0): Modeline "832x624"x0.0   57.28  832 864 928 1152  624 625 628 667 -hsync -vsync (49.7 kHz e)
[    12.525] (II) modeset(0): Modeline "800x600"x0.0   49.50  800 816 896 1056  600 601 604 625 +hsync +vsync (46.9 kHz e)
[    12.525] (II) modeset(0): Modeline "800x600"x0.0   50.00  800 856 976 1040  600 637 643 666 +hsync +vsync (48.1 kHz e)
[    12.525] (II) modeset(0): Modeline "1152x864"x0.0  108.00  1152 1216 1344 1600  864 865 868 900 +hsync +vsync (67.5 kHz e)
[    12.525] (II) modeset(0): Modeline "1280x1024"x0.0  108.00  1280 1328 1440 1688  1024 1025 1028 1066 +hsync +vsync (64.0 kHz e)
[    12.525] (II) modeset(0): Modeline "1280x960"x0.0  108.00  1280 1376 1488 1800  960 961 964 1000 +hsync +vsync (60.0 kHz e)
[    12.525] (II) modeset(0): Modeline "1440x900"x0.0   88.75  1440 1488 1520 1600  900 903 909 926 +hsync -vsync (55.5 kHz e)
[    12.525] (II) modeset(0): Modeline "1600x1200"x0.0  162.00  1600 1664 1856 2160  1200 1201 1204 1250 +hsync +vsync (75.0 kHz e)
[    12.525] (II) modeset(0): Modeline "1680x1050"x0.0  119.00  1680 1728 1760 1840  1050 1053 1059 1080 +hsync -vsync (64.7 kHz e)
[    12.525] (II) modeset(0): Modeline "1600x900"x60.0  119.00  1600 1696 1864 2128  900 901 904 932 -hsync +vsync (55.9 kHz e)
[    51.891] (II) modeset(0): EDID vendor "CHD", prod id 576
[    51.892] (II) modeset(0): Using hsync ranges from config file
[    51.892] (II) modeset(0): Using vrefresh ranges from config file
[    51.892] (II) modeset(0): Printing DDC gathered Modelines:
[    51.892] (II) modeset(0): Modeline "1920x1080"x0.0  148.50  1920 2008 2052 2200  1080 1084 1089 1125 +hsync -vsync (67.5 kHz eP)
[    51.892] (II) modeset(0): Modeline "1920x1080"x0.0  138.50  1920 1968 2000 2080  1080 1083 1088 1110 +hsync -vsync (66.6 kHz e)
[    51.892] (II) modeset(0): Modeline "1366x768"x0.0   85.50  1366 1436 1579 1792  768 771 774 798 +hsync +vsync (47.7 kHz e)
[    51.892] (II) modeset(0): Modeline "1280x720"x0.0   74.25  1280 1390 1430 1650  720 725 730 750 +hsync +vsync (45.0 kHz e)
[    51.892] (II) modeset(0): Modeline "720x480"x0.0   27.00  720 736 798 858  480 489 495 525 -hsync -vsync (31.5 kHz e)
[    51.892] (II) modeset(0): Modeline "1280x768i"x0.0   79.50  1280 1328 1360 1664  768 771 778 798 interlace +hsync +vsync (47.8 kHz e)
[    51.892] (II) modeset(0): Modeline "1920x1080"x0.0  148.50  1920 2008 2052 2200  1080 1084 1089 1125 +hsync +vsync (67.5 kHz e)
[    51.892] (II) modeset(0): Modeline "1920x1080i"x0.0   74.25  1920 2008 2052 2200  1080 1084 1094 1125 interlace +hsync +vsync (33.8 kHz e)
[    51.892] (II) modeset(0): Modeline "640x480"x0.0   25.18  640 656 752 800  480 490 492 525 -hsync -vsync (31.5 kHz e)
[    51.892] (II) modeset(0): Modeline "720x576"x0.0   27.00  720 732 796 864  576 581 586 625 -hsync -vsync (31.2 kHz e)
[    51.892] (II) modeset(0): Modeline "1280x720"x0.0   74.25  1280 1720 1760 1980  720 725 730 750 +hsync +vsync (37.5 kHz e)
[    51.892] (II) modeset(0): Modeline "1920x1080i"x0.0   74.25  1920 2448 2492 2640  1080 1084 1094 1125 interlace +hsync +vsync (28.1 kHz e)
[    51.892] (II) modeset(0): Modeline "1920x1080"x0.0  148.50  1920 2448 2492 2640  1080 1084 1089 1125 +hsync +vsync (56.2 kHz e)
[    51.892] (II) modeset(0): Modeline "800x600"x0.0   40.00  800 840 968 1056  600 601 605 628 +hsync +vsync (37.9 kHz e)
[    51.892] (II) modeset(0): Modeline "800x600"x0.0   36.00  800 824 896 1024  600 601 603 625 +hsync +vsync (35.2 kHz e)
[    51.892] (II) modeset(0): Modeline "640x480"x0.0   31.50  640 656 720 840  480 481 484 500 -hsync -vsync (37.5 kHz e)
[    51.892] (II) modeset(0): Modeline "640x480"x0.0   31.50  640 664 704 832  480 489 492 520 -hsync -vsync (37.9 kHz e)
[    51.892] (II) modeset(0): Modeline "640x480"x0.0   30.24  640 704 768 864  480 483 486 525 -hsync -vsync (35.0 kHz e)
[    51.892] (II) modeset(0): Modeline "720x400"x0.0   28.32  720 738 846 900  400 412 414 449 -hsync +vsync (31.5 kHz e)
[    51.892] (II) modeset(0): Modeline "1280x1024"x0.0  135.00  1280 1296 1440 1688  1024 1025 1028 1066 +hsync +vsync (80.0 kHz e)
[    51.892] (II) modeset(0): Modeline "1024x768"x0.0   78.75  1024 1040 1136 1312  768 769 772 800 +hsync +vsync (60.0 kHz e)
[    51.892] (II) modeset(0): Modeline "1024x768"x0.0   75.00  1024 1048 1184 1328  768 771 777 806 -hsync -vsync (56.5 kHz e)
[    51.892] (II) modeset(0): Modeline "1024x768"x0.0   65.00  1024 1048 1184 1344  768 771 777 806 -hsync -vsync (48.4 kHz e)
[    51.892] (II) modeset(0): Modeline "832x624"x0.0   57.28  832 864 928 1152  624 625 628 667 -hsync -vsync (49.7 kHz e)
[    51.892] (II) modeset(0): Modeline "800x600"x0.0   49.50  800 816 896 1056  600 601 604 625 +hsync +vsync (46.9 kHz e)
[    51.892] (II) modeset(0): Modeline "800x600"x0.0   50.00  800 856 976 1040  600 637 643 666 +hsync +vsync (48.1 kHz e)
[    51.892] (II) modeset(0): Modeline "1152x864"x0.0  108.00  1152 1216 1344 1600  864 865 868 900 +hsync +vsync (67.5 kHz e)
[    51.892] (II) modeset(0): Modeline "1280x1024"x0.0  108.00  1280 1328 1440 1688  1024 1025 1028 1066 +hsync +vsync (64.0 kHz e)
[    51.892] (II) modeset(0): Modeline "1280x960"x0.0  108.00  1280 1376 1488 1800  960 961 964 1000 +hsync +vsync (60.0 kHz e)
[    51.892] (II) modeset(0): Modeline "1440x900"x0.0   88.75  1440 1488 1520 1600  900 903 909 926 +hsync -vsync (55.5 kHz e)
[    51.892] (II) modeset(0): Modeline "1600x1200"x0.0  162.00  1600 1664 1856 2160  1200 1201 1204 1250 +hsync +vsync (75.0 kHz e)
[    51.892] (II) modeset(0): Modeline "1680x1050"x0.0  119.00  1680 1728 1760 1840  1050 1053 1059 1080 +hsync -vsync (64.7 kHz e)
[    51.892] (II) modeset(0): Modeline "1600x900"x60.0  119.00  1600 1696 1864 2128  900 901 904 932 -hsync +vsync (55.9 kHz e)
[   254.817] (EE) event9  - Logitech K540/K545: client bug: event processing lagging behind by 24ms, your system is too slow
[   256.456] (II) modeset(0): EDID vendor "CHD", prod id 576
[   256.457] (II) modeset(0): Using hsync ranges from config file
[   256.457] (II) modeset(0): Using vrefresh ranges from config file
[   256.457] (II) modeset(0): Printing DDC gathered Modelines:
[   256.457] (II) modeset(0): Modeline "1920x1080"x0.0  148.50  1920 2008 2052 2200  1080 1084 1089 1125 +hsync -vsync (67.5 kHz eP)
[   256.457] (II) modeset(0): Modeline "1920x1080"x0.0  138.50  1920 1968 2000 2080  1080 1083 1088 1110 +hsync -vsync (66.6 kHz e)
[   256.457] (II) modeset(0): Modeline "1366x768"x0.0   85.50  1366 1436 1579 1792  768 771 774 798 +hsync +vsync (47.7 kHz e)
[   256.457] (II) modeset(0): Modeline "1280x720"x0.0   74.25  1280 1390 1430 1650  720 725 730 750 +hsync +vsync (45.0 kHz e)
[   256.457] (II) modeset(0): Modeline "720x480"x0.0   27.00  720 736 798 858  480 489 495 525 -hsync -vsync (31.5 kHz e)
[   256.457] (II) modeset(0): Modeline "1280x768i"x0.0   79.50  1280 1328 1360 1664  768 771 778 798 interlace +hsync +vsync (47.8 kHz e)
[   256.457] (II) modeset(0): Modeline "1920x1080"x0.0  148.50  1920 2008 2052 2200  1080 1084 1089 1125 +hsync +vsync (67.5 kHz e)
[   256.457] (II) modeset(0): Modeline "1920x1080i"x0.0   74.25  1920 2008 2052 2200  1080 1084 1094 1125 interlace +hsync +vsync (33.8 kHz e)
[   256.457] (II) modeset(0): Modeline "640x480"x0.0   25.18  640 656 752 800  480 490 492 525 -hsync -vsync (31.5 kHz e)
[   256.457] (II) modeset(0): Modeline "720x576"x0.0   27.00  720 732 796 864  576 581 586 625 -hsync -vsync (31.2 kHz e)
[   256.457] (II) modeset(0): Modeline "1280x720"x0.0   74.25  1280 1720 1760 1980  720 725 730 750 +hsync +vsync (37.5 kHz e)
[   256.457] (II) modeset(0): Modeline "1920x1080i"x0.0   74.25  1920 2448 2492 2640  1080 1084 1094 1125 interlace +hsync +vsync (28.1 kHz e)
[   256.457] (II) modeset(0): Modeline "1920x1080"x0.0  148.50  1920 2448 2492 2640  1080 1084 1089 1125 +hsync +vsync (56.2 kHz e)
[   256.457] (II) modeset(0): Modeline "800x600"x0.0   40.00  800 840 968 1056  600 601 605 628 +hsync +vsync (37.9 kHz e)
[   256.457] (II) modeset(0): Modeline "800x600"x0.0   36.00  800 824 896 1024  600 601 603 625 +hsync +vsync (35.2 kHz e)
[   256.457] (II) modeset(0): Modeline "640x480"x0.0   31.50  640 656 720 840  480 481 484 500 -hsync -vsync (37.5 kHz e)
[   256.457] (II) modeset(0): Modeline "640x480"x0.0   31.50  640 664 704 832  480 489 492 520 -hsync -vsync (37.9 kHz e)
[   256.457] (II) modeset(0): Modeline "640x480"x0.0   30.24  640 704 768 864  480 483 486 525 -hsync -vsync (35.0 kHz e)
[   256.457] (II) modeset(0): Modeline "720x400"x0.0   28.32  720 738 846 900  400 412 414 449 -hsync +vsync (31.5 kHz e)
[   256.457] (II) modeset(0): Modeline "1280x1024"x0.0  135.00  1280 1296 1440 1688  1024 1025 1028 1066 +hsync +vsync (80.0 kHz e)
[   256.457] (II) modeset(0): Modeline "1024x768"x0.0   78.75  1024 1040 1136 1312  768 769 772 800 +hsync +vsync (60.0 kHz e)
[   256.457] (II) modeset(0): Modeline "1024x768"x0.0   75.00  1024 1048 1184 1328  768 771 777 806 -hsync -vsync (56.5 kHz e)
[   256.457] (II) modeset(0): Modeline "1024x768"x0.0   65.00  1024 1048 1184 1344  768 771 777 806 -hsync -vsync (48.4 kHz e)
[   256.457] (II) modeset(0): Modeline "832x624"x0.0   57.28  832 864 928 1152  624 625 628 667 -hsync -vsync (49.7 kHz e)
[   256.457] (II) modeset(0): Modeline "800x600"x0.0   49.50  800 816 896 1056  600 601 604 625 +hsync +vsync (46.9 kHz e)
[   256.457] (II) modeset(0): Modeline "800x600"x0.0   50.00  800 856 976 1040  600 637 643 666 +hsync +vsync (48.1 kHz e)
[   256.457] (II) modeset(0): Modeline "1152x864"x0.0  108.00  1152 1216 1344 1600  864 865 868 900 +hsync +vsync (67.5 kHz e)
[   256.457] (II) modeset(0): Modeline "1280x1024"x0.0  108.00  1280 1328 1440 1688  1024 1025 1028 1066 +hsync +vsync (64.0 kHz e)
[   256.457] (II) modeset(0): Modeline "1280x960"x0.0  108.00  1280 1376 1488 1800  960 961 964 1000 +hsync +vsync (60.0 kHz e)
[   256.457] (II) modeset(0): Modeline "1440x900"x0.0   88.75  1440 1488 1520 1600  900 903 909 926 +hsync -vsync (55.5 kHz e)
[   256.457] (II) modeset(0): Modeline "1600x1200"x0.0  162.00  1600 1664 1856 2160  1200 1201 1204 1250 +hsync +vsync (75.0 kHz e)
[   256.457] (II) modeset(0): Modeline "1680x1050"x0.0  119.00  1680 1728 1760 1840  1050 1053 1059 1080 +hsync -vsync (64.7 kHz e)
[   256.457] (II) modeset(0): Modeline "1600x900"x60.0  119.00  1600 1696 1864 2128  900 901 904 932 -hsync +vsync (55.9 kHz e)
[   256.523] (II) modeset(0): EDID vendor "CHD", prod id 576
[   256.523] (II) modeset(0): Using hsync ranges from config file
[   256.523] (II) modeset(0): Using vrefresh ranges from config file
[   256.523] (II) modeset(0): Printing DDC gathered Modelines:
[   256.523] (II) modeset(0): Modeline "1920x1080"x0.0  148.50  1920 2008 2052 2200  1080 1084 1089 1125 +hsync -vsync (67.5 kHz eP)
[   256.523] (II) modeset(0): Modeline "1920x1080"x0.0  138.50  1920 1968 2000 2080  1080 1083 1088 1110 +hsync -vsync (66.6 kHz e)
[   256.523] (II) modeset(0): Modeline "1366x768"x0.0   85.50  1366 1436 1579 1792  768 771 774 798 +hsync +vsync (47.7 kHz e)
[   256.523] (II) modeset(0): Modeline "1280x720"x0.0   74.25  1280 1390 1430 1650  720 725 730 750 +hsync +vsync (45.0 kHz e)
[   256.523] (II) modeset(0): Modeline "720x480"x0.0   27.00  720 736 798 858  480 489 495 525 -hsync -vsync (31.5 kHz e)
[   256.523] (II) modeset(0): Modeline "1280x768i"x0.0   79.50  1280 1328 1360 1664  768 771 778 798 interlace +hsync +vsync (47.8 kHz e)
[   256.523] (II) modeset(0): Modeline "1920x1080"x0.0  148.50  1920 2008 2052 2200  1080 1084 1089 1125 +hsync +vsync (67.5 kHz e)
[   256.523] (II) modeset(0): Modeline "1920x1080i"x0.0   74.25  1920 2008 2052 2200  1080 1084 1094 1125 interlace +hsync +vsync (33.8 kHz e)
[   256.523] (II) modeset(0): Modeline "640x480"x0.0   25.18  640 656 752 800  480 490 492 525 -hsync -vsync (31.5 kHz e)
[   256.523] (II) modeset(0): Modeline "720x576"x0.0   27.00  720 732 796 864  576 581 586 625 -hsync -vsync (31.2 kHz e)
[   256.523] (II) modeset(0): Modeline "1280x720"x0.0   74.25  1280 1720 1760 1980  720 725 730 750 +hsync +vsync (37.5 kHz e)
[   256.523] (II) modeset(0): Modeline "1920x1080i"x0.0   74.25  1920 2448 2492 2640  1080 1084 1094 1125 interlace +hsync +vsync (28.1 kHz e)
[   256.523] (II) modeset(0): Modeline "1920x1080"x0.0  148.50  1920 2448 2492 2640  1080 1084 1089 1125 +hsync +vsync (56.2 kHz e)
[   256.523] (II) modeset(0): Modeline "800x600"x0.0   40.00  800 840 968 1056  600 601 605 628 +hsync +vsync (37.9 kHz e)
[   256.523] (II) modeset(0): Modeline "800x600"x0.0   36.00  800 824 896 1024  600 601 603 625 +hsync +vsync (35.2 kHz e)
[   256.523] (II) modeset(0): Modeline "640x480"x0.0   31.50  640 656 720 840  480 481 484 500 -hsync -vsync (37.5 kHz e)
[   256.523] (II) modeset(0): Modeline "640x480"x0.0   31.50  640 664 704 832  480 489 492 520 -hsync -vsync (37.9 kHz e)
[   256.523] (II) modeset(0): Modeline "640x480"x0.0   30.24  640 704 768 864  480 483 486 525 -hsync -vsync (35.0 kHz e)
[   256.523] (II) modeset(0): Modeline "720x400"x0.0   28.32  720 738 846 900  400 412 414 449 -hsync +vsync (31.5 kHz e)
[   256.523] (II) modeset(0): Modeline "1280x1024"x0.0  135.00  1280 1296 1440 1688  1024 1025 1028 1066 +hsync +vsync (80.0 kHz e)
[   256.523] (II) modeset(0): Modeline "1024x768"x0.0   78.75  1024 1040 1136 1312  768 769 772 800 +hsync +vsync (60.0 kHz e)
[   256.523] (II) modeset(0): Modeline "1024x768"x0.0   75.00  1024 1048 1184 1328  768 771 777 806 -hsync -vsync (56.5 kHz e)
[   256.523] (II) modeset(0): Modeline "1024x768"x0.0   65.00  1024 1048 1184 1344  768 771 777 806 -hsync -vsync (48.4 kHz e)
[   256.523] (II) modeset(0): Modeline "832x624"x0.0   57.28  832 864 928 1152  624 625 628 667 -hsync -vsync (49.7 kHz e)
[   256.523] (II) modeset(0): Modeline "800x600"x0.0   49.50  800 816 896 1056  600 601 604 625 +hsync +vsync (46.9 kHz e)
[   256.523] (II) modeset(0): Modeline "800x600"x0.0   50.00  800 856 976 1040  600 637 643 666 +hsync +vsync (48.1 kHz e)
[   256.523] (II) modeset(0): Modeline "1152x864"x0.0  108.00  1152 1216 1344 1600  864 865 868 900 +hsync +vsync (67.5 kHz e)
[   256.523] (II) modeset(0): Modeline "1280x1024"x0.0  108.00  1280 1328 1440 1688  1024 1025 1028 1066 +hsync +vsync (64.0 kHz e)
[   256.523] (II) modeset(0): Modeline "1280x960"x0.0  108.00  1280 1376 1488 1800  960 961 964 1000 +hsync +vsync (60.0 kHz e)
[   256.523] (II) modeset(0): Modeline "1440x900"x0.0   88.75  1440 1488 1520 1600  900 903 909 926 +hsync -vsync (55.5 kHz e)
[   256.523] (II) modeset(0): Modeline "1600x1200"x0.0  162.00  1600 1664 1856 2160  1200 1201 1204 1250 +hsync +vsync (75.0 kHz e)
[   256.523] (II) modeset(0): Modeline "1680x1050"x0.0  119.00  1680 1728 1760 1840  1050 1053 1059 1080 +hsync -vsync (64.7 kHz e)
[   256.523] (II) modeset(0): Modeline "1600x900"x60.0  119.00  1600 1696 1864 2128  900 901 904 932 -hsync +vsync (55.9 kHz e)
[   895.331] (II) modeset(0): EDID vendor "CHD", prod id 576
[   895.331] (II) modeset(0): Using hsync ranges from config file
[   895.331] (II) modeset(0): Using vrefresh ranges from config file
[   895.331] (II) modeset(0): Printing DDC gathered Modelines:
[   895.331] (II) modeset(0): Modeline "1920x1080"x0.0  148.50  1920 2008 2052 2200  1080 1084 1089 1125 +hsync -vsync (67.5 kHz eP)
[   895.331] (II) modeset(0): Modeline "1920x1080"x0.0  138.50  1920 1968 2000 2080  1080 1083 1088 1110 +hsync -vsync (66.6 kHz e)
[   895.331] (II) modeset(0): Modeline "1366x768"x0.0   85.50  1366 1436 1579 1792  768 771 774 798 +hsync +vsync (47.7 kHz e)
[   895.331] (II) modeset(0): Modeline "1280x720"x0.0   74.25  1280 1390 1430 1650  720 725 730 750 +hsync +vsync (45.0 kHz e)
[   895.331] (II) modeset(0): Modeline "720x480"x0.0   27.00  720 736 798 858  480 489 495 525 -hsync -vsync (31.5 kHz e)
[   895.331] (II) modeset(0): Modeline "1280x768i"x0.0   79.50  1280 1328 1360 1664  768 771 778 798 interlace +hsync +vsync (47.8 kHz e)
[   895.331] (II) modeset(0): Modeline "1920x1080"x0.0  148.50  1920 2008 2052 2200  1080 1084 1089 1125 +hsync +vsync (67.5 kHz e)
[   895.331] (II) modeset(0): Modeline "1920x1080i"x0.0   74.25  1920 2008 2052 2200  1080 1084 1094 1125 interlace +hsync +vsync (33.8 kHz e)
[   895.331] (II) modeset(0): Modeline "640x480"x0.0   25.18  640 656 752 800  480 490 492 525 -hsync -vsync (31.5 kHz e)
[   895.331] (II) modeset(0): Modeline "720x576"x0.0   27.00  720 732 796 864  576 581 586 625 -hsync -vsync (31.2 kHz e)
[   895.331] (II) modeset(0): Modeline "1280x720"x0.0   74.25  1280 1720 1760 1980  720 725 730 750 +hsync +vsync (37.5 kHz e)
[   895.331] (II) modeset(0): Modeline "1920x1080i"x0.0   74.25  1920 2448 2492 2640  1080 1084 1094 1125 interlace +hsync +vsync (28.1 kHz e)
[   895.332] (II) modeset(0): Modeline "1920x1080"x0.0  148.50  1920 2448 2492 2640  1080 1084 1089 1125 +hsync +vsync (56.2 kHz e)
[   895.332] (II) modeset(0): Modeline "800x600"x0.0   40.00  800 840 968 1056  600 601 605 628 +hsync +vsync (37.9 kHz e)
[   895.332] (II) modeset(0): Modeline "800x600"x0.0   36.00  800 824 896 1024  600 601 603 625 +hsync +vsync (35.2 kHz e)
[   895.332] (II) modeset(0): Modeline "640x480"x0.0   31.50  640 656 720 840  480 481 484 500 -hsync -vsync (37.5 kHz e)
[   895.332] (II) modeset(0): Modeline "640x480"x0.0   31.50  640 664 704 832  480 489 492 520 -hsync -vsync (37.9 kHz e)
[   895.332] (II) modeset(0): Modeline "640x480"x0.0   30.24  640 704 768 864  480 483 486 525 -hsync -vsync (35.0 kHz e)
[   895.332] (II) modeset(0): Modeline "720x400"x0.0   28.32  720 738 846 900  400 412 414 449 -hsync +vsync (31.5 kHz e)
[   895.332] (II) modeset(0): Modeline "1280x1024"x0.0  135.00  1280 1296 1440 1688  1024 1025 1028 1066 +hsync +vsync (80.0 kHz e)
[   895.332] (II) modeset(0): Modeline "1024x768"x0.0   78.75  1024 1040 1136 1312  768 769 772 800 +hsync +vsync (60.0 kHz e)
[   895.332] (II) modeset(0): Modeline "1024x768"x0.0   75.00  1024 1048 1184 1328  768 771 777 806 -hsync -vsync (56.5 kHz e)
[   895.332] (II) modeset(0): Modeline "1024x768"x0.0   65.00  1024 1048 1184 1344  768 771 777 806 -hsync -vsync (48.4 kHz e)
[   895.332] (II) modeset(0): Modeline "832x624"x0.0   57.28  832 864 928 1152  624 625 628 667 -hsync -vsync (49.7 kHz e)
[   895.332] (II) modeset(0): Modeline "800x600"x0.0   49.50  800 816 896 1056  600 601 604 625 +hsync +vsync (46.9 kHz e)
[   895.332] (II) modeset(0): Modeline "800x600"x0.0   50.00  800 856 976 1040  600 637 643 666 +hsync +vsync (48.1 kHz e)
[   895.332] (II) modeset(0): Modeline "1152x864"x0.0  108.00  1152 1216 1344 1600  864 865 868 900 +hsync +vsync (67.5 kHz e)
[   895.332] (II) modeset(0): Modeline "1280x1024"x0.0  108.00  1280 1328 1440 1688  1024 1025 1028 1066 +hsync +vsync (64.0 kHz e)
[   895.332] (II) modeset(0): Modeline "1280x960"x0.0  108.00  1280 1376 1488 1800  960 961 964 1000 +hsync +vsync (60.0 kHz e)
[   895.332] (II) modeset(0): Modeline "1440x900"x0.0   88.75  1440 1488 1520 1600  900 903 909 926 +hsync -vsync (55.5 kHz e)
[   895.332] (II) modeset(0): Modeline "1600x1200"x0.0  162.00  1600 1664 1856 2160  1200 1201 1204 1250 +hsync +vsync (75.0 kHz e)
[   895.332] (II) modeset(0): Modeline "1680x1050"x0.0  119.00  1680 1728 1760 1840  1050 1053 1059 1080 +hsync -vsync (64.7 kHz e)
[   895.332] (II) modeset(0): Modeline "1600x900"x60.0  119.00  1600 1696 1864 2128  900 901 904 932 -hsync +vsync (55.9 kHz e)
[   900.115] (II) modeset(0): Allocate new frame buffer 3840x1620 stride
[   905.403] (II) modeset(0): Allocate new frame buffer 3840x1080 stride
[   910.194] (II) modeset(0): Allocate new frame buffer 4800x1620 stride
[   914.011] (II) modeset(0): Allocate new frame buffer 3840x1080 stride
[   922.578] (II) modeset(0): Allocate new frame buffer 3647x1080 stride
[   929.030] (II) modeset(0): Allocate new frame buffer 3840x1080 stride
[   953.510] (II) modeset(0): Allocate new frame buffer 3647x1080 stride
[   961.141] (II) modeset(0): Allocate new frame buffer 3840x1080 stride
[   973.789] (II) modeset(0): Allocate new frame buffer 3456x1080 stride
[   982.386] (II) modeset(0): Allocate new frame buffer 3840x1080 stride
[   999.587] (II) modeset(0): Allocate new frame buffer 4032x1188 stride
[  1005.226] (II) modeset(0): Allocate new frame buffer 3840x1080 stride
[  1018.454] (II) modeset(0): Allocate new frame buffer 4224x1296 stride
[  1028.988] (II) modeset(0): Allocate new frame buffer 3840x1080 stride
[  1037.770] (II) modeset(0): Allocate new frame buffer 4032x1188 stride
[  1051.359] (II) modeset(0): Allocate new frame buffer 4224x1296 stride
[  1056.289] (II) modeset(0): Allocate new frame buffer 4415x1403 stride
[  1061.763] (II) modeset(0): Allocate new frame buffer 4607x1511 stride
[  1066.151] (II) modeset(0): Allocate new frame buffer 4800x1620 stride
[  1074.690] (II) modeset(0): Allocate new frame buffer 5184x1836 stride
[  1085.236] (EE) event9  - Logitech K540/K545: client bug: event processing lagging behind by 34ms, your system is too slow
[  1127.069] (II) modeset(0): Allocate new frame buffer 4415x1403 stride
[  1135.109] (II) modeset(0): Allocate new frame buffer 3840x1080 stride
[  1937.585] (EE) event9  - Logitech K540/K545: client bug: event processing lagging behind by 30ms, your system is too slow

Offline

#12 2022-03-14 13:26:44

seth
Member
From: Won't reply 2 private help req
Registered: 2012-09-03
Posts: 77,275

Re: Ugly font rendering. Wrong dimensions detected by xdpyinfo and xrandr

That's still not the  entire log, the complete header is missing…
But I can already tell that the DPI option will be ignored because you're using the modesetting driver.

Offline

#13 2022-03-14 13:29:40

liviubiur
Member
Registered: 2016-07-02
Posts: 22

Re: Ugly font rendering. Wrong dimensions detected by xdpyinfo and xrandr

Ups, sorry.

Probably this is what you need.

Anyway, how should I change the DPI in this case?

[     4.239] 
X.Org X Server 1.21.1.3
X Protocol Version 11, Revision 0
[     4.239] Current Operating System: Linux archlaptop 5.16.14-arch1-1 #1 SMP PREEMPT Fri, 11 Mar 2022 17:40:36 +0000 x86_64
[     4.239] Kernel command line: BOOT_IMAGE=/boot/vmlinuz-linux root=UUID=3141e595-6fba-4fd7-8162-481ad13e7ac7 rw
[     4.239]  
[     4.239] Current version of pixman: 0.40.0
[     4.239] 	Before reporting problems, check http://wiki.x.org
	to make sure that you have the latest version.
[     4.239] Markers: (--) probed, (**) from config file, (==) default setting,
	(++) from command line, (!!) notice, (II) informational,
	(WW) warning, (EE) error, (NI) not implemented, (??) unknown.
[     4.239] (==) Log file: "/var/log/Xorg.0.log", Time: Mon Mar 14 13:34:30 2022
[     4.241] (==) Using config directory: "/etc/X11/xorg.conf.d"
[     4.241] (==) Using system config directory "/usr/share/X11/xorg.conf.d"
[     4.241] (==) No Layout section.  Using the first Screen section.
[     4.241] (==) No screen section available. Using defaults.
[     4.241] (**) |-->Screen "Default Screen Section" (0)
[     4.241] (**) |   |-->Monitor "<default monitor>"
[     4.241] (==) No monitor specified for screen "Default Screen Section".
	Using a default monitor configuration.
[     4.241] (==) Automatically adding devices
[     4.241] (==) Automatically enabling devices
[     4.241] (==) Automatically adding GPU devices
[     4.241] (==) Automatically binding GPU devices
[     4.241] (==) Max clients allowed: 256, resource mask: 0x1fffff
[     4.243] (WW) The directory "/usr/share/fonts/Type1" does not exist.
[     4.243] 	Entry deleted from font path.
[     4.243] (WW) The directory "/usr/share/fonts/100dpi" does not exist.
[     4.243] 	Entry deleted from font path.
[     4.243] (WW) The directory "/usr/share/fonts/75dpi" does not exist.
[     4.243] 	Entry deleted from font path.
[     4.243] (==) FontPath set to:
	/usr/share/fonts/misc,
	/usr/share/fonts/TTF,
	/usr/share/fonts/OTF
[     4.243] (==) ModulePath set to "/usr/lib/xorg/modules"
[     4.243] (II) The server relies on udev to provide the list of input devices.
	If no devices become available, reconfigure udev or disable AutoAddDevices.
[     4.243] (II) Module ABI versions:
[     4.243] 	X.Org ANSI C Emulation: 0.4
[     4.243] 	X.Org Video Driver: 25.2
[     4.243] 	X.Org XInput driver : 24.4
[     4.243] 	X.Org Server Extension : 10.0
[     4.243] (++) using VT number 7

[     4.243] (II) systemd-logind: logind integration requires -keeptty and -keeptty was not provided, disabling logind integration
[     4.244] (II) xfree86: Adding drm device (/dev/dri/card0)
[     4.244] (II) Platform probe for /sys/devices/pci0000:00/0000:00:02.0/drm/card0
[     4.260] (--) PCI:*(0@0:2:0) 8086:5917:1558:7a01 rev 7, Mem @ 0xde000000/16777216, 0xc0000000/268435456, I/O @ 0x0000f000/64, BIOS @ 0x????????/131072
[     4.260] (WW) Open ACPI failed (/var/run/acpid.socket) (No such file or directory)
[     4.260] (II) LoadModule: "glx"
[     4.261] (II) Loading /usr/lib/xorg/modules/extensions/libglx.so
[     4.265] (II) Module glx: vendor="X.Org Foundation"
[     4.265] 	compiled for 1.21.1.3, module version = 1.0.0
[     4.265] 	ABI class: X.Org Server Extension, version 10.0
[     4.265] (==) Matched intel as autoconfigured driver 0
[     4.265] (==) Matched modesetting as autoconfigured driver 1
[     4.265] (==) Matched fbdev as autoconfigured driver 2
[     4.265] (==) Matched vesa as autoconfigured driver 3
[     4.265] (==) Assigned the driver to the xf86ConfigLayout
[     4.265] (II) LoadModule: "intel"
[     4.265] (WW) Warning, couldn't open module intel
[     4.265] (EE) Failed to load module "intel" (module does not exist, 0)
[     4.265] (II) LoadModule: "modesetting"
[     4.265] (II) Loading /usr/lib/xorg/modules/drivers/modesetting_drv.so
[     4.267] (II) Module modesetting: vendor="X.Org Foundation"
[     4.267] 	compiled for 1.21.1.3, module version = 1.21.1
[     4.267] 	Module class: X.Org Video Driver
[     4.267] 	ABI class: X.Org Video Driver, version 25.2
[     4.267] (II) LoadModule: "fbdev"
[     4.267] (WW) Warning, couldn't open module fbdev
[     4.267] (EE) Failed to load module "fbdev" (module does not exist, 0)
[     4.267] (II) LoadModule: "vesa"
[     4.267] (WW) Warning, couldn't open module vesa
[     4.267] (EE) Failed to load module "vesa" (module does not exist, 0)
[     4.267] (II) modesetting: Driver for Modesetting Kernel Drivers: kms
[     4.292] (II) modeset(0): using drv /dev/dri/card0
[     4.292] (II) modeset(0): Creating default Display subsection in Screen section
	"Default Screen Section" for depth/fbbpp 24/32
[     4.292] (==) modeset(0): Depth 24, (==) framebuffer bpp 32
[     4.292] (==) modeset(0): RGB weight 888
[     4.292] (==) modeset(0): Default visual is TrueColor
[     4.292] (II) Loading sub module "glamoregl"
[     4.292] (II) LoadModule: "glamoregl"
[     4.293] (II) Loading /usr/lib/xorg/modules/libglamoregl.so
[     4.304] (II) Module glamoregl: vendor="X.Org Foundation"
[     4.304] 	compiled for 1.21.1.3, module version = 1.0.1
[     4.304] 	ABI class: X.Org ANSI C Emulation, version 0.4
[     4.527] (II) modeset(0): glamor X acceleration enabled on Mesa Intel(R) UHD Graphics 620 (KBL GT2)
[     4.527] (II) modeset(0): glamor initialized
[     4.527] (==) modeset(0): VariableRefresh: disabled
[     4.527] (==) modeset(0): AsyncFlipSecondaries: disabled
[     4.528] (II) modeset(0): Output eDP-1 using monitor section eDP-1
[     4.528] (II) modeset(0): Output DP-1 has no monitor section
[     4.533] (II) modeset(0): Output HDMI-1 has no monitor section
[     4.565] (II) modeset(0): Output HDMI-2 using monitor section HDMI-2
[     4.566] (II) modeset(0): EDID for output eDP-1
[     4.566] (II) modeset(0): Manufacturer: CMN  Model: 15c3  Serial#: 0
[     4.566] (II) modeset(0): Year: 2013  Week: 40
[     4.566] (II) modeset(0): EDID Version: 1.4
[     4.566] (II) modeset(0): Digital Display Input
[     4.566] (II) modeset(0): 6 bits per channel
[     4.566] (II) modeset(0): Digital interface is DisplayPort
[     4.566] (II) modeset(0): Max Image Size [cm]: horiz.: 34  vert.: 19
[     4.566] (II) modeset(0): Gamma: 2.20
[     4.566] (II) modeset(0): No DPMS capabilities specified
[     4.567] (II) modeset(0): Supported color encodings: RGB 4:4:4 
[     4.567] (II) modeset(0): First detailed timing is preferred mode
[     4.567] (II) modeset(0): Preferred mode is native pixel format and refresh rate
[     4.567] (II) modeset(0): redX: 0.620 redY: 0.335   greenX: 0.320 greenY: 0.584
[     4.567] (II) modeset(0): blueX: 0.160 blueY: 0.065   whiteX: 0.313 whiteY: 0.329
[     4.567] (II) modeset(0): Manufacturer's mask: 0
[     4.567] (II) modeset(0): Supported detailed timing:
[     4.567] (II) modeset(0): clock: 136.6 MHz   Image Size:  344 x 193 mm
[     4.567] (II) modeset(0): h_active: 1920  h_sync: 1964  h_sync_end 1992 h_blank_end 2070 h_border: 0
[     4.567] (II) modeset(0): v_active: 1080  v_sync: 1082  v_sync_end 1086 v_blanking: 1100 v_border: 0
[     4.567] (II) modeset(0):  N156HGE-EA2
[     4.567] (II) modeset(0):  CMN
[     4.567] (II) modeset(0):  N156HGE-EA2
[     4.567] (II) modeset(0): EDID (in hex):
[     4.567] (II) modeset(0): 	00ffffffffffff000daec31500000000
[     4.567] (II) modeset(0): 	281701049522137802f2359e55529529
[     4.567] (II) modeset(0): 	10505400000001010101010101010101
[     4.567] (II) modeset(0): 	0101010101015e358096703814402c1c
[     4.567] (II) modeset(0): 	240058c110000018000000fe004e3135
[     4.567] (II) modeset(0): 	364847452d4541320a20000000fe0043
[     4.567] (II) modeset(0): 	4d4e0a202020202020202020000000fe
[     4.567] (II) modeset(0): 	004e3135364847452d4541320a20000f
[     4.567] (II) modeset(0): Printing probed modes for output eDP-1
[     4.567] (II) modeset(0): Modeline "1920x1080"x60.0  136.62  1920 1964 1992 2070  1080 1082 1086 1100 -hsync -vsync (66.0 kHz eP)
[     4.567] (II) modeset(0): Modeline "1920x1080"x119.9  266.50  1920 1944 1960 2000  1080 1081 1084 1111 doublescan +hsync -vsync (133.2 kHz d)
[     4.567] (II) modeset(0): Modeline "1920x1080"x60.0  173.00  1920 2048 2248 2576  1080 1083 1088 1120 -hsync +vsync (67.2 kHz d)
[     4.567] (II) modeset(0): Modeline "1920x1080"x59.9  138.50  1920 1968 2000 2080  1080 1083 1088 1111 +hsync -vsync (66.6 kHz d)
[     4.567] (II) modeset(0): Modeline "1680x1050"x60.0  146.25  1680 1784 1960 2240  1050 1053 1059 1089 -hsync +vsync (65.3 kHz d)
[     4.567] (II) modeset(0): Modeline "1680x1050"x59.9  119.00  1680 1728 1760 1840  1050 1053 1059 1080 +hsync -vsync (64.7 kHz d)
[     4.567] (II) modeset(0): Modeline "1400x1050"x60.0  122.00  1400 1488 1640 1880  1050 1052 1064 1082 +hsync +vsync (64.9 kHz d)
[     4.567] (II) modeset(0): Modeline "1600x900"x120.0  246.00  1600 1728 1900 2200  900 901 904 932 doublescan -hsync +vsync (111.8 kHz d)
[     4.567] (II) modeset(0): Modeline "1600x900"x119.9  186.50  1600 1624 1640 1680  900 901 904 926 doublescan +hsync -vsync (111.0 kHz d)
[     4.567] (II) modeset(0): Modeline "1600x900"x59.9  118.25  1600 1696 1856 2112  900 903 908 934 -hsync +vsync (56.0 kHz d)
[     4.567] (II) modeset(0): Modeline "1600x900"x59.8   97.50  1600 1648 1680 1760  900 903 908 926 +hsync -vsync (55.4 kHz d)
[     4.567] (II) modeset(0): Modeline "1280x1024"x60.0  108.00  1280 1328 1440 1688  1024 1025 1028 1066 +hsync +vsync (64.0 kHz d)
[     4.567] (II) modeset(0): Modeline "1400x900"x60.0  103.50  1400 1480 1624 1848  900 903 913 934 -hsync +vsync (56.0 kHz d)
[     4.567] (II) modeset(0): Modeline "1400x900"x59.9   86.50  1400 1448 1480 1560  900 903 913 926 +hsync -vsync (55.4 kHz d)
[     4.567] (II) modeset(0): Modeline "1280x960"x60.0  108.00  1280 1376 1488 1800  960 961 964 1000 +hsync +vsync (60.0 kHz d)
[     4.567] (II) modeset(0): Modeline "1440x810"x120.0  198.12  1440 1548 1704 1968  810 811 814 839 doublescan -hsync +vsync (100.7 kHz d)
[     4.567] (II) modeset(0): Modeline "1440x810"x119.9  151.88  1440 1464 1480 1520  810 811 814 833 doublescan +hsync -vsync (99.9 kHz d)
[     4.567] (II) modeset(0): Modeline "1368x768"x59.9   85.25  1368 1440 1576 1784  768 771 781 798 -hsync +vsync (47.8 kHz d)
[     4.567] (II) modeset(0): Modeline "1368x768"x59.9   72.25  1368 1416 1448 1528  768 771 781 790 +hsync -vsync (47.3 kHz d)
[     4.567] (II) modeset(0): Modeline "1280x800"x120.0  174.25  1280 1380 1516 1752  800 801 804 829 doublescan -hsync +vsync (99.5 kHz d)
[     4.567] (II) modeset(0): Modeline "1280x800"x119.9  134.25  1280 1304 1320 1360  800 801 804 823 doublescan +hsync -vsync (98.7 kHz d)
[     4.567] (II) modeset(0): Modeline "1280x800"x59.8   83.50  1280 1352 1480 1680  800 803 809 831 -hsync +vsync (49.7 kHz d)
[     4.567] (II) modeset(0): Modeline "1280x800"x59.9   71.00  1280 1328 1360 1440  800 803 809 823 +hsync -vsync (49.3 kHz d)
[     4.567] (II) modeset(0): Modeline "1280x720"x120.0  156.12  1280 1376 1512 1744  720 721 724 746 doublescan -hsync +vsync (89.5 kHz d)
[     4.567] (II) modeset(0): Modeline "1280x720"x120.0  120.75  1280 1304 1320 1360  720 721 724 740 doublescan +hsync -vsync (88.8 kHz d)
[     4.567] (II) modeset(0): Modeline "1280x720"x59.9   74.50  1280 1344 1472 1664  720 723 728 748 -hsync +vsync (44.8 kHz d)
[     4.567] (II) modeset(0): Modeline "1280x720"x59.7   63.75  1280 1328 1360 1440  720 723 728 741 +hsync -vsync (44.3 kHz d)
[     4.567] (II) modeset(0): Modeline "1024x768"x120.1  133.47  1024 1100 1212 1400  768 768 770 794 doublescan -hsync +vsync (95.3 kHz d)
[     4.567] (II) modeset(0): Modeline "1024x768"x60.0   65.00  1024 1048 1184 1344  768 771 777 806 -hsync -vsync (48.4 kHz d)
[     4.567] (II) modeset(0): Modeline "960x720"x120.0  117.00  960 1024 1128 1300  720 720 722 750 doublescan -hsync +vsync (90.0 kHz d)
[     4.567] (II) modeset(0): Modeline "928x696"x120.1  109.15  928 976 1088 1264  696 696 698 719 doublescan -hsync +vsync (86.4 kHz d)
[     4.567] (II) modeset(0): Modeline "896x672"x120.0  102.40  896 960 1060 1224  672 672 674 697 doublescan -hsync +vsync (83.7 kHz d)
[     4.568] (II) modeset(0): Modeline "1024x576"x119.9   98.50  1024 1092 1200 1376  576 577 580 597 doublescan -hsync +vsync (71.6 kHz d)
[     4.568] (II) modeset(0): Modeline "1024x576"x119.9   78.38  1024 1048 1064 1104  576 577 580 592 doublescan +hsync -vsync (71.0 kHz d)
[     4.568] (II) modeset(0): Modeline "1024x576"x59.9   46.50  1024 1064 1160 1296  576 579 584 599 -hsync +vsync (35.9 kHz d)
[     4.568] (II) modeset(0): Modeline "1024x576"x59.8   42.00  1024 1072 1104 1184  576 579 584 593 +hsync -vsync (35.5 kHz d)
[     4.568] (II) modeset(0): Modeline "960x600"x119.9   96.62  960 1028 1128 1296  600 601 604 622 doublescan -hsync +vsync (74.6 kHz d)
[     4.568] (II) modeset(0): Modeline "960x600"x120.0   77.00  960 984 1000 1040  600 601 604 617 doublescan +hsync -vsync (74.0 kHz d)
[     4.568] (II) modeset(0): Modeline "960x540"x119.9   86.50  960 1024 1124 1288  540 541 544 560 doublescan -hsync +vsync (67.2 kHz d)
[     4.568] (II) modeset(0): Modeline "960x540"x120.0   69.25  960 984 1000 1040  540 541 544 555 doublescan +hsync -vsync (66.6 kHz d)
[     4.568] (II) modeset(0): Modeline "960x540"x59.6   40.75  960 992 1088 1216  540 543 548 562 -hsync +vsync (33.5 kHz d)
[     4.568] (II) modeset(0): Modeline "960x540"x59.8   37.25  960 1008 1040 1120  540 543 548 556 +hsync -vsync (33.3 kHz d)
[     4.568] (II) modeset(0): Modeline "800x600"x120.0   81.00  800 832 928 1080  600 600 602 625 doublescan +hsync +vsync (75.0 kHz d)
[     4.568] (II) modeset(0): Modeline "800x600"x60.3   40.00  800 840 968 1056  600 601 605 628 +hsync +vsync (37.9 kHz d)
[     4.568] (II) modeset(0): Modeline "800x600"x56.2   36.00  800 824 896 1024  600 601 603 625 +hsync +vsync (35.2 kHz d)
[     4.568] (II) modeset(0): Modeline "840x525"x120.0   73.12  840 892 980 1120  525 526 529 544 doublescan -hsync +vsync (65.3 kHz d)
[     4.568] (II) modeset(0): Modeline "840x525"x119.8   59.50  840 864 880 920  525 526 529 540 doublescan +hsync -vsync (64.7 kHz d)
[     4.568] (II) modeset(0): Modeline "864x486"x59.9   32.50  864 888 968 1072  486 489 494 506 -hsync +vsync (30.3 kHz d)
[     4.568] (II) modeset(0): Modeline "864x486"x59.6   30.50  864 912 944 1024  486 489 494 500 +hsync -vsync (29.8 kHz d)
[     4.568] (II) modeset(0): Modeline "700x525"x120.0   61.00  700 744 820 940  525 526 532 541 doublescan +hsync +vsync (64.9 kHz d)
[     4.568] (II) modeset(0): Modeline "800x450"x119.9   59.12  800 848 928 1056  450 451 454 467 doublescan -hsync +vsync (56.0 kHz d)
[     4.568] (II) modeset(0): Modeline "800x450"x119.6   48.75  800 824 840 880  450 451 454 463 doublescan +hsync -vsync (55.4 kHz d)
[     4.568] (II) modeset(0): Modeline "640x512"x120.0   54.00  640 664 720 844  512 512 514 533 doublescan +hsync +vsync (64.0 kHz d)
[     4.568] (II) modeset(0): Modeline "700x450"x119.9   51.75  700 740 812 924  450 451 456 467 doublescan -hsync +vsync (56.0 kHz d)
[     4.568] (II) modeset(0): Modeline "700x450"x119.8   43.25  700 724 740 780  450 451 456 463 doublescan +hsync -vsync (55.4 kHz d)
[     4.568] (II) modeset(0): Modeline "640x480"x120.0   54.00  640 688 744 900  480 480 482 500 doublescan +hsync +vsync (60.0 kHz d)
[     4.568] (II) modeset(0): Modeline "640x480"x59.9   25.18  640 656 752 800  480 490 492 525 -hsync -vsync (31.5 kHz d)
[     4.568] (II) modeset(0): Modeline "720x405"x59.5   22.50  720 744 808 896  405 408 413 422 -hsync +vsync (25.1 kHz d)
[     4.568] (II) modeset(0): Modeline "720x405"x59.0   21.75  720 768 800 880  405 408 413 419 +hsync -vsync (24.7 kHz d)
[     4.568] (II) modeset(0): Modeline "684x384"x119.8   42.62  684 720 788 892  384 385 390 399 doublescan -hsync +vsync (47.8 kHz d)
[     4.568] (II) modeset(0): Modeline "684x384"x119.7   36.12  684 708 724 764  384 385 390 395 doublescan +hsync -vsync (47.3 kHz d)
[     4.568] (II) modeset(0): Modeline "640x400"x119.8   41.75  640 676 740 840  400 401 404 415 doublescan -hsync +vsync (49.7 kHz d)
[     4.568] (II) modeset(0): Modeline "640x400"x120.0   35.50  640 664 680 720  400 401 404 411 doublescan +hsync -vsync (49.3 kHz d)
[     4.568] (II) modeset(0): Modeline "640x360"x119.7   37.25  640 672 736 832  360 361 364 374 doublescan -hsync +vsync (44.8 kHz d)
[     4.568] (II) modeset(0): Modeline "640x360"x119.7   31.88  640 664 680 720  360 361 364 370 doublescan +hsync -vsync (44.3 kHz d)
[     4.568] (II) modeset(0): Modeline "640x360"x59.8   18.00  640 664 720 800  360 363 368 376 -hsync +vsync (22.5 kHz d)
[     4.568] (II) modeset(0): Modeline "640x360"x59.3   17.75  640 688 720 800  360 363 368 374 +hsync -vsync (22.2 kHz d)
[     4.568] (II) modeset(0): Modeline "512x384"x120.0   32.50  512 524 592 672  384 385 388 403 doublescan -hsync -vsync (48.4 kHz d)
[     4.568] (II) modeset(0): Modeline "512x288"x120.0   23.25  512 532 580 648  288 289 292 299 doublescan -hsync +vsync (35.9 kHz d)
[     4.568] (II) modeset(0): Modeline "512x288"x119.8   21.00  512 536 552 592  288 289 292 296 doublescan +hsync -vsync (35.5 kHz d)
[     4.568] (II) modeset(0): Modeline "480x270"x119.3   20.38  480 496 544 608  270 271 274 281 doublescan -hsync +vsync (33.5 kHz d)
[     4.568] (II) modeset(0): Modeline "480x270"x119.6   18.62  480 504 520 560  270 271 274 278 doublescan +hsync -vsync (33.3 kHz d)
[     4.568] (II) modeset(0): Modeline "400x300"x120.6   20.00  400 420 484 528  300 300 302 314 doublescan +hsync +vsync (37.9 kHz d)
[     4.568] (II) modeset(0): Modeline "400x300"x112.7   18.00  400 412 448 512  300 300 301 312 doublescan +hsync +vsync (35.2 kHz d)
[     4.568] (II) modeset(0): Modeline "432x243"x119.8   16.25  432 444 484 536  243 244 247 253 doublescan -hsync +vsync (30.3 kHz d)
[     4.568] (II) modeset(0): Modeline "432x243"x119.1   15.25  432 456 472 512  243 244 247 250 doublescan +hsync -vsync (29.8 kHz d)
[     4.568] (II) modeset(0): Modeline "320x240"x120.1   12.59  320 328 376 400  240 245 246 262 doublescan -hsync -vsync (31.5 kHz d)
[     4.568] (II) modeset(0): Modeline "360x202"x119.0   11.25  360 372 404 448  202 204 206 211 doublescan -hsync +vsync (25.1 kHz d)
[     4.568] (II) modeset(0): Modeline "360x202"x118.3   10.88  360 384 400 440  202 204 206 209 doublescan +hsync -vsync (24.7 kHz d)
[     4.568] (II) modeset(0): Modeline "320x180"x119.7    9.00  320 332 360 400  180 181 184 188 doublescan -hsync +vsync (22.5 kHz d)
[     4.568] (II) modeset(0): Modeline "320x180"x118.6    8.88  320 344 360 400  180 181 184 187 doublescan +hsync -vsync (22.2 kHz d)
[     4.568] (II) modeset(0): EDID for output DP-1
[     4.572] (II) modeset(0): EDID for output HDMI-1
[     4.599] (II) modeset(0): EDID for output HDMI-2
[     4.599] (II) modeset(0): Manufacturer: CHD  Model: 240  Serial#: 1
[     4.599] (II) modeset(0): Year: 2019  Week: 12
[     4.599] (II) modeset(0): EDID Version: 1.3
[     4.599] (II) modeset(0): Digital Display Input
[     4.599] (II) modeset(0): Max Image Size [cm]: horiz.: 53  vert.: 29
[     4.599] (II) modeset(0): Gamma: 2.20
[     4.599] (II) modeset(0): DPMS capabilities: StandBy Suspend Off
[     4.599] (II) modeset(0): Supported color encodings: RGB 4:4:4 YCrCb 4:4:4 
[     4.599] (II) modeset(0): First detailed timing is preferred mode
[     4.600] (II) modeset(0): redX: 0.637 redY: 0.331   greenX: 0.304 greenY: 0.626
[     4.600] (II) modeset(0): blueX: 0.152 blueY: 0.071   whiteX: 0.313 whiteY: 0.329
[     4.600] (II) modeset(0): Supported established timings:
[     4.600] (II) modeset(0): 720x400@70Hz
[     4.600] (II) modeset(0): 640x480@60Hz
[     4.600] (II) modeset(0): 640x480@67Hz
[     4.600] (II) modeset(0): 640x480@72Hz
[     4.600] (II) modeset(0): 640x480@75Hz
[     4.600] (II) modeset(0): 800x600@56Hz
[     4.600] (II) modeset(0): 800x600@60Hz
[     4.600] (II) modeset(0): 800x600@72Hz
[     4.600] (II) modeset(0): 800x600@75Hz
[     4.600] (II) modeset(0): 832x624@75Hz
[     4.600] (II) modeset(0): 1024x768@60Hz
[     4.600] (II) modeset(0): 1024x768@70Hz
[     4.600] (II) modeset(0): 1024x768@75Hz
[     4.600] (II) modeset(0): 1280x1024@75Hz
[     4.600] (II) modeset(0): Manufacturer's mask: 0
[     4.600] (II) modeset(0): Supported standard timings:
[     4.600] (II) modeset(0): #0: hsize: 1152  vsize 864  refresh: 75  vid: 20337
[     4.600] (II) modeset(0): #1: hsize: 1280  vsize 1024  refresh: 60  vid: 32897
[     4.600] (II) modeset(0): #2: hsize: 1280  vsize 960  refresh: 60  vid: 16513
[     4.600] (II) modeset(0): #3: hsize: 1440  vsize 900  refresh: 60  vid: 149
[     4.600] (II) modeset(0): #4: hsize: 1600  vsize 1200  refresh: 60  vid: 16553
[     4.600] (II) modeset(0): #5: hsize: 1680  vsize 1050  refresh: 60  vid: 179
[     4.600] (II) modeset(0): #6: hsize: 1920  vsize 1080  refresh: 60  vid: 49361
[     4.600] (II) modeset(0): #7: hsize: 1600  vsize 900  refresh: 60  vid: 49321
[     4.600] (II) modeset(0): Supported detailed timing:
[     4.600] (II) modeset(0): clock: 148.5 MHz   Image Size:  368 x 207 mm
[     4.600] (II) modeset(0): h_active: 1920  h_sync: 2008  h_sync_end 2052 h_blank_end 2200 h_border: 0
[     4.600] (II) modeset(0): v_active: 1080  v_sync: 1084  v_sync_end 1089 v_blanking: 1125 v_border: 0
[     4.600] (II) modeset(0): Ranges: V min: 50 V max: 76 Hz, H min: 30 H max: 83 kHz, PixClock max 155 MHz
[     4.600] (II) modeset(0): Monitor name: PMO S240-IFC
[     4.600] (II) modeset(0): Serial No: 0101010101010
[     4.600] (II) modeset(0): Supported detailed timing:
[     4.600] (II) modeset(0): clock: 138.5 MHz   Image Size:  546 x 352 mm
[     4.600] (II) modeset(0): h_active: 1920  h_sync: 1968  h_sync_end 2000 h_blank_end 2080 h_border: 0
[     4.600] (II) modeset(0): v_active: 1080  v_sync: 1083  v_sync_end 1088 v_blanking: 1110 v_border: 0
[     4.600] (II) modeset(0): Supported detailed timing:
[     4.600] (II) modeset(0): clock: 85.5 MHz   Image Size:  546 x 352 mm
[     4.600] (II) modeset(0): h_active: 1366  h_sync: 1436  h_sync_end 1579 h_blank_end 1792 h_border: 0
[     4.600] (II) modeset(0): v_active: 768  v_sync: 771  v_sync_end 774 v_blanking: 798 v_border: 0
[     4.600] (II) modeset(0): Supported detailed timing:
[     4.600] (II) modeset(0): clock: 74.2 MHz   Image Size:  546 x 352 mm
[     4.600] (II) modeset(0): h_active: 1280  h_sync: 1390  h_sync_end 1430 h_blank_end 1650 h_border: 0
[     4.600] (II) modeset(0): v_active: 720  v_sync: 725  v_sync_end 730 v_blanking: 750 v_border: 0
[     4.600] (II) modeset(0): Supported detailed timing:
[     4.600] (II) modeset(0): clock: 27.0 MHz   Image Size:  546 x 352 mm
[     4.600] (II) modeset(0): h_active: 720  h_sync: 736  h_sync_end 798 h_blank_end 858 h_border: 0
[     4.600] (II) modeset(0): v_active: 480  v_sync: 489  v_sync_end 495 v_blanking: 525 v_border: 0
[     4.600] (II) modeset(0): Supported detailed timing:
[     4.600] (II) modeset(0): clock: 79.5 MHz   Image Size:  546 x 352 mm
[     4.600] (II) modeset(0): h_active: 1280  h_sync: 1328  h_sync_end 1360 h_blank_end 1664 h_border: 0
[     4.600] (II) modeset(0): v_active: 768  v_sync: 771  v_sync_end 778 v_blanking: 798 v_border: 0
[     4.600] (II) modeset(0): Number of EDID sections to follow: 1
[     4.600] (II) modeset(0): EDID (in hex):
[     4.600] (II) modeset(0): 	00ffffffffffff000d04400201000000
[     4.600] (II) modeset(0): 	0c1d010380351d78ea3d15a3544da027
[     4.600] (II) modeset(0): 	125054bfef00714f818081409500a940
[     4.600] (II) modeset(0): 	b300d1c0a9c0023a801871382d40582c
[     4.600] (II) modeset(0): 	450070cf1000001a000000fd00324c1e
[     4.600] (II) modeset(0): 	530f000a202020202020000000fc0050
[     4.600] (II) modeset(0): 	4d4f20533234302d4946430a000000ff
[     4.600] (II) modeset(0): 	00303130313031303130313031300192
[     4.600] (II) modeset(0): 	02031ef14b900504030201111213141f
[     4.600] (II) modeset(0): 	230907078301000065030c0010001a36
[     4.600] (II) modeset(0): 	80a070381e403020350022602100001a
[     4.600] (II) modeset(0): 	662156aa51001e30468f330022602100
[     4.600] (II) modeset(0): 	001e011d007251d01e206e2855002260
[     4.600] (II) modeset(0): 	2100001e8c0ad08a20e02d10103e9600
[     4.600] (II) modeset(0): 	2260210000180e1f008051001e303020
[     4.600] (II) modeset(0): 	370022602100009e0000000000000035
[     4.600] (II) modeset(0): Not using mode "1600x1200" (bad mode clock/interlace/doublescan)
[     4.600] (II) modeset(0): Printing probed modes for output HDMI-2
[     4.601] (II) modeset(0): Modeline "1920x1080"x60.0  148.50  1920 2008 2052 2200  1080 1084 1089 1125 +hsync -vsync (67.5 kHz eP)
[     4.601] (II) modeset(0): Modeline "1920x1080"x60.0  148.50  1920 2008 2052 2200  1080 1084 1089 1125 +hsync +vsync (67.5 kHz e)
[     4.601] (II) modeset(0): Modeline "1920x1080"x50.0  148.50  1920 2448 2492 2640  1080 1084 1089 1125 +hsync +vsync (56.2 kHz e)
[     4.601] (II) modeset(0): Modeline "1920x1080"x59.9  148.35  1920 2008 2052 2200  1080 1084 1089 1125 +hsync +vsync (67.4 kHz e)
[     4.601] (II) modeset(0): Modeline "1920x1080"x60.0  138.50  1920 1968 2000 2080  1080 1083 1088 1110 +hsync -vsync (66.6 kHz e)
[     4.601] (II) modeset(0): Modeline "1920x1080i"x60.0   74.25  1920 2008 2052 2200  1080 1084 1094 1125 interlace +hsync +vsync (33.8 kHz e)
[     4.601] (II) modeset(0): Modeline "1920x1080i"x50.0   74.25  1920 2448 2492 2640  1080 1084 1094 1125 interlace +hsync +vsync (28.1 kHz e)
[     4.601] (II) modeset(0): Modeline "1920x1080i"x59.9   74.18  1920 2008 2052 2200  1080 1084 1094 1125 interlace +hsync +vsync (33.7 kHz e)
[     4.601] (II) modeset(0): Modeline "1680x1050"x59.9  119.00  1680 1728 1760 1840  1050 1053 1059 1080 +hsync -vsync (64.7 kHz e)
[     4.601] (II) modeset(0): Modeline "1600x900"x60.0  108.00  1600 1624 1704 1800  900 901 904 1000 +hsync +vsync (60.0 kHz e)
[     4.601] (II) modeset(0): Modeline "1280x1024"x75.0  135.00  1280 1296 1440 1688  1024 1025 1028 1066 +hsync +vsync (80.0 kHz e)
[     4.601] (II) modeset(0): Modeline "1280x1024"x60.0  108.00  1280 1328 1440 1688  1024 1025 1028 1066 +hsync +vsync (64.0 kHz e)
[     4.601] (II) modeset(0): Modeline "1440x900"x59.9   88.75  1440 1488 1520 1600  900 903 909 926 +hsync -vsync (55.5 kHz e)
[     4.601] (II) modeset(0): Modeline "1280x960"x60.0  108.00  1280 1376 1488 1800  960 961 964 1000 +hsync +vsync (60.0 kHz e)
[     4.601] (II) modeset(0): Modeline "1366x768"x59.8   85.50  1366 1436 1579 1792  768 771 774 798 +hsync +vsync (47.7 kHz e)
[     4.601] (II) modeset(0): Modeline "1152x864"x75.0  108.00  1152 1216 1344 1600  864 865 868 900 +hsync +vsync (67.5 kHz e)
[     4.601] (II) modeset(0): Modeline "1280x768i"x119.7   79.50  1280 1328 1360 1664  768 771 778 798 interlace +hsync +vsync (47.8 kHz e)
[     4.601] (II) modeset(0): Modeline "1280x720"x60.0   74.25  1280 1390 1430 1650  720 725 730 750 +hsync +vsync (45.0 kHz e)
[     4.601] (II) modeset(0): Modeline "1280x720"x50.0   74.25  1280 1720 1760 1980  720 725 730 750 +hsync +vsync (37.5 kHz e)
[     4.601] (II) modeset(0): Modeline "1280x720"x59.9   74.18  1280 1390 1430 1650  720 725 730 750 +hsync +vsync (45.0 kHz e)
[     4.601] (II) modeset(0): Modeline "1024x768"x75.0   78.75  1024 1040 1136 1312  768 769 772 800 +hsync +vsync (60.0 kHz e)
[     4.601] (II) modeset(0): Modeline "1024x768"x70.1   75.00  1024 1048 1184 1328  768 771 777 806 -hsync -vsync (56.5 kHz e)
[     4.601] (II) modeset(0): Modeline "1024x768"x60.0   65.00  1024 1048 1184 1344  768 771 777 806 -hsync -vsync (48.4 kHz e)
[     4.601] (II) modeset(0): Modeline "832x624"x74.6   57.28  832 864 928 1152  624 625 628 667 -hsync -vsync (49.7 kHz e)
[     4.601] (II) modeset(0): Modeline "800x600"x72.2   50.00  800 856 976 1040  600 637 643 666 +hsync +vsync (48.1 kHz e)
[     4.601] (II) modeset(0): Modeline "800x600"x75.0   49.50  800 816 896 1056  600 601 604 625 +hsync +vsync (46.9 kHz e)
[     4.601] (II) modeset(0): Modeline "800x600"x60.3   40.00  800 840 968 1056  600 601 605 628 +hsync +vsync (37.9 kHz e)
[     4.601] (II) modeset(0): Modeline "800x600"x56.2   36.00  800 824 896 1024  600 601 603 625 +hsync +vsync (35.2 kHz e)
[     4.601] (II) modeset(0): Modeline "720x576"x50.0   27.00  720 732 796 864  576 581 586 625 -hsync -vsync (31.2 kHz e)
[     4.601] (II) modeset(0): Modeline "720x480"x60.0   27.03  720 736 798 858  480 489 495 525 -hsync -vsync (31.5 kHz e)
[     4.601] (II) modeset(0): Modeline "720x480"x59.9   27.00  720 736 798 858  480 489 495 525 -hsync -vsync (31.5 kHz e)
[     4.601] (II) modeset(0): Modeline "640x480"x75.0   31.50  640 656 720 840  480 481 484 500 -hsync -vsync (37.5 kHz e)
[     4.601] (II) modeset(0): Modeline "640x480"x72.8   31.50  640 664 704 832  480 489 492 520 -hsync -vsync (37.9 kHz e)
[     4.601] (II) modeset(0): Modeline "640x480"x66.7   30.24  640 704 768 864  480 483 486 525 -hsync -vsync (35.0 kHz e)
[     4.601] (II) modeset(0): Modeline "640x480"x60.0   25.20  640 656 752 800  480 490 492 525 -hsync -vsync (31.5 kHz e)
[     4.601] (II) modeset(0): Modeline "640x480"x59.9   25.18  640 656 752 800  480 490 492 525 -hsync -vsync (31.5 kHz e)
[     4.601] (II) modeset(0): Modeline "720x400"x70.1   28.32  720 738 846 900  400 412 414 449 -hsync +vsync (31.5 kHz e)
[     4.601] (II) modeset(0): Output eDP-1 connected
[     4.601] (II) modeset(0): Output DP-1 disconnected
[     4.601] (II) modeset(0): Output HDMI-1 disconnected
[     4.601] (II) modeset(0): Output HDMI-2 connected
[     4.601] (II) modeset(0): Using spanning desktop for initial modes
[     4.601] (II) modeset(0): Output eDP-1 using initial mode 1920x1080 +0+0
[     4.601] (II) modeset(0): Output HDMI-2 using initial mode 1920x1080 +1920+0
[     4.601] (==) modeset(0): Using gamma correction (1.0, 1.0, 1.0)
[     4.601] (==) modeset(0): DPI set to (96, 96)
[     4.601] (II) Loading sub module "fb"
[     4.601] (II) LoadModule: "fb"
[     4.601] (II) Module "fb" already built-in
[     4.634] (==) modeset(0): Backing store enabled
[     4.634] (==) modeset(0): Silken mouse enabled
[     4.842] (II) modeset(0): Initializing kms color map for depth 24, 8 bpc.
[     4.843] (==) modeset(0): DPMS enabled
[     4.843] (II) modeset(0): [DRI2] Setup complete
[     4.843] (II) modeset(0): [DRI2]   DRI driver: iris
[     4.843] (II) modeset(0): [DRI2]   VDPAU driver: va_gl
[     4.843] (II) Initializing extension Generic Event Extension
[     4.843] (II) Initializing extension SHAPE
[     4.844] (II) Initializing extension MIT-SHM
[     4.844] (II) Initializing extension XInputExtension
[     4.844] (II) Initializing extension XTEST
[     4.845] (II) Initializing extension BIG-REQUESTS
[     4.845] (II) Initializing extension SYNC
[     4.845] (II) Initializing extension XKEYBOARD
[     4.846] (II) Initializing extension XC-MISC
[     4.846] (II) Initializing extension SECURITY
[     4.846] (II) Initializing extension XFIXES
[     4.847] (II) Initializing extension RENDER
[     4.847] (II) Initializing extension RANDR
[     4.848] (II) Initializing extension COMPOSITE
[     4.848] (II) Initializing extension DAMAGE
[     4.848] (II) Initializing extension MIT-SCREEN-SAVER
[     4.849] (II) Initializing extension DOUBLE-BUFFER
[     4.849] (II) Initializing extension RECORD
[     4.849] (II) Initializing extension DPMS
[     4.849] (II) Initializing extension Present
[     4.850] (II) Initializing extension DRI3
[     4.850] (II) Initializing extension X-Resource
[     4.850] (II) Initializing extension XVideo
[     4.851] (II) Initializing extension XVideo-MotionCompensation
[     4.851] (II) Initializing extension GLX
[     4.871] (II) AIGLX: Loaded and initialized iris
[     4.871] (II) GLX: Initialized DRI2 GL provider for screen 0
[     4.871] (II) Initializing extension XFree86-VidModeExtension
[     4.871] (II) Initializing extension XFree86-DGA
[     4.872] (II) Initializing extension XFree86-DRI
[     4.872] (II) Initializing extension DRI2
[     4.873] (II) modeset(0): Damage tracking initialized
[     4.873] (II) modeset(0): Setting screen physical size to 531 x 300
[     4.945] (II) config/udev: Adding input device Power Button (/dev/input/event3)
[     4.945] (**) Power Button: Applying InputClass "libinput keyboard catchall"
[     4.945] (**) Power Button: Applying InputClass "system-keyboard"
[     4.945] (**) Power Button: Applying InputClass "system-keyboard"
[     4.945] (II) LoadModule: "libinput"
[     4.945] (II) Loading /usr/lib/xorg/modules/input/libinput_drv.so
[     4.947] (II) Module libinput: vendor="X.Org Foundation"
[     4.947] 	compiled for 1.21.1.3, module version = 1.2.1
[     4.947] 	Module class: X.Org XInput Driver
[     4.947] 	ABI class: X.Org XInput driver, version 24.4
[     4.947] (II) Using input driver 'libinput' for 'Power Button'
[     4.947] (**) Power Button: always reports core events
[     4.947] (**) Option "Device" "/dev/input/event3"
[     4.952] (II) event3  - Power Button: is tagged by udev as: Keyboard
[     4.952] (II) event3  - Power Button: device is a keyboard
[     4.952] (II) event3  - Power Button: device removed
[     4.978] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/LNXPWRBN:00/input/input3/event3"
[     4.978] (II) XINPUT: Adding extended input device "Power Button" (type: KEYBOARD, id 6)
[     4.978] (**) Option "xkb_model" "pc105"
[     4.978] (**) Option "xkb_layout" "ro"
[     4.978] (**) Option "xkb_variant" "cedilla,,,"
[     5.007] (II) event3  - Power Button: is tagged by udev as: Keyboard
[     5.007] (II) event3  - Power Button: device is a keyboard
[     5.007] (II) config/udev: Adding input device Video Bus (/dev/input/event10)
[     5.007] (**) Video Bus: Applying InputClass "libinput keyboard catchall"
[     5.007] (**) Video Bus: Applying InputClass "system-keyboard"
[     5.007] (**) Video Bus: Applying InputClass "system-keyboard"
[     5.007] (II) Using input driver 'libinput' for 'Video Bus'
[     5.007] (**) Video Bus: always reports core events
[     5.007] (**) Option "Device" "/dev/input/event10"
[     5.008] (II) event10 - Video Bus: is tagged by udev as: Keyboard
[     5.008] (II) event10 - Video Bus: device is a keyboard
[     5.008] (II) event10 - Video Bus: device removed
[     5.062] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/LNXVIDEO:00/input/input15/event10"
[     5.062] (II) XINPUT: Adding extended input device "Video Bus" (type: KEYBOARD, id 7)
[     5.062] (**) Option "xkb_model" "pc105"
[     5.062] (**) Option "xkb_layout" "ro"
[     5.062] (**) Option "xkb_variant" "cedilla,,,"
[     5.065] (II) event10 - Video Bus: is tagged by udev as: Keyboard
[     5.065] (II) event10 - Video Bus: device is a keyboard
[     5.067] (II) config/udev: Adding input device Power Button (/dev/input/event0)
[     5.067] (**) Power Button: Applying InputClass "libinput keyboard catchall"
[     5.067] (**) Power Button: Applying InputClass "system-keyboard"
[     5.067] (**) Power Button: Applying InputClass "system-keyboard"
[     5.067] (II) Using input driver 'libinput' for 'Power Button'
[     5.067] (**) Power Button: always reports core events
[     5.067] (**) Option "Device" "/dev/input/event0"
[     5.069] (II) event0  - Power Button: is tagged by udev as: Keyboard
[     5.069] (II) event0  - Power Button: device is a keyboard
[     5.069] (II) event0  - Power Button: device removed
[     5.103] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input0/event0"
[     5.103] (II) XINPUT: Adding extended input device "Power Button" (type: KEYBOARD, id 8)
[     5.103] (**) Option "xkb_model" "pc105"
[     5.103] (**) Option "xkb_layout" "ro"
[     5.103] (**) Option "xkb_variant" "cedilla,,,"
[     5.106] (II) event0  - Power Button: is tagged by udev as: Keyboard
[     5.106] (II) event0  - Power Button: device is a keyboard
[     5.108] (II) config/udev: Adding input device Lid Switch (/dev/input/event2)
[     5.108] (II) No input driver specified, ignoring this device.
[     5.108] (II) This device may have been added with another device file.
[     5.109] (II) config/udev: Adding input device Sleep Button (/dev/input/event1)
[     5.109] (**) Sleep Button: Applying InputClass "libinput keyboard catchall"
[     5.109] (**) Sleep Button: Applying InputClass "system-keyboard"
[     5.109] (**) Sleep Button: Applying InputClass "system-keyboard"
[     5.109] (II) Using input driver 'libinput' for 'Sleep Button'
[     5.109] (**) Sleep Button: always reports core events
[     5.109] (**) Option "Device" "/dev/input/event1"
[     5.112] (II) event1  - Sleep Button: is tagged by udev as: Keyboard
[     5.112] (II) event1  - Sleep Button: device is a keyboard
[     5.112] (II) event1  - Sleep Button: device removed
[     5.132] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0E:00/input/input1/event1"
[     5.132] (II) XINPUT: Adding extended input device "Sleep Button" (type: KEYBOARD, id 9)
[     5.132] (**) Option "xkb_model" "pc105"
[     5.132] (**) Option "xkb_layout" "ro"
[     5.132] (**) Option "xkb_variant" "cedilla,,,"
[     5.134] (II) event1  - Sleep Button: is tagged by udev as: Keyboard
[     5.135] (II) event1  - Sleep Button: device is a keyboard
[     5.138] (II) config/udev: Adding input device Chicony USB2.0 Camera: Chicony  (/dev/input/event7)
[     5.138] (**) Chicony USB2.0 Camera: Chicony : Applying InputClass "libinput keyboard catchall"
[     5.138] (**) Chicony USB2.0 Camera: Chicony : Applying InputClass "system-keyboard"
[     5.138] (**) Chicony USB2.0 Camera: Chicony : Applying InputClass "system-keyboard"
[     5.138] (II) Using input driver 'libinput' for 'Chicony USB2.0 Camera: Chicony '
[     5.138] (**) Chicony USB2.0 Camera: Chicony : always reports core events
[     5.138] (**) Option "Device" "/dev/input/event7"
[     5.141] (II) event7  - Chicony USB2.0 Camera: Chicony : is tagged by udev as: Keyboard
[     5.141] (II) event7  - Chicony USB2.0 Camera: Chicony : device is a keyboard
[     5.141] (II) event7  - Chicony USB2.0 Camera: Chicony : device removed
[     5.209] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:14.0/usb1/1-5/1-5:1.0/input/input19/event7"
[     5.209] (II) XINPUT: Adding extended input device "Chicony USB2.0 Camera: Chicony " (type: KEYBOARD, id 10)
[     5.209] (**) Option "xkb_model" "pc105"
[     5.209] (**) Option "xkb_layout" "ro"
[     5.209] (**) Option "xkb_variant" "cedilla,,,"
[     5.213] (II) event7  - Chicony USB2.0 Camera: Chicony : is tagged by udev as: Keyboard
[     5.213] (II) event7  - Chicony USB2.0 Camera: Chicony : device is a keyboard
[     5.216] (II) config/udev: Adding input device Logitech Wireless Mouse (/dev/input/event8)
[     5.216] (**) Logitech Wireless Mouse: Applying InputClass "libinput pointer catchall"
[     5.216] (II) Using input driver 'libinput' for 'Logitech Wireless Mouse'
[     5.216] (**) Logitech Wireless Mouse: always reports core events
[     5.216] (**) Option "Device" "/dev/input/event8"
[     5.221] (II) event8  - Logitech Wireless Mouse: is tagged by udev as: Mouse
[     5.221] (II) event8  - Logitech Wireless Mouse: device is a pointer
[     5.222] (II) event8  - Logitech Wireless Mouse: device removed
[     5.275] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:14.0/usb1/1-6/1-6:1.2/0003:046D:C52B.0003/0003:046D:4055.0004/input/input37/event8"
[     5.275] (II) XINPUT: Adding extended input device "Logitech Wireless Mouse" (type: MOUSE, id 11)
[     5.276] (**) Option "AccelerationScheme" "none"
[     5.276] (**) Logitech Wireless Mouse: (accel) selected scheme none/0
[     5.276] (**) Logitech Wireless Mouse: (accel) acceleration factor: 2.000
[     5.276] (**) Logitech Wireless Mouse: (accel) acceleration threshold: 4
[     5.280] (II) event8  - Logitech Wireless Mouse: is tagged by udev as: Mouse
[     5.281] (II) event8  - Logitech Wireless Mouse: device is a pointer
[     5.284] (II) config/udev: Adding input device Logitech Wireless Mouse (/dev/input/mouse1)
[     5.284] (II) No input driver specified, ignoring this device.
[     5.284] (II) This device may have been added with another device file.
[     5.286] (II) config/udev: Adding input device Logitech K540/K545 (/dev/input/event9)
[     5.286] (**) Logitech K540/K545: Applying InputClass "libinput keyboard catchall"
[     5.286] (**) Logitech K540/K545: Applying InputClass "system-keyboard"
[     5.286] (**) Logitech K540/K545: Applying InputClass "system-keyboard"
[     5.286] (II) Using input driver 'libinput' for 'Logitech K540/K545'
[     5.286] (**) Logitech K540/K545: always reports core events
[     5.286] (**) Option "Device" "/dev/input/event9"
[     5.291] (II) event9  - Logitech K540/K545: is tagged by udev as: Keyboard
[     5.291] (II) event9  - Logitech K540/K545: device is a keyboard
[     5.292] (II) event9  - Logitech K540/K545: device removed
[     5.329] (II) libinput: Logitech K540/K545: needs a virtual subdevice
[     5.329] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:14.0/usb1/1-6/1-6:1.2/0003:046D:C52B.0003/0003:046D:4076.0005/input/input38/event9"
[     5.329] (II) XINPUT: Adding extended input device "Logitech K540/K545" (type: MOUSE, id 12)
[     5.329] (**) Option "AccelerationScheme" "none"
[     5.329] (**) Logitech K540/K545: (accel) selected scheme none/0
[     5.329] (**) Logitech K540/K545: (accel) acceleration factor: 2.000
[     5.329] (**) Logitech K540/K545: (accel) acceleration threshold: 4
[     5.334] (II) event9  - Logitech K540/K545: is tagged by udev as: Keyboard
[     5.334] (II) event9  - Logitech K540/K545: device is a keyboard
[     5.336] (II) config/udev: Adding input device HDA Intel PCH Mic (/dev/input/event12)
[     5.336] (II) No input driver specified, ignoring this device.
[     5.336] (II) This device may have been added with another device file.
[     5.337] (II) config/udev: Adding input device HDA Intel PCH Front Headphone (/dev/input/event13)
[     5.338] (II) No input driver specified, ignoring this device.
[     5.338] (II) This device may have been added with another device file.
[     5.339] (II) config/udev: Adding input device HDA Intel PCH HDMI/DP,pcm=3 (/dev/input/event14)
[     5.339] (II) No input driver specified, ignoring this device.
[     5.339] (II) This device may have been added with another device file.
[     5.340] (II) config/udev: Adding input device HDA Intel PCH HDMI/DP,pcm=7 (/dev/input/event15)
[     5.340] (II) No input driver specified, ignoring this device.
[     5.340] (II) This device may have been added with another device file.
[     5.341] (II) config/udev: Adding input device HDA Intel PCH HDMI/DP,pcm=8 (/dev/input/event16)
[     5.341] (II) No input driver specified, ignoring this device.
[     5.341] (II) This device may have been added with another device file.
[     5.342] (II) config/udev: Adding input device HDA Intel PCH HDMI/DP,pcm=9 (/dev/input/event17)
[     5.342] (II) No input driver specified, ignoring this device.
[     5.342] (II) This device may have been added with another device file.
[     5.344] (II) config/udev: Adding input device HDA Intel PCH HDMI/DP,pcm=10 (/dev/input/event18)
[     5.344] (II) No input driver specified, ignoring this device.
[     5.344] (II) This device may have been added with another device file.
[     5.345] (II) config/udev: Adding input device Intel HID events (/dev/input/event5)
[     5.345] (**) Intel HID events: Applying InputClass "libinput keyboard catchall"
[     5.345] (**) Intel HID events: Applying InputClass "system-keyboard"
[     5.345] (**) Intel HID events: Applying InputClass "system-keyboard"
[     5.345] (II) Using input driver 'libinput' for 'Intel HID events'
[     5.345] (**) Intel HID events: always reports core events
[     5.345] (**) Option "Device" "/dev/input/event5"
[     5.347] (II) event5  - Intel HID events: is tagged by udev as: Keyboard
[     5.347] (II) event5  - Intel HID events: device is a keyboard
[     5.347] (II) event5  - Intel HID events: device removed
[     5.395] (**) Option "config_info" "udev:/sys/devices/platform/INT33D5:00/input/input9/event5"
[     5.396] (II) XINPUT: Adding extended input device "Intel HID events" (type: KEYBOARD, id 13)
[     5.396] (**) Option "xkb_model" "pc105"
[     5.396] (**) Option "xkb_layout" "ro"
[     5.396] (**) Option "xkb_variant" "cedilla,,,"
[     5.398] (II) event5  - Intel HID events: is tagged by udev as: Keyboard
[     5.399] (II) event5  - Intel HID events: device is a keyboard
[     5.400] (II) config/udev: Adding input device AT Translated Set 2 keyboard (/dev/input/event4)
[     5.400] (**) AT Translated Set 2 keyboard: Applying InputClass "libinput keyboard catchall"
[     5.400] (**) AT Translated Set 2 keyboard: Applying InputClass "system-keyboard"
[     5.400] (**) AT Translated Set 2 keyboard: Applying InputClass "system-keyboard"
[     5.400] (II) Using input driver 'libinput' for 'AT Translated Set 2 keyboard'
[     5.400] (**) AT Translated Set 2 keyboard: always reports core events
[     5.400] (**) Option "Device" "/dev/input/event4"
[     5.401] (II) event4  - AT Translated Set 2 keyboard: is tagged by udev as: Keyboard
[     5.401] (II) event4  - AT Translated Set 2 keyboard: device is a keyboard
[     5.401] (II) event4  - AT Translated Set 2 keyboard: device removed
[     5.435] (**) Option "config_info" "udev:/sys/devices/platform/i8042/serio0/input/input4/event4"
[     5.436] (II) XINPUT: Adding extended input device "AT Translated Set 2 keyboard" (type: KEYBOARD, id 14)
[     5.436] (**) Option "xkb_model" "pc105"
[     5.436] (**) Option "xkb_layout" "ro"
[     5.436] (**) Option "xkb_variant" "cedilla,,,"
[     5.438] (II) event4  - AT Translated Set 2 keyboard: is tagged by udev as: Keyboard
[     5.439] (II) event4  - AT Translated Set 2 keyboard: device is a keyboard
[     5.443] (II) config/udev: Adding input device SynPS/2 Synaptics TouchPad (/dev/input/event6)
[     5.443] (**) SynPS/2 Synaptics TouchPad: Applying InputClass "libinput touchpad catchall"
[     5.443] (**) SynPS/2 Synaptics TouchPad: Applying InputClass "touchpad catchall"
[     5.443] (**) SynPS/2 Synaptics TouchPad: Applying InputClass "Default clickpad buttons"
[     5.443] (II) LoadModule: "synaptics"
[     5.443] (II) Loading /usr/lib/xorg/modules/input/synaptics_drv.so
[     5.451] (II) Module synaptics: vendor="X.Org Foundation"
[     5.451] 	compiled for 1.21.1.1, module version = 1.9.1
[     5.451] 	Module class: X.Org XInput Driver
[     5.451] 	ABI class: X.Org XInput driver, version 24.4
[     5.451] (II) Using input driver 'synaptics' for 'SynPS/2 Synaptics TouchPad'
[     5.451] (**) SynPS/2 Synaptics TouchPad: always reports core events
[     5.451] (**) Option "Device" "/dev/input/event6"
[     5.529] (--) synaptics: SynPS/2 Synaptics TouchPad: x-axis range 1266 - 5674 (res 45)
[     5.529] (--) synaptics: SynPS/2 Synaptics TouchPad: y-axis range 1086 - 4764 (res 70)
[     5.529] (--) synaptics: SynPS/2 Synaptics TouchPad: pressure range 0 - 255
[     5.529] (--) synaptics: SynPS/2 Synaptics TouchPad: finger width range 0 - 15
[     5.529] (--) synaptics: SynPS/2 Synaptics TouchPad: buttons: left right double triple
[     5.529] (--) synaptics: SynPS/2 Synaptics TouchPad: Vendor 0x2 Product 0x7
[     5.529] (--) synaptics: SynPS/2 Synaptics TouchPad: touchpad found
[     5.529] (**) SynPS/2 Synaptics TouchPad: always reports core events
[     5.595] (**) Option "config_info" "udev:/sys/devices/platform/i8042/serio2/input/input17/event6"
[     5.595] (II) XINPUT: Adding extended input device "SynPS/2 Synaptics TouchPad" (type: TOUCHPAD, id 15)
[     5.595] (**) synaptics: SynPS/2 Synaptics TouchPad: (accel) MinSpeed is now constant deceleration 2.5
[     5.595] (**) synaptics: SynPS/2 Synaptics TouchPad: (accel) MaxSpeed is now 1.75
[     5.595] (**) synaptics: SynPS/2 Synaptics TouchPad: (accel) AccelFactor is now 0.035
[     5.596] (**) SynPS/2 Synaptics TouchPad: (accel) keeping acceleration scheme 1
[     5.596] (**) SynPS/2 Synaptics TouchPad: (accel) acceleration profile 1
[     5.596] (**) SynPS/2 Synaptics TouchPad: (accel) acceleration factor: 2.000
[     5.596] (**) SynPS/2 Synaptics TouchPad: (accel) acceleration threshold: 4
[     5.596] (--) synaptics: SynPS/2 Synaptics TouchPad: touchpad found
[     5.597] (II) config/udev: Adding input device SynPS/2 Synaptics TouchPad (/dev/input/mouse0)
[     5.597] (**) SynPS/2 Synaptics TouchPad: Ignoring device from InputClass "touchpad ignore duplicates"
[     5.598] (II) config/udev: Adding input device PC Speaker (/dev/input/event11)
[     5.598] (II) No input driver specified, ignoring this device.
[     5.598] (II) This device may have been added with another device file.
[     5.626] (**) Logitech K540/K545: Applying InputClass "libinput keyboard catchall"
[     5.626] (**) Logitech K540/K545: Applying InputClass "system-keyboard"
[     5.626] (**) Logitech K540/K545: Applying InputClass "system-keyboard"
[     5.626] (II) Using input driver 'libinput' for 'Logitech K540/K545'
[     5.626] (**) Logitech K540/K545: always reports core events
[     5.626] (**) Option "Device" "/dev/input/event9"
[     5.626] (II) libinput: Logitech K540/K545: is a virtual subdevice
[     5.626] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:14.0/usb1/1-6/1-6:1.2/0003:046D:C52B.0003/0003:046D:4076.0005/input/input38/event9"
[     5.626] (II) XINPUT: Adding extended input device "Logitech K540/K545" (type: KEYBOARD, id 16)
[     5.626] (**) Option "xkb_model" "pc105"
[     5.626] (**) Option "xkb_layout" "ro"
[     5.626] (**) Option "xkb_variant" "cedilla,,,"
[     5.748] (II) config/udev: Adding input device HDA Intel PCH HDMI/DP,pcm=3 (/dev/input/event14)
[     5.748] (II) No input driver specified, ignoring this device.
[     5.748] (II) This device may have been added with another device file.
[     5.748] (II) config/udev: Adding input device HDA Intel PCH HDMI/DP,pcm=9 (/dev/input/event17)
[     5.749] (II) No input driver specified, ignoring this device.
[     5.749] (II) This device may have been added with another device file.
[     5.749] (II) config/udev: Adding input device HDA Intel PCH HDMI/DP,pcm=8 (/dev/input/event16)
[     5.749] (II) No input driver specified, ignoring this device.
[     5.749] (II) This device may have been added with another device file.
[     5.750] (II) config/udev: removing device SynPS/2 Synaptics TouchPad
[     5.825] (II) UnloadModule: "synaptics"
[     5.826] (II) config/udev: Adding input device SynPS/2 Synaptics TouchPad (/dev/input/event6)
[     5.826] (**) SynPS/2 Synaptics TouchPad: Applying InputClass "libinput touchpad catchall"
[     5.826] (**) SynPS/2 Synaptics TouchPad: Applying InputClass "touchpad catchall"
[     5.826] (**) SynPS/2 Synaptics TouchPad: Applying InputClass "Default clickpad buttons"
[     5.826] (II) Using input driver 'synaptics' for 'SynPS/2 Synaptics TouchPad'
[     5.826] (**) SynPS/2 Synaptics TouchPad: always reports core events
[     5.826] (**) Option "Device" "/dev/input/event6"
[     5.889] (--) synaptics: SynPS/2 Synaptics TouchPad: x-axis range 1266 - 5674 (res 45)
[     5.889] (--) synaptics: SynPS/2 Synaptics TouchPad: y-axis range 1086 - 4764 (res 70)
[     5.889] (--) synaptics: SynPS/2 Synaptics TouchPad: pressure range 0 - 255
[     5.889] (--) synaptics: SynPS/2 Synaptics TouchPad: finger width range 0 - 15
[     5.889] (--) synaptics: SynPS/2 Synaptics TouchPad: buttons: left right double triple
[     5.889] (--) synaptics: SynPS/2 Synaptics TouchPad: Vendor 0x2 Product 0x7
[     5.889] (--) synaptics: SynPS/2 Synaptics TouchPad: touchpad found
[     5.889] (**) SynPS/2 Synaptics TouchPad: always reports core events
[     5.955] (**) Option "config_info" "udev:/sys/devices/platform/i8042/serio2/input/input17/event6"
[     5.956] (II) XINPUT: Adding extended input device "SynPS/2 Synaptics TouchPad" (type: TOUCHPAD, id 15)
[     5.956] (**) synaptics: SynPS/2 Synaptics TouchPad: (accel) MinSpeed is now constant deceleration 2.5
[     5.956] (**) synaptics: SynPS/2 Synaptics TouchPad: (accel) MaxSpeed is now 1.75
[     5.956] (**) synaptics: SynPS/2 Synaptics TouchPad: (accel) AccelFactor is now 0.035
[     5.956] (**) SynPS/2 Synaptics TouchPad: (accel) keeping acceleration scheme 1
[     5.956] (**) SynPS/2 Synaptics TouchPad: (accel) acceleration profile 1
[     5.956] (**) SynPS/2 Synaptics TouchPad: (accel) acceleration factor: 2.000
[     5.956] (**) SynPS/2 Synaptics TouchPad: (accel) acceleration threshold: 4
[     5.956] (--) synaptics: SynPS/2 Synaptics TouchPad: touchpad found
[     5.957] (II) config/udev: Adding input device HDA Intel PCH Front Headphone (/dev/input/event13)
[     5.957] (II) No input driver specified, ignoring this device.
[     5.957] (II) This device may have been added with another device file.
[     5.958] (II) config/udev: Adding input device HDA Intel PCH HDMI/DP,pcm=10 (/dev/input/event18)
[     5.958] (II) No input driver specified, ignoring this device.
[     5.958] (II) This device may have been added with another device file.
[     5.958] (II) config/udev: Adding input device HDA Intel PCH Mic (/dev/input/event12)
[     5.958] (II) No input driver specified, ignoring this device.
[     5.959] (II) This device may have been added with another device file.
[     5.959] (II) config/udev: Adding input device HDA Intel PCH HDMI/DP,pcm=7 (/dev/input/event15)
[     5.959] (II) No input driver specified, ignoring this device.
[     5.959] (II) This device may have been added with another device file.
[     5.960] (II) config/udev: Adding input device SynPS/2 Synaptics TouchPad (/dev/input/mouse0)
[     5.961] (**) SynPS/2 Synaptics TouchPad: Ignoring device from InputClass "touchpad ignore duplicates"
[     5.961] (II) config/udev: removing device Chicony USB2.0 Camera: Chicony 
[     5.961] (II) event7  - Chicony USB2.0 Camera: Chicony : device removed
[     6.036] (II) UnloadModule: "libinput"
[     6.037] (II) config/udev: Adding input device Chicony USB2.0 Camera: Chicony  (/dev/input/event7)
[     6.037] (**) Chicony USB2.0 Camera: Chicony : Applying InputClass "libinput keyboard catchall"
[     6.037] (**) Chicony USB2.0 Camera: Chicony : Applying InputClass "system-keyboard"
[     6.037] (**) Chicony USB2.0 Camera: Chicony : Applying InputClass "system-keyboard"
[     6.037] (II) Using input driver 'libinput' for 'Chicony USB2.0 Camera: Chicony '
[     6.037] (**) Chicony USB2.0 Camera: Chicony : always reports core events
[     6.037] (**) Option "Device" "/dev/input/event7"
[     6.041] (II) event7  - Chicony USB2.0 Camera: Chicony : is tagged by udev as: Keyboard
[     6.041] (II) event7  - Chicony USB2.0 Camera: Chicony : device is a keyboard
[     6.042] (II) event7  - Chicony USB2.0 Camera: Chicony : device removed
[     6.102] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:14.0/usb1/1-5/1-5:1.0/input/input19/event7"
[     6.102] (II) XINPUT: Adding extended input device "Chicony USB2.0 Camera: Chicony " (type: KEYBOARD, id 10)
[     6.102] (**) Option "xkb_model" "pc105"
[     6.102] (**) Option "xkb_layout" "ro"
[     6.102] (**) Option "xkb_variant" "cedilla,,,"
[     6.106] (II) event7  - Chicony USB2.0 Camera: Chicony : is tagged by udev as: Keyboard
[     6.107] (II) event7  - Chicony USB2.0 Camera: Chicony : device is a keyboard
[     6.111] (II) config/udev: Adding input device Logitech Wireless Mouse (/dev/input/mouse1)
[     6.111] (II) No input driver specified, ignoring this device.
[     6.111] (II) This device may have been added with another device file.
[     6.112] (II) config/udev: removing device Logitech K540/K545
[     6.112] (II) UnloadModule: "libinput"
[     6.112] (II) config/udev: removing device Logitech K540/K545
[     6.112] (II) event9  - Logitech K540/K545: device removed
[     6.142] (II) UnloadModule: "libinput"
[     6.144] (II) config/udev: Adding input device Logitech K540/K545 (/dev/input/event9)
[     6.144] (**) Logitech K540/K545: Applying InputClass "libinput keyboard catchall"
[     6.144] (**) Logitech K540/K545: Applying InputClass "system-keyboard"
[     6.144] (**) Logitech K540/K545: Applying InputClass "system-keyboard"
[     6.144] (II) Using input driver 'libinput' for 'Logitech K540/K545'
[     6.144] (**) Logitech K540/K545: always reports core events
[     6.144] (**) Option "Device" "/dev/input/event9"
[     6.148] (II) event9  - Logitech K540/K545: is tagged by udev as: Keyboard
[     6.148] (II) event9  - Logitech K540/K545: device is a keyboard
[     6.148] (II) event9  - Logitech K540/K545: device removed
[     6.182] (II) libinput: Logitech K540/K545: needs a virtual subdevice
[     6.182] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:14.0/usb1/1-6/1-6:1.2/0003:046D:C52B.0003/0003:046D:4076.0005/input/input38/event9"
[     6.182] (II) XINPUT: Adding extended input device "Logitech K540/K545" (type: MOUSE, id 12)
[     6.182] (**) Option "AccelerationScheme" "none"
[     6.183] (**) Logitech K540/K545: (accel) selected scheme none/0
[     6.183] (**) Logitech K540/K545: (accel) acceleration factor: 2.000
[     6.183] (**) Logitech K540/K545: (accel) acceleration threshold: 4
[     6.187] (II) event9  - Logitech K540/K545: is tagged by udev as: Keyboard
[     6.187] (II) event9  - Logitech K540/K545: device is a keyboard
[     6.188] (**) Logitech K540/K545: Applying InputClass "libinput keyboard catchall"
[     6.188] (**) Logitech K540/K545: Applying InputClass "system-keyboard"
[     6.188] (**) Logitech K540/K545: Applying InputClass "system-keyboard"
[     6.188] (II) Using input driver 'libinput' for 'Logitech K540/K545'
[     6.188] (**) Logitech K540/K545: always reports core events
[     6.188] (**) Option "Device" "/dev/input/event9"
[     6.188] (II) libinput: Logitech K540/K545: is a virtual subdevice
[     6.188] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:14.0/usb1/1-6/1-6:1.2/0003:046D:C52B.0003/0003:046D:4076.0005/input/input38/event9"
[     6.188] (II) XINPUT: Adding extended input device "Logitech K540/K545" (type: KEYBOARD, id 16)
[     6.189] (**) Option "xkb_model" "pc105"
[     6.189] (**) Option "xkb_layout" "ro"
[     6.189] (**) Option "xkb_variant" "cedilla,,,"
[     6.189] (II) config/udev: removing device Logitech Wireless Mouse
[     6.189] (II) event8  - Logitech Wireless Mouse: device removed
[     6.262] (II) UnloadModule: "libinput"
[     6.264] (II) config/udev: Adding input device Logitech Wireless Mouse (/dev/input/event8)
[     6.264] (**) Logitech Wireless Mouse: Applying InputClass "libinput pointer catchall"
[     6.264] (II) Using input driver 'libinput' for 'Logitech Wireless Mouse'
[     6.264] (**) Logitech Wireless Mouse: always reports core events
[     6.264] (**) Option "Device" "/dev/input/event8"
[     6.268] (II) event8  - Logitech Wireless Mouse: is tagged by udev as: Mouse
[     6.269] (II) event8  - Logitech Wireless Mouse: device is a pointer
[     6.270] (II) event8  - Logitech Wireless Mouse: device removed
[     6.342] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:14.0/usb1/1-6/1-6:1.2/0003:046D:C52B.0003/0003:046D:4055.0004/input/input37/event8"
[     6.342] (II) XINPUT: Adding extended input device "Logitech Wireless Mouse" (type: MOUSE, id 11)
[     6.342] (**) Option "AccelerationScheme" "none"
[     6.343] (**) Logitech Wireless Mouse: (accel) selected scheme none/0
[     6.343] (**) Logitech Wireless Mouse: (accel) acceleration factor: 2.000
[     6.343] (**) Logitech Wireless Mouse: (accel) acceleration threshold: 4
[     6.347] (II) event8  - Logitech Wireless Mouse: is tagged by udev as: Mouse
[     6.348] (II) event8  - Logitech Wireless Mouse: device is a pointer
[    12.525] (II) modeset(0): EDID vendor "CHD", prod id 576
[    12.525] (II) modeset(0): Using EDID range info for horizontal sync
[    12.525] (II) modeset(0): Using EDID range info for vertical refresh
[    12.525] (II) modeset(0): Printing DDC gathered Modelines:
[    12.525] (II) modeset(0): Modeline "1920x1080"x0.0  148.50  1920 2008 2052 2200  1080 1084 1089 1125 +hsync -vsync (67.5 kHz eP)
[    12.525] (II) modeset(0): Modeline "1920x1080"x0.0  138.50  1920 1968 2000 2080  1080 1083 1088 1110 +hsync -vsync (66.6 kHz e)
[    12.525] (II) modeset(0): Modeline "1366x768"x0.0   85.50  1366 1436 1579 1792  768 771 774 798 +hsync +vsync (47.7 kHz e)
[    12.525] (II) modeset(0): Modeline "1280x720"x0.0   74.25  1280 1390 1430 1650  720 725 730 750 +hsync +vsync (45.0 kHz e)
[    12.525] (II) modeset(0): Modeline "720x480"x0.0   27.00  720 736 798 858  480 489 495 525 -hsync -vsync (31.5 kHz e)
[    12.525] (II) modeset(0): Modeline "1280x768i"x0.0   79.50  1280 1328 1360 1664  768 771 778 798 interlace +hsync +vsync (47.8 kHz e)
[    12.525] (II) modeset(0): Modeline "1920x1080"x0.0  148.50  1920 2008 2052 2200  1080 1084 1089 1125 +hsync +vsync (67.5 kHz e)
[    12.525] (II) modeset(0): Modeline "1920x1080i"x0.0   74.25  1920 2008 2052 2200  1080 1084 1094 1125 interlace +hsync +vsync (33.8 kHz e)
[    12.525] (II) modeset(0): Modeline "640x480"x0.0   25.18  640 656 752 800  480 490 492 525 -hsync -vsync (31.5 kHz e)
[    12.525] (II) modeset(0): Modeline "720x576"x0.0   27.00  720 732 796 864  576 581 586 625 -hsync -vsync (31.2 kHz e)
[    12.525] (II) modeset(0): Modeline "1280x720"x0.0   74.25  1280 1720 1760 1980  720 725 730 750 +hsync +vsync (37.5 kHz e)
[    12.525] (II) modeset(0): Modeline "1920x1080i"x0.0   74.25  1920 2448 2492 2640  1080 1084 1094 1125 interlace +hsync +vsync (28.1 kHz e)
[    12.525] (II) modeset(0): Modeline "1920x1080"x0.0  148.50  1920 2448 2492 2640  1080 1084 1089 1125 +hsync +vsync (56.2 kHz e)
[    12.525] (II) modeset(0): Modeline "800x600"x0.0   40.00  800 840 968 1056  600 601 605 628 +hsync +vsync (37.9 kHz e)
[    12.525] (II) modeset(0): Modeline "800x600"x0.0   36.00  800 824 896 1024  600 601 603 625 +hsync +vsync (35.2 kHz e)
[    12.525] (II) modeset(0): Modeline "640x480"x0.0   31.50  640 656 720 840  480 481 484 500 -hsync -vsync (37.5 kHz e)
[    12.525] (II) modeset(0): Modeline "640x480"x0.0   31.50  640 664 704 832  480 489 492 520 -hsync -vsync (37.9 kHz e)
[    12.525] (II) modeset(0): Modeline "640x480"x0.0   30.24  640 704 768 864  480 483 486 525 -hsync -vsync (35.0 kHz e)
[    12.525] (II) modeset(0): Modeline "720x400"x0.0   28.32  720 738 846 900  400 412 414 449 -hsync +vsync (31.5 kHz e)
[    12.525] (II) modeset(0): Modeline "1280x1024"x0.0  135.00  1280 1296 1440 1688  1024 1025 1028 1066 +hsync +vsync (80.0 kHz e)
[    12.525] (II) modeset(0): Modeline "1024x768"x0.0   78.75  1024 1040 1136 1312  768 769 772 800 +hsync +vsync (60.0 kHz e)
[    12.525] (II) modeset(0): Modeline "1024x768"x0.0   75.00  1024 1048 1184 1328  768 771 777 806 -hsync -vsync (56.5 kHz e)
[    12.525] (II) modeset(0): Modeline "1024x768"x0.0   65.00  1024 1048 1184 1344  768 771 777 806 -hsync -vsync (48.4 kHz e)
[    12.525] (II) modeset(0): Modeline "832x624"x0.0   57.28  832 864 928 1152  624 625 628 667 -hsync -vsync (49.7 kHz e)
[    12.525] (II) modeset(0): Modeline "800x600"x0.0   49.50  800 816 896 1056  600 601 604 625 +hsync +vsync (46.9 kHz e)
[    12.525] (II) modeset(0): Modeline "800x600"x0.0   50.00  800 856 976 1040  600 637 643 666 +hsync +vsync (48.1 kHz e)
[    12.525] (II) modeset(0): Modeline "1152x864"x0.0  108.00  1152 1216 1344 1600  864 865 868 900 +hsync +vsync (67.5 kHz e)
[    12.525] (II) modeset(0): Modeline "1280x1024"x0.0  108.00  1280 1328 1440 1688  1024 1025 1028 1066 +hsync +vsync (64.0 kHz e)
[    12.525] (II) modeset(0): Modeline "1280x960"x0.0  108.00  1280 1376 1488 1800  960 961 964 1000 +hsync +vsync (60.0 kHz e)
[    12.525] (II) modeset(0): Modeline "1440x900"x0.0   88.75  1440 1488 1520 1600  900 903 909 926 +hsync -vsync (55.5 kHz e)
[    12.525] (II) modeset(0): Modeline "1600x1200"x0.0  162.00  1600 1664 1856 2160  1200 1201 1204 1250 +hsync +vsync (75.0 kHz e)
[    12.525] (II) modeset(0): Modeline "1680x1050"x0.0  119.00  1680 1728 1760 1840  1050 1053 1059 1080 +hsync -vsync (64.7 kHz e)
[    12.525] (II) modeset(0): Modeline "1600x900"x60.0  119.00  1600 1696 1864 2128  900 901 904 932 -hsync +vsync (55.9 kHz e)
[    51.891] (II) modeset(0): EDID vendor "CHD", prod id 576
[    51.892] (II) modeset(0): Using hsync ranges from config file
[    51.892] (II) modeset(0): Using vrefresh ranges from config file
[    51.892] (II) modeset(0): Printing DDC gathered Modelines:
[    51.892] (II) modeset(0): Modeline "1920x1080"x0.0  148.50  1920 2008 2052 2200  1080 1084 1089 1125 +hsync -vsync (67.5 kHz eP)
[    51.892] (II) modeset(0): Modeline "1920x1080"x0.0  138.50  1920 1968 2000 2080  1080 1083 1088 1110 +hsync -vsync (66.6 kHz e)
[    51.892] (II) modeset(0): Modeline "1366x768"x0.0   85.50  1366 1436 1579 1792  768 771 774 798 +hsync +vsync (47.7 kHz e)
[    51.892] (II) modeset(0): Modeline "1280x720"x0.0   74.25  1280 1390 1430 1650  720 725 730 750 +hsync +vsync (45.0 kHz e)
[    51.892] (II) modeset(0): Modeline "720x480"x0.0   27.00  720 736 798 858  480 489 495 525 -hsync -vsync (31.5 kHz e)
[    51.892] (II) modeset(0): Modeline "1280x768i"x0.0   79.50  1280 1328 1360 1664  768 771 778 798 interlace +hsync +vsync (47.8 kHz e)
[    51.892] (II) modeset(0): Modeline "1920x1080"x0.0  148.50  1920 2008 2052 2200  1080 1084 1089 1125 +hsync +vsync (67.5 kHz e)
[    51.892] (II) modeset(0): Modeline "1920x1080i"x0.0   74.25  1920 2008 2052 2200  1080 1084 1094 1125 interlace +hsync +vsync (33.8 kHz e)
[    51.892] (II) modeset(0): Modeline "640x480"x0.0   25.18  640 656 752 800  480 490 492 525 -hsync -vsync (31.5 kHz e)
[    51.892] (II) modeset(0): Modeline "720x576"x0.0   27.00  720 732 796 864  576 581 586 625 -hsync -vsync (31.2 kHz e)
[    51.892] (II) modeset(0): Modeline "1280x720"x0.0   74.25  1280 1720 1760 1980  720 725 730 750 +hsync +vsync (37.5 kHz e)
[    51.892] (II) modeset(0): Modeline "1920x1080i"x0.0   74.25  1920 2448 2492 2640  1080 1084 1094 1125 interlace +hsync +vsync (28.1 kHz e)
[    51.892] (II) modeset(0): Modeline "1920x1080"x0.0  148.50  1920 2448 2492 2640  1080 1084 1089 1125 +hsync +vsync (56.2 kHz e)
[    51.892] (II) modeset(0): Modeline "800x600"x0.0   40.00  800 840 968 1056  600 601 605 628 +hsync +vsync (37.9 kHz e)
[    51.892] (II) modeset(0): Modeline "800x600"x0.0   36.00  800 824 896 1024  600 601 603 625 +hsync +vsync (35.2 kHz e)
[    51.892] (II) modeset(0): Modeline "640x480"x0.0   31.50  640 656 720 840  480 481 484 500 -hsync -vsync (37.5 kHz e)
[    51.892] (II) modeset(0): Modeline "640x480"x0.0   31.50  640 664 704 832  480 489 492 520 -hsync -vsync (37.9 kHz e)
[    51.892] (II) modeset(0): Modeline "640x480"x0.0   30.24  640 704 768 864  480 483 486 525 -hsync -vsync (35.0 kHz e)
[    51.892] (II) modeset(0): Modeline "720x400"x0.0   28.32  720 738 846 900  400 412 414 449 -hsync +vsync (31.5 kHz e)
[    51.892] (II) modeset(0): Modeline "1280x1024"x0.0  135.00  1280 1296 1440 1688  1024 1025 1028 1066 +hsync +vsync (80.0 kHz e)
[    51.892] (II) modeset(0): Modeline "1024x768"x0.0   78.75  1024 1040 1136 1312  768 769 772 800 +hsync +vsync (60.0 kHz e)
[    51.892] (II) modeset(0): Modeline "1024x768"x0.0   75.00  1024 1048 1184 1328  768 771 777 806 -hsync -vsync (56.5 kHz e)
[    51.892] (II) modeset(0): Modeline "1024x768"x0.0   65.00  1024 1048 1184 1344  768 771 777 806 -hsync -vsync (48.4 kHz e)
[    51.892] (II) modeset(0): Modeline "832x624"x0.0   57.28  832 864 928 1152  624 625 628 667 -hsync -vsync (49.7 kHz e)
[    51.892] (II) modeset(0): Modeline "800x600"x0.0   49.50  800 816 896 1056  600 601 604 625 +hsync +vsync (46.9 kHz e)
[    51.892] (II) modeset(0): Modeline "800x600"x0.0   50.00  800 856 976 1040  600 637 643 666 +hsync +vsync (48.1 kHz e)
[    51.892] (II) modeset(0): Modeline "1152x864"x0.0  108.00  1152 1216 1344 1600  864 865 868 900 +hsync +vsync (67.5 kHz e)
[    51.892] (II) modeset(0): Modeline "1280x1024"x0.0  108.00  1280 1328 1440 1688  1024 1025 1028 1066 +hsync +vsync (64.0 kHz e)
[    51.892] (II) modeset(0): Modeline "1280x960"x0.0  108.00  1280 1376 1488 1800  960 961 964 1000 +hsync +vsync (60.0 kHz e)
[    51.892] (II) modeset(0): Modeline "1440x900"x0.0   88.75  1440 1488 1520 1600  900 903 909 926 +hsync -vsync (55.5 kHz e)
[    51.892] (II) modeset(0): Modeline "1600x1200"x0.0  162.00  1600 1664 1856 2160  1200 1201 1204 1250 +hsync +vsync (75.0 kHz e)
[    51.892] (II) modeset(0): Modeline "1680x1050"x0.0  119.00  1680 1728 1760 1840  1050 1053 1059 1080 +hsync -vsync (64.7 kHz e)
[    51.892] (II) modeset(0): Modeline "1600x900"x60.0  119.00  1600 1696 1864 2128  900 901 904 932 -hsync +vsync (55.9 kHz e)
[   254.817] (EE) event9  - Logitech K540/K545: client bug: event processing lagging behind by 24ms, your system is too slow
[   256.456] (II) modeset(0): EDID vendor "CHD", prod id 576
[   256.457] (II) modeset(0): Using hsync ranges from config file
[   256.457] (II) modeset(0): Using vrefresh ranges from config file
[   256.457] (II) modeset(0): Printing DDC gathered Modelines:
[   256.457] (II) modeset(0): Modeline "1920x1080"x0.0  148.50  1920 2008 2052 2200  1080 1084 1089 1125 +hsync -vsync (67.5 kHz eP)
[   256.457] (II) modeset(0): Modeline "1920x1080"x0.0  138.50  1920 1968 2000 2080  1080 1083 1088 1110 +hsync -vsync (66.6 kHz e)
[   256.457] (II) modeset(0): Modeline "1366x768"x0.0   85.50  1366 1436 1579 1792  768 771 774 798 +hsync +vsync (47.7 kHz e)
[   256.457] (II) modeset(0): Modeline "1280x720"x0.0   74.25  1280 1390 1430 1650  720 725 730 750 +hsync +vsync (45.0 kHz e)
[   256.457] (II) modeset(0): Modeline "720x480"x0.0   27.00  720 736 798 858  480 489 495 525 -hsync -vsync (31.5 kHz e)
[   256.457] (II) modeset(0): Modeline "1280x768i"x0.0   79.50  1280 1328 1360 1664  768 771 778 798 interlace +hsync +vsync (47.8 kHz e)
[   256.457] (II) modeset(0): Modeline "1920x1080"x0.0  148.50  1920 2008 2052 2200  1080 1084 1089 1125 +hsync +vsync (67.5 kHz e)
[   256.457] (II) modeset(0): Modeline "1920x1080i"x0.0   74.25  1920 2008 2052 2200  1080 1084 1094 1125 interlace +hsync +vsync (33.8 kHz e)
[   256.457] (II) modeset(0): Modeline "640x480"x0.0   25.18  640 656 752 800  480 490 492 525 -hsync -vsync (31.5 kHz e)
[   256.457] (II) modeset(0): Modeline "720x576"x0.0   27.00  720 732 796 864  576 581 586 625 -hsync -vsync (31.2 kHz e)
[   256.457] (II) modeset(0): Modeline "1280x720"x0.0   74.25  1280 1720 1760 1980  720 725 730 750 +hsync +vsync (37.5 kHz e)
[   256.457] (II) modeset(0): Modeline "1920x1080i"x0.0   74.25  1920 2448 2492 2640  1080 1084 1094 1125 interlace +hsync +vsync (28.1 kHz e)
[   256.457] (II) modeset(0): Modeline "1920x1080"x0.0  148.50  1920 2448 2492 2640  1080 1084 1089 1125 +hsync +vsync (56.2 kHz e)
[   256.457] (II) modeset(0): Modeline "800x600"x0.0   40.00  800 840 968 1056  600 601 605 628 +hsync +vsync (37.9 kHz e)
[   256.457] (II) modeset(0): Modeline "800x600"x0.0   36.00  800 824 896 1024  600 601 603 625 +hsync +vsync (35.2 kHz e)
[   256.457] (II) modeset(0): Modeline "640x480"x0.0   31.50  640 656 720 840  480 481 484 500 -hsync -vsync (37.5 kHz e)
[   256.457] (II) modeset(0): Modeline "640x480"x0.0   31.50  640 664 704 832  480 489 492 520 -hsync -vsync (37.9 kHz e)
[   256.457] (II) modeset(0): Modeline "640x480"x0.0   30.24  640 704 768 864  480 483 486 525 -hsync -vsync (35.0 kHz e)
[   256.457] (II) modeset(0): Modeline "720x400"x0.0   28.32  720 738 846 900  400 412 414 449 -hsync +vsync (31.5 kHz e)
[   256.457] (II) modeset(0): Modeline "1280x1024"x0.0  135.00  1280 1296 1440 1688  1024 1025 1028 1066 +hsync +vsync (80.0 kHz e)
[   256.457] (II) modeset(0): Modeline "1024x768"x0.0   78.75  1024 1040 1136 1312  768 769 772 800 +hsync +vsync (60.0 kHz e)
[   256.457] (II) modeset(0): Modeline "1024x768"x0.0   75.00  1024 1048 1184 1328  768 771 777 806 -hsync -vsync (56.5 kHz e)
[   256.457] (II) modeset(0): Modeline "1024x768"x0.0   65.00  1024 1048 1184 1344  768 771 777 806 -hsync -vsync (48.4 kHz e)
[   256.457] (II) modeset(0): Modeline "832x624"x0.0   57.28  832 864 928 1152  624 625 628 667 -hsync -vsync (49.7 kHz e)
[   256.457] (II) modeset(0): Modeline "800x600"x0.0   49.50  800 816 896 1056  600 601 604 625 +hsync +vsync (46.9 kHz e)
[   256.457] (II) modeset(0): Modeline "800x600"x0.0   50.00  800 856 976 1040  600 637 643 666 +hsync +vsync (48.1 kHz e)
[   256.457] (II) modeset(0): Modeline "1152x864"x0.0  108.00  1152 1216 1344 1600  864 865 868 900 +hsync +vsync (67.5 kHz e)
[   256.457] (II) modeset(0): Modeline "1280x1024"x0.0  108.00  1280 1328 1440 1688  1024 1025 1028 1066 +hsync +vsync (64.0 kHz e)
[   256.457] (II) modeset(0): Modeline "1280x960"x0.0  108.00  1280 1376 1488 1800  960 961 964 1000 +hsync +vsync (60.0 kHz e)
[   256.457] (II) modeset(0): Modeline "1440x900"x0.0   88.75  1440 1488 1520 1600  900 903 909 926 +hsync -vsync (55.5 kHz e)
[   256.457] (II) modeset(0): Modeline "1600x1200"x0.0  162.00  1600 1664 1856 2160  1200 1201 1204 1250 +hsync +vsync (75.0 kHz e)
[   256.457] (II) modeset(0): Modeline "1680x1050"x0.0  119.00  1680 1728 1760 1840  1050 1053 1059 1080 +hsync -vsync (64.7 kHz e)
[   256.457] (II) modeset(0): Modeline "1600x900"x60.0  119.00  1600 1696 1864 2128  900 901 904 932 -hsync +vsync (55.9 kHz e)
[   256.523] (II) modeset(0): EDID vendor "CHD", prod id 576
[   256.523] (II) modeset(0): Using hsync ranges from config file
[   256.523] (II) modeset(0): Using vrefresh ranges from config file
[   256.523] (II) modeset(0): Printing DDC gathered Modelines:
[   256.523] (II) modeset(0): Modeline "1920x1080"x0.0  148.50  1920 2008 2052 2200  1080 1084 1089 1125 +hsync -vsync (67.5 kHz eP)
[   256.523] (II) modeset(0): Modeline "1920x1080"x0.0  138.50  1920 1968 2000 2080  1080 1083 1088 1110 +hsync -vsync (66.6 kHz e)
[   256.523] (II) modeset(0): Modeline "1366x768"x0.0   85.50  1366 1436 1579 1792  768 771 774 798 +hsync +vsync (47.7 kHz e)
[   256.523] (II) modeset(0): Modeline "1280x720"x0.0   74.25  1280 1390 1430 1650  720 725 730 750 +hsync +vsync (45.0 kHz e)
[   256.523] (II) modeset(0): Modeline "720x480"x0.0   27.00  720 736 798 858  480 489 495 525 -hsync -vsync (31.5 kHz e)
[   256.523] (II) modeset(0): Modeline "1280x768i"x0.0   79.50  1280 1328 1360 1664  768 771 778 798 interlace +hsync +vsync (47.8 kHz e)
[   256.523] (II) modeset(0): Modeline "1920x1080"x0.0  148.50  1920 2008 2052 2200  1080 1084 1089 1125 +hsync +vsync (67.5 kHz e)
[   256.523] (II) modeset(0): Modeline "1920x1080i"x0.0   74.25  1920 2008 2052 2200  1080 1084 1094 1125 interlace +hsync +vsync (33.8 kHz e)
[   256.523] (II) modeset(0): Modeline "640x480"x0.0   25.18  640 656 752 800  480 490 492 525 -hsync -vsync (31.5 kHz e)
[   256.523] (II) modeset(0): Modeline "720x576"x0.0   27.00  720 732 796 864  576 581 586 625 -hsync -vsync (31.2 kHz e)
[   256.523] (II) modeset(0): Modeline "1280x720"x0.0   74.25  1280 1720 1760 1980  720 725 730 750 +hsync +vsync (37.5 kHz e)
[   256.523] (II) modeset(0): Modeline "1920x1080i"x0.0   74.25  1920 2448 2492 2640  1080 1084 1094 1125 interlace +hsync +vsync (28.1 kHz e)
[   256.523] (II) modeset(0): Modeline "1920x1080"x0.0  148.50  1920 2448 2492 2640  1080 1084 1089 1125 +hsync +vsync (56.2 kHz e)
[   256.523] (II) modeset(0): Modeline "800x600"x0.0   40.00  800 840 968 1056  600 601 605 628 +hsync +vsync (37.9 kHz e)
[   256.523] (II) modeset(0): Modeline "800x600"x0.0   36.00  800 824 896 1024  600 601 603 625 +hsync +vsync (35.2 kHz e)
[   256.523] (II) modeset(0): Modeline "640x480"x0.0   31.50  640 656 720 840  480 481 484 500 -hsync -vsync (37.5 kHz e)
[   256.523] (II) modeset(0): Modeline "640x480"x0.0   31.50  640 664 704 832  480 489 492 520 -hsync -vsync (37.9 kHz e)
[   256.523] (II) modeset(0): Modeline "640x480"x0.0   30.24  640 704 768 864  480 483 486 525 -hsync -vsync (35.0 kHz e)
[   256.523] (II) modeset(0): Modeline "720x400"x0.0   28.32  720 738 846 900  400 412 414 449 -hsync +vsync (31.5 kHz e)
[   256.523] (II) modeset(0): Modeline "1280x1024"x0.0  135.00  1280 1296 1440 1688  1024 1025 1028 1066 +hsync +vsync (80.0 kHz e)
[   256.523] (II) modeset(0): Modeline "1024x768"x0.0   78.75  1024 1040 1136 1312  768 769 772 800 +hsync +vsync (60.0 kHz e)
[   256.523] (II) modeset(0): Modeline "1024x768"x0.0   75.00  1024 1048 1184 1328  768 771 777 806 -hsync -vsync (56.5 kHz e)
[   256.523] (II) modeset(0): Modeline "1024x768"x0.0   65.00  1024 1048 1184 1344  768 771 777 806 -hsync -vsync (48.4 kHz e)
[   256.523] (II) modeset(0): Modeline "832x624"x0.0   57.28  832 864 928 1152  624 625 628 667 -hsync -vsync (49.7 kHz e)
[   256.523] (II) modeset(0): Modeline "800x600"x0.0   49.50  800 816 896 1056  600 601 604 625 +hsync +vsync (46.9 kHz e)
[   256.523] (II) modeset(0): Modeline "800x600"x0.0   50.00  800 856 976 1040  600 637 643 666 +hsync +vsync (48.1 kHz e)
[   256.523] (II) modeset(0): Modeline "1152x864"x0.0  108.00  1152 1216 1344 1600  864 865 868 900 +hsync +vsync (67.5 kHz e)
[   256.523] (II) modeset(0): Modeline "1280x1024"x0.0  108.00  1280 1328 1440 1688  1024 1025 1028 1066 +hsync +vsync (64.0 kHz e)
[   256.523] (II) modeset(0): Modeline "1280x960"x0.0  108.00  1280 1376 1488 1800  960 961 964 1000 +hsync +vsync (60.0 kHz e)
[   256.523] (II) modeset(0): Modeline "1440x900"x0.0   88.75  1440 1488 1520 1600  900 903 909 926 +hsync -vsync (55.5 kHz e)
[   256.523] (II) modeset(0): Modeline "1600x1200"x0.0  162.00  1600 1664 1856 2160  1200 1201 1204 1250 +hsync +vsync (75.0 kHz e)
[   256.523] (II) modeset(0): Modeline "1680x1050"x0.0  119.00  1680 1728 1760 1840  1050 1053 1059 1080 +hsync -vsync (64.7 kHz e)
[   256.523] (II) modeset(0): Modeline "1600x900"x60.0  119.00  1600 1696 1864 2128  900 901 904 932 -hsync +vsync (55.9 kHz e)
[   895.331] (II) modeset(0): EDID vendor "CHD", prod id 576
[   895.331] (II) modeset(0): Using hsync ranges from config file
[   895.331] (II) modeset(0): Using vrefresh ranges from config file
[   895.331] (II) modeset(0): Printing DDC gathered Modelines:
[   895.331] (II) modeset(0): Modeline "1920x1080"x0.0  148.50  1920 2008 2052 2200  1080 1084 1089 1125 +hsync -vsync (67.5 kHz eP)
[   895.331] (II) modeset(0): Modeline "1920x1080"x0.0  138.50  1920 1968 2000 2080  1080 1083 1088 1110 +hsync -vsync (66.6 kHz e)
[   895.331] (II) modeset(0): Modeline "1366x768"x0.0   85.50  1366 1436 1579 1792  768 771 774 798 +hsync +vsync (47.7 kHz e)
[   895.331] (II) modeset(0): Modeline "1280x720"x0.0   74.25  1280 1390 1430 1650  720 725 730 750 +hsync +vsync (45.0 kHz e)
[   895.331] (II) modeset(0): Modeline "720x480"x0.0   27.00  720 736 798 858  480 489 495 525 -hsync -vsync (31.5 kHz e)
[   895.331] (II) modeset(0): Modeline "1280x768i"x0.0   79.50  1280 1328 1360 1664  768 771 778 798 interlace +hsync +vsync (47.8 kHz e)
[   895.331] (II) modeset(0): Modeline "1920x1080"x0.0  148.50  1920 2008 2052 2200  1080 1084 1089 1125 +hsync +vsync (67.5 kHz e)
[   895.331] (II) modeset(0): Modeline "1920x1080i"x0.0   74.25  1920 2008 2052 2200  1080 1084 1094 1125 interlace +hsync +vsync (33.8 kHz e)
[   895.331] (II) modeset(0): Modeline "640x480"x0.0   25.18  640 656 752 800  480 490 492 525 -hsync -vsync (31.5 kHz e)
[   895.331] (II) modeset(0): Modeline "720x576"x0.0   27.00  720 732 796 864  576 581 586 625 -hsync -vsync (31.2 kHz e)
[   895.331] (II) modeset(0): Modeline "1280x720"x0.0   74.25  1280 1720 1760 1980  720 725 730 750 +hsync +vsync (37.5 kHz e)
[   895.331] (II) modeset(0): Modeline "1920x1080i"x0.0   74.25  1920 2448 2492 2640  1080 1084 1094 1125 interlace +hsync +vsync (28.1 kHz e)
[   895.332] (II) modeset(0): Modeline "1920x1080"x0.0  148.50  1920 2448 2492 2640  1080 1084 1089 1125 +hsync +vsync (56.2 kHz e)
[   895.332] (II) modeset(0): Modeline "800x600"x0.0   40.00  800 840 968 1056  600 601 605 628 +hsync +vsync (37.9 kHz e)
[   895.332] (II) modeset(0): Modeline "800x600"x0.0   36.00  800 824 896 1024  600 601 603 625 +hsync +vsync (35.2 kHz e)
[   895.332] (II) modeset(0): Modeline "640x480"x0.0   31.50  640 656 720 840  480 481 484 500 -hsync -vsync (37.5 kHz e)
[   895.332] (II) modeset(0): Modeline "640x480"x0.0   31.50  640 664 704 832  480 489 492 520 -hsync -vsync (37.9 kHz e)
[   895.332] (II) modeset(0): Modeline "640x480"x0.0   30.24  640 704 768 864  480 483 486 525 -hsync -vsync (35.0 kHz e)
[   895.332] (II) modeset(0): Modeline "720x400"x0.0   28.32  720 738 846 900  400 412 414 449 -hsync +vsync (31.5 kHz e)
[   895.332] (II) modeset(0): Modeline "1280x1024"x0.0  135.00  1280 1296 1440 1688  1024 1025 1028 1066 +hsync +vsync (80.0 kHz e)
[   895.332] (II) modeset(0): Modeline "1024x768"x0.0   78.75  1024 1040 1136 1312  768 769 772 800 +hsync +vsync (60.0 kHz e)
[   895.332] (II) modeset(0): Modeline "1024x768"x0.0   75.00  1024 1048 1184 1328  768 771 777 806 -hsync -vsync (56.5 kHz e)
[   895.332] (II) modeset(0): Modeline "1024x768"x0.0   65.00  1024 1048 1184 1344  768 771 777 806 -hsync -vsync (48.4 kHz e)
[   895.332] (II) modeset(0): Modeline "832x624"x0.0   57.28  832 864 928 1152  624 625 628 667 -hsync -vsync (49.7 kHz e)
[   895.332] (II) modeset(0): Modeline "800x600"x0.0   49.50  800 816 896 1056  600 601 604 625 +hsync +vsync (46.9 kHz e)
[   895.332] (II) modeset(0): Modeline "800x600"x0.0   50.00  800 856 976 1040  600 637 643 666 +hsync +vsync (48.1 kHz e)
[   895.332] (II) modeset(0): Modeline "1152x864"x0.0  108.00  1152 1216 1344 1600  864 865 868 900 +hsync +vsync (67.5 kHz e)
[   895.332] (II) modeset(0): Modeline "1280x1024"x0.0  108.00  1280 1328 1440 1688  1024 1025 1028 1066 +hsync +vsync (64.0 kHz e)
[   895.332] (II) modeset(0): Modeline "1280x960"x0.0  108.00  1280 1376 1488 1800  960 961 964 1000 +hsync +vsync (60.0 kHz e)
[   895.332] (II) modeset(0): Modeline "1440x900"x0.0   88.75  1440 1488 1520 1600  900 903 909 926 +hsync -vsync (55.5 kHz e)
[   895.332] (II) modeset(0): Modeline "1600x1200"x0.0  162.00  1600 1664 1856 2160  1200 1201 1204 1250 +hsync +vsync (75.0 kHz e)
[   895.332] (II) modeset(0): Modeline "1680x1050"x0.0  119.00  1680 1728 1760 1840  1050 1053 1059 1080 +hsync -vsync (64.7 kHz e)
[   895.332] (II) modeset(0): Modeline "1600x900"x60.0  119.00  1600 1696 1864 2128  900 901 904 932 -hsync +vsync (55.9 kHz e)
[   900.115] (II) modeset(0): Allocate new frame buffer 3840x1620 stride
[   905.403] (II) modeset(0): Allocate new frame buffer 3840x1080 stride
[   910.194] (II) modeset(0): Allocate new frame buffer 4800x1620 stride
[   914.011] (II) modeset(0): Allocate new frame buffer 3840x1080 stride
[   922.578] (II) modeset(0): Allocate new frame buffer 3647x1080 stride
[   929.030] (II) modeset(0): Allocate new frame buffer 3840x1080 stride
[   953.510] (II) modeset(0): Allocate new frame buffer 3647x1080 stride
[   961.141] (II) modeset(0): Allocate new frame buffer 3840x1080 stride
[   973.789] (II) modeset(0): Allocate new frame buffer 3456x1080 stride
[   982.386] (II) modeset(0): Allocate new frame buffer 3840x1080 stride
[   999.587] (II) modeset(0): Allocate new frame buffer 4032x1188 stride
[  1005.226] (II) modeset(0): Allocate new frame buffer 3840x1080 stride
[  1018.454] (II) modeset(0): Allocate new frame buffer 4224x1296 stride
[  1028.988] (II) modeset(0): Allocate new frame buffer 3840x1080 stride
[  1037.770] (II) modeset(0): Allocate new frame buffer 4032x1188 stride
[  1051.359] (II) modeset(0): Allocate new frame buffer 4224x1296 stride
[  1056.289] (II) modeset(0): Allocate new frame buffer 4415x1403 stride
[  1061.763] (II) modeset(0): Allocate new frame buffer 4607x1511 stride
[  1066.151] (II) modeset(0): Allocate new frame buffer 4800x1620 stride
[  1074.690] (II) modeset(0): Allocate new frame buffer 5184x1836 stride
[  1085.236] (EE) event9  - Logitech K540/K545: client bug: event processing lagging behind by 34ms, your system is too slow
[  1127.069] (II) modeset(0): Allocate new frame buffer 4415x1403 stride
[  1135.109] (II) modeset(0): Allocate new frame buffer 3840x1080 stride
[  1937.585] (EE) event9  - Logitech K540/K545: client bug: event processing lagging behind by 30ms, your system is too slow
[  2981.206] (EE) event9  - Logitech K540/K545: client bug: event processing lagging behind by 34ms, your system is too slow
[  3128.474] (EE) event9  - Logitech K540/K545: client bug: event processing lagging behind by 35ms, your system is too slow
[  3128.474] (EE) event9  - Logitech K540/K545: WARNING: log rate limit exceeded (5 msgs per 60min). Discarding future messages.

Offline

#14 2022-03-14 13:40:38

seth
Member
From: Won't reply 2 private help req
Registered: 2012-09-03
Posts: 77,275

Re: Ugly font rendering. Wrong dimensions detected by xdpyinfo and xrandr

Anyway, how should I change the DPI in this case?

seth wrote:

You've to specify it on the commandline otherwise, https://wiki.archlinux.org/title/Xorg#D … ze_and_DPI - or set it at runtime using xrandr.

The EDID has contradicting information on the display size

    DTD 1:  1920x1080   60.000000 Hz  16:9     67.500 kHz    148.500000 MHz (368 mm x 207 mm) <== false dimensions picked up from here
    DTD 2:  1920x1080   59.987872 Hz  16:9     66.587 kHz    138.500000 MHz (546 mm x 352 mm)
    DTD 3:  1366x768    59.789541 Hz 683:384   47.712 kHz     85.500000 MHz (546 mm x 352 mm)
    DTD 4:  1280x720    60.000000 Hz  16:9     45.000 kHz     74.250000 MHz (546 mm x 352 mm)
    DTD 5:   720x480    59.940060 Hz   3:2     31.469 kHz     27.000000 MHz (546 mm x 352 mm)
    DTD 6:  1280x1536i  59.832739 Hz   5:6     47.776 kHz     79.500000 MHz (546 mm x 352 mm)

but the DPI option and DisplaySize setting aren't even considered in that xorg log - did you restart X11 after editing the file?

Offline

#15 2022-03-14 13:45:17

liviubiur
Member
Registered: 2016-07-02
Posts: 22

Re: Ugly font rendering. Wrong dimensions detected by xdpyinfo and xrandr

Yes, I did it after the last change of the xorg monitor config file.
I'll do it again and I'll paste again the log.

Thank you very much for your help!

Here is the update with a the new log

[     4.606] 
X.Org X Server 1.21.1.3
X Protocol Version 11, Revision 0
[     4.606] Current Operating System: Linux archlaptop 5.16.14-arch1-1 #1 SMP PREEMPT Fri, 11 Mar 2022 17:40:36 +0000 x86_64
[     4.606] Kernel command line: BOOT_IMAGE=/boot/vmlinuz-linux root=UUID=3141e595-6fba-4fd7-8162-481ad13e7ac7 rw
[     4.606]  
[     4.606] Current version of pixman: 0.40.0
[     4.606] 	Before reporting problems, check http://wiki.x.org
	to make sure that you have the latest version.
[     4.606] Markers: (--) probed, (**) from config file, (==) default setting,
	(++) from command line, (!!) notice, (II) informational,
	(WW) warning, (EE) error, (NI) not implemented, (??) unknown.
[     4.606] (==) Log file: "/var/log/Xorg.0.log", Time: Mon Mar 14 14:46:43 2022
[     4.608] (==) Using config directory: "/etc/X11/xorg.conf.d"
[     4.608] (==) Using system config directory "/usr/share/X11/xorg.conf.d"
[     4.609] (==) No Layout section.  Using the first Screen section.
[     4.609] (==) No screen section available. Using defaults.
[     4.609] (**) |-->Screen "Default Screen Section" (0)
[     4.609] (**) |   |-->Monitor "<default monitor>"
[     4.609] (==) No monitor specified for screen "Default Screen Section".
	Using a default monitor configuration.
[     4.609] (==) Automatically adding devices
[     4.609] (==) Automatically enabling devices
[     4.609] (==) Automatically adding GPU devices
[     4.609] (==) Automatically binding GPU devices
[     4.609] (==) Max clients allowed: 256, resource mask: 0x1fffff
[     4.611] (WW) The directory "/usr/share/fonts/Type1" does not exist.
[     4.611] 	Entry deleted from font path.
[     4.611] (WW) The directory "/usr/share/fonts/100dpi" does not exist.
[     4.611] 	Entry deleted from font path.
[     4.611] (WW) The directory "/usr/share/fonts/75dpi" does not exist.
[     4.611] 	Entry deleted from font path.
[     4.611] (==) FontPath set to:
	/usr/share/fonts/misc,
	/usr/share/fonts/TTF,
	/usr/share/fonts/OTF
[     4.611] (==) ModulePath set to "/usr/lib/xorg/modules"
[     4.611] (II) The server relies on udev to provide the list of input devices.
	If no devices become available, reconfigure udev or disable AutoAddDevices.
[     4.611] (II) Module ABI versions:
[     4.611] 	X.Org ANSI C Emulation: 0.4
[     4.611] 	X.Org Video Driver: 25.2
[     4.611] 	X.Org XInput driver : 24.4
[     4.611] 	X.Org Server Extension : 10.0
[     4.612] (++) using VT number 7

[     4.612] (II) systemd-logind: logind integration requires -keeptty and -keeptty was not provided, disabling logind integration
[     4.613] (II) xfree86: Adding drm device (/dev/dri/card0)
[     4.613] (II) Platform probe for /sys/devices/pci0000:00/0000:00:02.0/drm/card0
[     4.631] (--) PCI:*(0@0:2:0) 8086:5917:1558:7a01 rev 7, Mem @ 0xde000000/16777216, 0xc0000000/268435456, I/O @ 0x0000f000/64, BIOS @ 0x????????/131072
[     4.631] (WW) Open ACPI failed (/var/run/acpid.socket) (No such file or directory)
[     4.631] (II) LoadModule: "glx"
[     4.632] (II) Loading /usr/lib/xorg/modules/extensions/libglx.so
[     4.638] (II) Module glx: vendor="X.Org Foundation"
[     4.638] 	compiled for 1.21.1.3, module version = 1.0.0
[     4.638] 	ABI class: X.Org Server Extension, version 10.0
[     4.638] (==) Matched intel as autoconfigured driver 0
[     4.638] (==) Matched modesetting as autoconfigured driver 1
[     4.638] (==) Matched fbdev as autoconfigured driver 2
[     4.638] (==) Matched vesa as autoconfigured driver 3
[     4.638] (==) Assigned the driver to the xf86ConfigLayout
[     4.638] (II) LoadModule: "intel"
[     4.640] (WW) Warning, couldn't open module intel
[     4.640] (EE) Failed to load module "intel" (module does not exist, 0)
[     4.640] (II) LoadModule: "modesetting"
[     4.640] (II) Loading /usr/lib/xorg/modules/drivers/modesetting_drv.so
[     4.642] (II) Module modesetting: vendor="X.Org Foundation"
[     4.642] 	compiled for 1.21.1.3, module version = 1.21.1
[     4.642] 	Module class: X.Org Video Driver
[     4.642] 	ABI class: X.Org Video Driver, version 25.2
[     4.642] (II) LoadModule: "fbdev"
[     4.642] (WW) Warning, couldn't open module fbdev
[     4.642] (EE) Failed to load module "fbdev" (module does not exist, 0)
[     4.642] (II) LoadModule: "vesa"
[     4.643] (WW) Warning, couldn't open module vesa
[     4.643] (EE) Failed to load module "vesa" (module does not exist, 0)
[     4.643] (II) modesetting: Driver for Modesetting Kernel Drivers: kms
[     4.678] (II) modeset(0): using drv /dev/dri/card0
[     4.678] (II) modeset(0): Creating default Display subsection in Screen section
	"Default Screen Section" for depth/fbbpp 24/32
[     4.678] (==) modeset(0): Depth 24, (==) framebuffer bpp 32
[     4.678] (==) modeset(0): RGB weight 888
[     4.678] (==) modeset(0): Default visual is TrueColor
[     4.678] (II) Loading sub module "glamoregl"
[     4.678] (II) LoadModule: "glamoregl"
[     4.678] (II) Loading /usr/lib/xorg/modules/libglamoregl.so
[     4.686] (II) Module glamoregl: vendor="X.Org Foundation"
[     4.686] 	compiled for 1.21.1.3, module version = 1.0.1
[     4.686] 	ABI class: X.Org ANSI C Emulation, version 0.4
[     4.849] (II) modeset(0): glamor X acceleration enabled on Mesa Intel(R) UHD Graphics 620 (KBL GT2)
[     4.849] (II) modeset(0): glamor initialized
[     4.849] (==) modeset(0): VariableRefresh: disabled
[     4.849] (==) modeset(0): AsyncFlipSecondaries: disabled
[     4.850] (II) modeset(0): Output eDP-1 using monitor section eDP-1
[     4.850] (II) modeset(0): Output DP-1 has no monitor section
[     4.854] (II) modeset(0): Output HDMI-1 has no monitor section
[     4.881] (II) modeset(0): Output HDMI-2 using monitor section HDMI-2
[     4.883] (II) modeset(0): EDID for output eDP-1
[     4.883] (II) modeset(0): Manufacturer: CMN  Model: 15c3  Serial#: 0
[     4.883] (II) modeset(0): Year: 2013  Week: 40
[     4.883] (II) modeset(0): EDID Version: 1.4
[     4.883] (II) modeset(0): Digital Display Input
[     4.883] (II) modeset(0): 6 bits per channel
[     4.883] (II) modeset(0): Digital interface is DisplayPort
[     4.883] (II) modeset(0): Max Image Size [cm]: horiz.: 34  vert.: 19
[     4.883] (II) modeset(0): Gamma: 2.20
[     4.883] (II) modeset(0): No DPMS capabilities specified
[     4.883] (II) modeset(0): Supported color encodings: RGB 4:4:4 
[     4.883] (II) modeset(0): First detailed timing is preferred mode
[     4.883] (II) modeset(0): Preferred mode is native pixel format and refresh rate
[     4.883] (II) modeset(0): redX: 0.620 redY: 0.335   greenX: 0.320 greenY: 0.584
[     4.883] (II) modeset(0): blueX: 0.160 blueY: 0.065   whiteX: 0.313 whiteY: 0.329
[     4.883] (II) modeset(0): Manufacturer's mask: 0
[     4.883] (II) modeset(0): Supported detailed timing:
[     4.883] (II) modeset(0): clock: 136.6 MHz   Image Size:  344 x 193 mm
[     4.883] (II) modeset(0): h_active: 1920  h_sync: 1964  h_sync_end 1992 h_blank_end 2070 h_border: 0
[     4.883] (II) modeset(0): v_active: 1080  v_sync: 1082  v_sync_end 1086 v_blanking: 1100 v_border: 0
[     4.883] (II) modeset(0):  N156HGE-EA2
[     4.883] (II) modeset(0):  CMN
[     4.883] (II) modeset(0):  N156HGE-EA2
[     4.883] (II) modeset(0): EDID (in hex):
[     4.883] (II) modeset(0): 	00ffffffffffff000daec31500000000
[     4.883] (II) modeset(0): 	281701049522137802f2359e55529529
[     4.883] (II) modeset(0): 	10505400000001010101010101010101
[     4.883] (II) modeset(0): 	0101010101015e358096703814402c1c
[     4.883] (II) modeset(0): 	240058c110000018000000fe004e3135
[     4.883] (II) modeset(0): 	364847452d4541320a20000000fe0043
[     4.883] (II) modeset(0): 	4d4e0a202020202020202020000000fe
[     4.883] (II) modeset(0): 	004e3135364847452d4541320a20000f
[     4.883] (II) modeset(0): Printing probed modes for output eDP-1
[     4.884] (II) modeset(0): Modeline "1920x1080"x60.0  136.62  1920 1964 1992 2070  1080 1082 1086 1100 -hsync -vsync (66.0 kHz eP)
[     4.884] (II) modeset(0): Modeline "1920x1080"x119.9  266.50  1920 1944 1960 2000  1080 1081 1084 1111 doublescan +hsync -vsync (133.2 kHz d)
[     4.884] (II) modeset(0): Modeline "1920x1080"x60.0  173.00  1920 2048 2248 2576  1080 1083 1088 1120 -hsync +vsync (67.2 kHz d)
[     4.884] (II) modeset(0): Modeline "1920x1080"x59.9  138.50  1920 1968 2000 2080  1080 1083 1088 1111 +hsync -vsync (66.6 kHz d)
[     4.884] (II) modeset(0): Modeline "1680x1050"x60.0  146.25  1680 1784 1960 2240  1050 1053 1059 1089 -hsync +vsync (65.3 kHz d)
[     4.884] (II) modeset(0): Modeline "1680x1050"x59.9  119.00  1680 1728 1760 1840  1050 1053 1059 1080 +hsync -vsync (64.7 kHz d)
[     4.884] (II) modeset(0): Modeline "1400x1050"x60.0  122.00  1400 1488 1640 1880  1050 1052 1064 1082 +hsync +vsync (64.9 kHz d)
[     4.884] (II) modeset(0): Modeline "1600x900"x120.0  246.00  1600 1728 1900 2200  900 901 904 932 doublescan -hsync +vsync (111.8 kHz d)
[     4.884] (II) modeset(0): Modeline "1600x900"x119.9  186.50  1600 1624 1640 1680  900 901 904 926 doublescan +hsync -vsync (111.0 kHz d)
[     4.884] (II) modeset(0): Modeline "1600x900"x59.9  118.25  1600 1696 1856 2112  900 903 908 934 -hsync +vsync (56.0 kHz d)
[     4.884] (II) modeset(0): Modeline "1600x900"x59.8   97.50  1600 1648 1680 1760  900 903 908 926 +hsync -vsync (55.4 kHz d)
[     4.884] (II) modeset(0): Modeline "1280x1024"x60.0  108.00  1280 1328 1440 1688  1024 1025 1028 1066 +hsync +vsync (64.0 kHz d)
[     4.884] (II) modeset(0): Modeline "1400x900"x60.0  103.50  1400 1480 1624 1848  900 903 913 934 -hsync +vsync (56.0 kHz d)
[     4.884] (II) modeset(0): Modeline "1400x900"x59.9   86.50  1400 1448 1480 1560  900 903 913 926 +hsync -vsync (55.4 kHz d)
[     4.884] (II) modeset(0): Modeline "1280x960"x60.0  108.00  1280 1376 1488 1800  960 961 964 1000 +hsync +vsync (60.0 kHz d)
[     4.884] (II) modeset(0): Modeline "1440x810"x120.0  198.12  1440 1548 1704 1968  810 811 814 839 doublescan -hsync +vsync (100.7 kHz d)
[     4.884] (II) modeset(0): Modeline "1440x810"x119.9  151.88  1440 1464 1480 1520  810 811 814 833 doublescan +hsync -vsync (99.9 kHz d)
[     4.884] (II) modeset(0): Modeline "1368x768"x59.9   85.25  1368 1440 1576 1784  768 771 781 798 -hsync +vsync (47.8 kHz d)
[     4.884] (II) modeset(0): Modeline "1368x768"x59.9   72.25  1368 1416 1448 1528  768 771 781 790 +hsync -vsync (47.3 kHz d)
[     4.884] (II) modeset(0): Modeline "1280x800"x120.0  174.25  1280 1380 1516 1752  800 801 804 829 doublescan -hsync +vsync (99.5 kHz d)
[     4.884] (II) modeset(0): Modeline "1280x800"x119.9  134.25  1280 1304 1320 1360  800 801 804 823 doublescan +hsync -vsync (98.7 kHz d)
[     4.884] (II) modeset(0): Modeline "1280x800"x59.8   83.50  1280 1352 1480 1680  800 803 809 831 -hsync +vsync (49.7 kHz d)
[     4.884] (II) modeset(0): Modeline "1280x800"x59.9   71.00  1280 1328 1360 1440  800 803 809 823 +hsync -vsync (49.3 kHz d)
[     4.884] (II) modeset(0): Modeline "1280x720"x120.0  156.12  1280 1376 1512 1744  720 721 724 746 doublescan -hsync +vsync (89.5 kHz d)
[     4.884] (II) modeset(0): Modeline "1280x720"x120.0  120.75  1280 1304 1320 1360  720 721 724 740 doublescan +hsync -vsync (88.8 kHz d)
[     4.884] (II) modeset(0): Modeline "1280x720"x59.9   74.50  1280 1344 1472 1664  720 723 728 748 -hsync +vsync (44.8 kHz d)
[     4.884] (II) modeset(0): Modeline "1280x720"x59.7   63.75  1280 1328 1360 1440  720 723 728 741 +hsync -vsync (44.3 kHz d)
[     4.884] (II) modeset(0): Modeline "1024x768"x120.1  133.47  1024 1100 1212 1400  768 768 770 794 doublescan -hsync +vsync (95.3 kHz d)
[     4.884] (II) modeset(0): Modeline "1024x768"x60.0   65.00  1024 1048 1184 1344  768 771 777 806 -hsync -vsync (48.4 kHz d)
[     4.884] (II) modeset(0): Modeline "960x720"x120.0  117.00  960 1024 1128 1300  720 720 722 750 doublescan -hsync +vsync (90.0 kHz d)
[     4.884] (II) modeset(0): Modeline "928x696"x120.1  109.15  928 976 1088 1264  696 696 698 719 doublescan -hsync +vsync (86.4 kHz d)
[     4.884] (II) modeset(0): Modeline "896x672"x120.0  102.40  896 960 1060 1224  672 672 674 697 doublescan -hsync +vsync (83.7 kHz d)
[     4.884] (II) modeset(0): Modeline "1024x576"x119.9   98.50  1024 1092 1200 1376  576 577 580 597 doublescan -hsync +vsync (71.6 kHz d)
[     4.884] (II) modeset(0): Modeline "1024x576"x119.9   78.38  1024 1048 1064 1104  576 577 580 592 doublescan +hsync -vsync (71.0 kHz d)
[     4.884] (II) modeset(0): Modeline "1024x576"x59.9   46.50  1024 1064 1160 1296  576 579 584 599 -hsync +vsync (35.9 kHz d)
[     4.884] (II) modeset(0): Modeline "1024x576"x59.8   42.00  1024 1072 1104 1184  576 579 584 593 +hsync -vsync (35.5 kHz d)
[     4.884] (II) modeset(0): Modeline "960x600"x119.9   96.62  960 1028 1128 1296  600 601 604 622 doublescan -hsync +vsync (74.6 kHz d)
[     4.884] (II) modeset(0): Modeline "960x600"x120.0   77.00  960 984 1000 1040  600 601 604 617 doublescan +hsync -vsync (74.0 kHz d)
[     4.884] (II) modeset(0): Modeline "960x540"x119.9   86.50  960 1024 1124 1288  540 541 544 560 doublescan -hsync +vsync (67.2 kHz d)
[     4.884] (II) modeset(0): Modeline "960x540"x120.0   69.25  960 984 1000 1040  540 541 544 555 doublescan +hsync -vsync (66.6 kHz d)
[     4.884] (II) modeset(0): Modeline "960x540"x59.6   40.75  960 992 1088 1216  540 543 548 562 -hsync +vsync (33.5 kHz d)
[     4.884] (II) modeset(0): Modeline "960x540"x59.8   37.25  960 1008 1040 1120  540 543 548 556 +hsync -vsync (33.3 kHz d)
[     4.884] (II) modeset(0): Modeline "800x600"x120.0   81.00  800 832 928 1080  600 600 602 625 doublescan +hsync +vsync (75.0 kHz d)
[     4.884] (II) modeset(0): Modeline "800x600"x60.3   40.00  800 840 968 1056  600 601 605 628 +hsync +vsync (37.9 kHz d)
[     4.884] (II) modeset(0): Modeline "800x600"x56.2   36.00  800 824 896 1024  600 601 603 625 +hsync +vsync (35.2 kHz d)
[     4.884] (II) modeset(0): Modeline "840x525"x120.0   73.12  840 892 980 1120  525 526 529 544 doublescan -hsync +vsync (65.3 kHz d)
[     4.884] (II) modeset(0): Modeline "840x525"x119.8   59.50  840 864 880 920  525 526 529 540 doublescan +hsync -vsync (64.7 kHz d)
[     4.884] (II) modeset(0): Modeline "864x486"x59.9   32.50  864 888 968 1072  486 489 494 506 -hsync +vsync (30.3 kHz d)
[     4.884] (II) modeset(0): Modeline "864x486"x59.6   30.50  864 912 944 1024  486 489 494 500 +hsync -vsync (29.8 kHz d)
[     4.884] (II) modeset(0): Modeline "700x525"x120.0   61.00  700 744 820 940  525 526 532 541 doublescan +hsync +vsync (64.9 kHz d)
[     4.884] (II) modeset(0): Modeline "800x450"x119.9   59.12  800 848 928 1056  450 451 454 467 doublescan -hsync +vsync (56.0 kHz d)
[     4.884] (II) modeset(0): Modeline "800x450"x119.6   48.75  800 824 840 880  450 451 454 463 doublescan +hsync -vsync (55.4 kHz d)
[     4.884] (II) modeset(0): Modeline "640x512"x120.0   54.00  640 664 720 844  512 512 514 533 doublescan +hsync +vsync (64.0 kHz d)
[     4.884] (II) modeset(0): Modeline "700x450"x119.9   51.75  700 740 812 924  450 451 456 467 doublescan -hsync +vsync (56.0 kHz d)
[     4.884] (II) modeset(0): Modeline "700x450"x119.8   43.25  700 724 740 780  450 451 456 463 doublescan +hsync -vsync (55.4 kHz d)
[     4.884] (II) modeset(0): Modeline "640x480"x120.0   54.00  640 688 744 900  480 480 482 500 doublescan +hsync +vsync (60.0 kHz d)
[     4.884] (II) modeset(0): Modeline "640x480"x59.9   25.18  640 656 752 800  480 490 492 525 -hsync -vsync (31.5 kHz d)
[     4.884] (II) modeset(0): Modeline "720x405"x59.5   22.50  720 744 808 896  405 408 413 422 -hsync +vsync (25.1 kHz d)
[     4.884] (II) modeset(0): Modeline "720x405"x59.0   21.75  720 768 800 880  405 408 413 419 +hsync -vsync (24.7 kHz d)
[     4.884] (II) modeset(0): Modeline "684x384"x119.8   42.62  684 720 788 892  384 385 390 399 doublescan -hsync +vsync (47.8 kHz d)
[     4.884] (II) modeset(0): Modeline "684x384"x119.7   36.12  684 708 724 764  384 385 390 395 doublescan +hsync -vsync (47.3 kHz d)
[     4.884] (II) modeset(0): Modeline "640x400"x119.8   41.75  640 676 740 840  400 401 404 415 doublescan -hsync +vsync (49.7 kHz d)
[     4.884] (II) modeset(0): Modeline "640x400"x120.0   35.50  640 664 680 720  400 401 404 411 doublescan +hsync -vsync (49.3 kHz d)
[     4.884] (II) modeset(0): Modeline "640x360"x119.7   37.25  640 672 736 832  360 361 364 374 doublescan -hsync +vsync (44.8 kHz d)
[     4.884] (II) modeset(0): Modeline "640x360"x119.7   31.88  640 664 680 720  360 361 364 370 doublescan +hsync -vsync (44.3 kHz d)
[     4.884] (II) modeset(0): Modeline "640x360"x59.8   18.00  640 664 720 800  360 363 368 376 -hsync +vsync (22.5 kHz d)
[     4.884] (II) modeset(0): Modeline "640x360"x59.3   17.75  640 688 720 800  360 363 368 374 +hsync -vsync (22.2 kHz d)
[     4.884] (II) modeset(0): Modeline "512x384"x120.0   32.50  512 524 592 672  384 385 388 403 doublescan -hsync -vsync (48.4 kHz d)
[     4.884] (II) modeset(0): Modeline "512x288"x120.0   23.25  512 532 580 648  288 289 292 299 doublescan -hsync +vsync (35.9 kHz d)
[     4.884] (II) modeset(0): Modeline "512x288"x119.8   21.00  512 536 552 592  288 289 292 296 doublescan +hsync -vsync (35.5 kHz d)
[     4.884] (II) modeset(0): Modeline "480x270"x119.3   20.38  480 496 544 608  270 271 274 281 doublescan -hsync +vsync (33.5 kHz d)
[     4.884] (II) modeset(0): Modeline "480x270"x119.6   18.62  480 504 520 560  270 271 274 278 doublescan +hsync -vsync (33.3 kHz d)
[     4.884] (II) modeset(0): Modeline "400x300"x120.6   20.00  400 420 484 528  300 300 302 314 doublescan +hsync +vsync (37.9 kHz d)
[     4.884] (II) modeset(0): Modeline "400x300"x112.7   18.00  400 412 448 512  300 300 301 312 doublescan +hsync +vsync (35.2 kHz d)
[     4.884] (II) modeset(0): Modeline "432x243"x119.8   16.25  432 444 484 536  243 244 247 253 doublescan -hsync +vsync (30.3 kHz d)
[     4.884] (II) modeset(0): Modeline "432x243"x119.1   15.25  432 456 472 512  243 244 247 250 doublescan +hsync -vsync (29.8 kHz d)
[     4.884] (II) modeset(0): Modeline "320x240"x120.1   12.59  320 328 376 400  240 245 246 262 doublescan -hsync -vsync (31.5 kHz d)
[     4.884] (II) modeset(0): Modeline "360x202"x119.0   11.25  360 372 404 448  202 204 206 211 doublescan -hsync +vsync (25.1 kHz d)
[     4.885] (II) modeset(0): Modeline "360x202"x118.3   10.88  360 384 400 440  202 204 206 209 doublescan +hsync -vsync (24.7 kHz d)
[     4.885] (II) modeset(0): Modeline "320x180"x119.7    9.00  320 332 360 400  180 181 184 188 doublescan -hsync +vsync (22.5 kHz d)
[     4.885] (II) modeset(0): Modeline "320x180"x118.6    8.88  320 344 360 400  180 181 184 187 doublescan +hsync -vsync (22.2 kHz d)
[     4.885] (II) modeset(0): EDID for output DP-1
[     4.888] (II) modeset(0): EDID for output HDMI-1
[     4.916] (II) modeset(0): EDID for output HDMI-2
[     4.916] (II) modeset(0): Manufacturer: CHD  Model: 240  Serial#: 1
[     4.916] (II) modeset(0): Year: 2019  Week: 12
[     4.916] (II) modeset(0): EDID Version: 1.3
[     4.916] (II) modeset(0): Digital Display Input
[     4.916] (II) modeset(0): Max Image Size [cm]: horiz.: 53  vert.: 29
[     4.916] (II) modeset(0): Gamma: 2.20
[     4.916] (II) modeset(0): DPMS capabilities: StandBy Suspend Off
[     4.916] (II) modeset(0): Supported color encodings: RGB 4:4:4 YCrCb 4:4:4 
[     4.916] (II) modeset(0): First detailed timing is preferred mode
[     4.916] (II) modeset(0): redX: 0.637 redY: 0.331   greenX: 0.304 greenY: 0.626
[     4.916] (II) modeset(0): blueX: 0.152 blueY: 0.071   whiteX: 0.313 whiteY: 0.329
[     4.916] (II) modeset(0): Supported established timings:
[     4.916] (II) modeset(0): 720x400@70Hz
[     4.916] (II) modeset(0): 640x480@60Hz
[     4.916] (II) modeset(0): 640x480@67Hz
[     4.916] (II) modeset(0): 640x480@72Hz
[     4.916] (II) modeset(0): 640x480@75Hz
[     4.916] (II) modeset(0): 800x600@56Hz
[     4.916] (II) modeset(0): 800x600@60Hz
[     4.916] (II) modeset(0): 800x600@72Hz
[     4.916] (II) modeset(0): 800x600@75Hz
[     4.916] (II) modeset(0): 832x624@75Hz
[     4.916] (II) modeset(0): 1024x768@60Hz
[     4.916] (II) modeset(0): 1024x768@70Hz
[     4.916] (II) modeset(0): 1024x768@75Hz
[     4.916] (II) modeset(0): 1280x1024@75Hz
[     4.916] (II) modeset(0): Manufacturer's mask: 0
[     4.916] (II) modeset(0): Supported standard timings:
[     4.916] (II) modeset(0): #0: hsize: 1152  vsize 864  refresh: 75  vid: 20337
[     4.916] (II) modeset(0): #1: hsize: 1280  vsize 1024  refresh: 60  vid: 32897
[     4.916] (II) modeset(0): #2: hsize: 1280  vsize 960  refresh: 60  vid: 16513
[     4.916] (II) modeset(0): #3: hsize: 1440  vsize 900  refresh: 60  vid: 149
[     4.916] (II) modeset(0): #4: hsize: 1600  vsize 1200  refresh: 60  vid: 16553
[     4.916] (II) modeset(0): #5: hsize: 1680  vsize 1050  refresh: 60  vid: 179
[     4.916] (II) modeset(0): #6: hsize: 1920  vsize 1080  refresh: 60  vid: 49361
[     4.916] (II) modeset(0): #7: hsize: 1600  vsize 900  refresh: 60  vid: 49321
[     4.916] (II) modeset(0): Supported detailed timing:
[     4.916] (II) modeset(0): clock: 148.5 MHz   Image Size:  368 x 207 mm
[     4.916] (II) modeset(0): h_active: 1920  h_sync: 2008  h_sync_end 2052 h_blank_end 2200 h_border: 0
[     4.916] (II) modeset(0): v_active: 1080  v_sync: 1084  v_sync_end 1089 v_blanking: 1125 v_border: 0
[     4.916] (II) modeset(0): Ranges: V min: 50 V max: 76 Hz, H min: 30 H max: 83 kHz, PixClock max 155 MHz
[     4.916] (II) modeset(0): Monitor name: PMO S240-IFC
[     4.916] (II) modeset(0): Serial No: 0101010101010
[     4.916] (II) modeset(0): Supported detailed timing:
[     4.916] (II) modeset(0): clock: 138.5 MHz   Image Size:  546 x 352 mm
[     4.916] (II) modeset(0): h_active: 1920  h_sync: 1968  h_sync_end 2000 h_blank_end 2080 h_border: 0
[     4.916] (II) modeset(0): v_active: 1080  v_sync: 1083  v_sync_end 1088 v_blanking: 1110 v_border: 0
[     4.916] (II) modeset(0): Supported detailed timing:
[     4.916] (II) modeset(0): clock: 85.5 MHz   Image Size:  546 x 352 mm
[     4.916] (II) modeset(0): h_active: 1366  h_sync: 1436  h_sync_end 1579 h_blank_end 1792 h_border: 0
[     4.916] (II) modeset(0): v_active: 768  v_sync: 771  v_sync_end 774 v_blanking: 798 v_border: 0
[     4.916] (II) modeset(0): Supported detailed timing:
[     4.916] (II) modeset(0): clock: 74.2 MHz   Image Size:  546 x 352 mm
[     4.916] (II) modeset(0): h_active: 1280  h_sync: 1390  h_sync_end 1430 h_blank_end 1650 h_border: 0
[     4.916] (II) modeset(0): v_active: 720  v_sync: 725  v_sync_end 730 v_blanking: 750 v_border: 0
[     4.916] (II) modeset(0): Supported detailed timing:
[     4.916] (II) modeset(0): clock: 27.0 MHz   Image Size:  546 x 352 mm
[     4.916] (II) modeset(0): h_active: 720  h_sync: 736  h_sync_end 798 h_blank_end 858 h_border: 0
[     4.916] (II) modeset(0): v_active: 480  v_sync: 489  v_sync_end 495 v_blanking: 525 v_border: 0
[     4.916] (II) modeset(0): Supported detailed timing:
[     4.916] (II) modeset(0): clock: 79.5 MHz   Image Size:  546 x 352 mm
[     4.916] (II) modeset(0): h_active: 1280  h_sync: 1328  h_sync_end 1360 h_blank_end 1664 h_border: 0
[     4.916] (II) modeset(0): v_active: 768  v_sync: 771  v_sync_end 778 v_blanking: 798 v_border: 0
[     4.916] (II) modeset(0): Number of EDID sections to follow: 1
[     4.916] (II) modeset(0): EDID (in hex):
[     4.916] (II) modeset(0): 	00ffffffffffff000d04400201000000
[     4.916] (II) modeset(0): 	0c1d010380351d78ea3d15a3544da027
[     4.916] (II) modeset(0): 	125054bfef00714f818081409500a940
[     4.916] (II) modeset(0): 	b300d1c0a9c0023a801871382d40582c
[     4.916] (II) modeset(0): 	450070cf1000001a000000fd00324c1e
[     4.916] (II) modeset(0): 	530f000a202020202020000000fc0050
[     4.916] (II) modeset(0): 	4d4f20533234302d4946430a000000ff
[     4.916] (II) modeset(0): 	00303130313031303130313031300192
[     4.916] (II) modeset(0): 	02031ef14b900504030201111213141f
[     4.916] (II) modeset(0): 	230907078301000065030c0010001a36
[     4.916] (II) modeset(0): 	80a070381e403020350022602100001a
[     4.916] (II) modeset(0): 	662156aa51001e30468f330022602100
[     4.916] (II) modeset(0): 	001e011d007251d01e206e2855002260
[     4.916] (II) modeset(0): 	2100001e8c0ad08a20e02d10103e9600
[     4.916] (II) modeset(0): 	2260210000180e1f008051001e303020
[     4.916] (II) modeset(0): 	370022602100009e0000000000000035
[     4.917] (II) modeset(0): Not using mode "1600x1200" (bad mode clock/interlace/doublescan)
[     4.917] (II) modeset(0): Printing probed modes for output HDMI-2
[     4.917] (II) modeset(0): Modeline "1920x1080"x60.0  148.50  1920 2008 2052 2200  1080 1084 1089 1125 +hsync -vsync (67.5 kHz eP)
[     4.917] (II) modeset(0): Modeline "1920x1080"x60.0  148.50  1920 2008 2052 2200  1080 1084 1089 1125 +hsync +vsync (67.5 kHz e)
[     4.917] (II) modeset(0): Modeline "1920x1080"x50.0  148.50  1920 2448 2492 2640  1080 1084 1089 1125 +hsync +vsync (56.2 kHz e)
[     4.917] (II) modeset(0): Modeline "1920x1080"x59.9  148.35  1920 2008 2052 2200  1080 1084 1089 1125 +hsync +vsync (67.4 kHz e)
[     4.917] (II) modeset(0): Modeline "1920x1080"x60.0  138.50  1920 1968 2000 2080  1080 1083 1088 1110 +hsync -vsync (66.6 kHz e)
[     4.917] (II) modeset(0): Modeline "1920x1080i"x60.0   74.25  1920 2008 2052 2200  1080 1084 1094 1125 interlace +hsync +vsync (33.8 kHz e)
[     4.917] (II) modeset(0): Modeline "1920x1080i"x50.0   74.25  1920 2448 2492 2640  1080 1084 1094 1125 interlace +hsync +vsync (28.1 kHz e)
[     4.917] (II) modeset(0): Modeline "1920x1080i"x59.9   74.18  1920 2008 2052 2200  1080 1084 1094 1125 interlace +hsync +vsync (33.7 kHz e)
[     4.917] (II) modeset(0): Modeline "1680x1050"x59.9  119.00  1680 1728 1760 1840  1050 1053 1059 1080 +hsync -vsync (64.7 kHz e)
[     4.917] (II) modeset(0): Modeline "1600x900"x60.0  108.00  1600 1624 1704 1800  900 901 904 1000 +hsync +vsync (60.0 kHz e)
[     4.917] (II) modeset(0): Modeline "1280x1024"x75.0  135.00  1280 1296 1440 1688  1024 1025 1028 1066 +hsync +vsync (80.0 kHz e)
[     4.917] (II) modeset(0): Modeline "1280x1024"x60.0  108.00  1280 1328 1440 1688  1024 1025 1028 1066 +hsync +vsync (64.0 kHz e)
[     4.917] (II) modeset(0): Modeline "1440x900"x59.9   88.75  1440 1488 1520 1600  900 903 909 926 +hsync -vsync (55.5 kHz e)
[     4.917] (II) modeset(0): Modeline "1280x960"x60.0  108.00  1280 1376 1488 1800  960 961 964 1000 +hsync +vsync (60.0 kHz e)
[     4.917] (II) modeset(0): Modeline "1366x768"x59.8   85.50  1366 1436 1579 1792  768 771 774 798 +hsync +vsync (47.7 kHz e)
[     4.917] (II) modeset(0): Modeline "1152x864"x75.0  108.00  1152 1216 1344 1600  864 865 868 900 +hsync +vsync (67.5 kHz e)
[     4.917] (II) modeset(0): Modeline "1280x768i"x119.7   79.50  1280 1328 1360 1664  768 771 778 798 interlace +hsync +vsync (47.8 kHz e)
[     4.917] (II) modeset(0): Modeline "1280x720"x60.0   74.25  1280 1390 1430 1650  720 725 730 750 +hsync +vsync (45.0 kHz e)
[     4.917] (II) modeset(0): Modeline "1280x720"x50.0   74.25  1280 1720 1760 1980  720 725 730 750 +hsync +vsync (37.5 kHz e)
[     4.917] (II) modeset(0): Modeline "1280x720"x59.9   74.18  1280 1390 1430 1650  720 725 730 750 +hsync +vsync (45.0 kHz e)
[     4.917] (II) modeset(0): Modeline "1024x768"x75.0   78.75  1024 1040 1136 1312  768 769 772 800 +hsync +vsync (60.0 kHz e)
[     4.917] (II) modeset(0): Modeline "1024x768"x70.1   75.00  1024 1048 1184 1328  768 771 777 806 -hsync -vsync (56.5 kHz e)
[     4.917] (II) modeset(0): Modeline "1024x768"x60.0   65.00  1024 1048 1184 1344  768 771 777 806 -hsync -vsync (48.4 kHz e)
[     4.917] (II) modeset(0): Modeline "832x624"x74.6   57.28  832 864 928 1152  624 625 628 667 -hsync -vsync (49.7 kHz e)
[     4.917] (II) modeset(0): Modeline "800x600"x72.2   50.00  800 856 976 1040  600 637 643 666 +hsync +vsync (48.1 kHz e)
[     4.917] (II) modeset(0): Modeline "800x600"x75.0   49.50  800 816 896 1056  600 601 604 625 +hsync +vsync (46.9 kHz e)
[     4.917] (II) modeset(0): Modeline "800x600"x60.3   40.00  800 840 968 1056  600 601 605 628 +hsync +vsync (37.9 kHz e)
[     4.917] (II) modeset(0): Modeline "800x600"x56.2   36.00  800 824 896 1024  600 601 603 625 +hsync +vsync (35.2 kHz e)
[     4.917] (II) modeset(0): Modeline "720x576"x50.0   27.00  720 732 796 864  576 581 586 625 -hsync -vsync (31.2 kHz e)
[     4.917] (II) modeset(0): Modeline "720x480"x60.0   27.03  720 736 798 858  480 489 495 525 -hsync -vsync (31.5 kHz e)
[     4.917] (II) modeset(0): Modeline "720x480"x59.9   27.00  720 736 798 858  480 489 495 525 -hsync -vsync (31.5 kHz e)
[     4.917] (II) modeset(0): Modeline "640x480"x75.0   31.50  640 656 720 840  480 481 484 500 -hsync -vsync (37.5 kHz e)
[     4.917] (II) modeset(0): Modeline "640x480"x72.8   31.50  640 664 704 832  480 489 492 520 -hsync -vsync (37.9 kHz e)
[     4.917] (II) modeset(0): Modeline "640x480"x66.7   30.24  640 704 768 864  480 483 486 525 -hsync -vsync (35.0 kHz e)
[     4.917] (II) modeset(0): Modeline "640x480"x60.0   25.20  640 656 752 800  480 490 492 525 -hsync -vsync (31.5 kHz e)
[     4.917] (II) modeset(0): Modeline "640x480"x59.9   25.18  640 656 752 800  480 490 492 525 -hsync -vsync (31.5 kHz e)
[     4.917] (II) modeset(0): Modeline "720x400"x70.1   28.32  720 738 846 900  400 412 414 449 -hsync +vsync (31.5 kHz e)
[     4.917] (II) modeset(0): Output eDP-1 connected
[     4.917] (II) modeset(0): Output DP-1 disconnected
[     4.917] (II) modeset(0): Output HDMI-1 disconnected
[     4.917] (II) modeset(0): Output HDMI-2 connected
[     4.917] (II) modeset(0): Using spanning desktop for initial modes
[     4.917] (II) modeset(0): Output eDP-1 using initial mode 1920x1080 +0+0
[     4.917] (II) modeset(0): Output HDMI-2 using initial mode 1920x1080 +1920+0
[     4.917] (==) modeset(0): Using gamma correction (1.0, 1.0, 1.0)
[     4.917] (==) modeset(0): DPI set to (96, 96)
[     4.917] (II) Loading sub module "fb"
[     4.917] (II) LoadModule: "fb"
[     4.917] (II) Module "fb" already built-in
[     4.948] (==) modeset(0): Backing store enabled
[     4.948] (==) modeset(0): Silken mouse enabled
[     5.162] (II) modeset(0): Initializing kms color map for depth 24, 8 bpc.
[     5.162] (==) modeset(0): DPMS enabled
[     5.162] (II) modeset(0): [DRI2] Setup complete
[     5.162] (II) modeset(0): [DRI2]   DRI driver: iris
[     5.162] (II) modeset(0): [DRI2]   VDPAU driver: va_gl
[     5.162] (II) Initializing extension Generic Event Extension
[     5.163] (II) Initializing extension SHAPE
[     5.163] (II) Initializing extension MIT-SHM
[     5.163] (II) Initializing extension XInputExtension
[     5.164] (II) Initializing extension XTEST
[     5.164] (II) Initializing extension BIG-REQUESTS
[     5.165] (II) Initializing extension SYNC
[     5.165] (II) Initializing extension XKEYBOARD
[     5.165] (II) Initializing extension XC-MISC
[     5.166] (II) Initializing extension SECURITY
[     5.166] (II) Initializing extension XFIXES
[     5.166] (II) Initializing extension RENDER
[     5.167] (II) Initializing extension RANDR
[     5.167] (II) Initializing extension COMPOSITE
[     5.168] (II) Initializing extension DAMAGE
[     5.168] (II) Initializing extension MIT-SCREEN-SAVER
[     5.168] (II) Initializing extension DOUBLE-BUFFER
[     5.169] (II) Initializing extension RECORD
[     5.169] (II) Initializing extension DPMS
[     5.169] (II) Initializing extension Present
[     5.169] (II) Initializing extension DRI3
[     5.170] (II) Initializing extension X-Resource
[     5.170] (II) Initializing extension XVideo
[     5.170] (II) Initializing extension XVideo-MotionCompensation
[     5.170] (II) Initializing extension GLX
[     5.194] (II) AIGLX: Loaded and initialized iris
[     5.194] (II) GLX: Initialized DRI2 GL provider for screen 0
[     5.194] (II) Initializing extension XFree86-VidModeExtension
[     5.194] (II) Initializing extension XFree86-DGA
[     5.194] (II) Initializing extension XFree86-DRI
[     5.194] (II) Initializing extension DRI2
[     5.196] (II) modeset(0): Damage tracking initialized
[     5.196] (II) modeset(0): Setting screen physical size to 531 x 300
[     5.260] (II) config/udev: Adding input device Power Button (/dev/input/event3)
[     5.260] (**) Power Button: Applying InputClass "libinput keyboard catchall"
[     5.260] (**) Power Button: Applying InputClass "system-keyboard"
[     5.260] (**) Power Button: Applying InputClass "system-keyboard"
[     5.260] (II) LoadModule: "libinput"
[     5.260] (II) Loading /usr/lib/xorg/modules/input/libinput_drv.so
[     5.262] (II) Module libinput: vendor="X.Org Foundation"
[     5.262] 	compiled for 1.21.1.3, module version = 1.2.1
[     5.262] 	Module class: X.Org XInput Driver
[     5.262] 	ABI class: X.Org XInput driver, version 24.4
[     5.262] (II) Using input driver 'libinput' for 'Power Button'
[     5.262] (**) Power Button: always reports core events
[     5.262] (**) Option "Device" "/dev/input/event3"
[     5.268] (II) event3  - Power Button: is tagged by udev as: Keyboard
[     5.268] (II) event3  - Power Button: device is a keyboard
[     5.268] (II) event3  - Power Button: device removed
[     5.314] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/LNXPWRBN:00/input/input3/event3"
[     5.315] (II) XINPUT: Adding extended input device "Power Button" (type: KEYBOARD, id 6)
[     5.315] (**) Option "xkb_model" "pc105"
[     5.315] (**) Option "xkb_layout" "ro"
[     5.315] (**) Option "xkb_variant" "cedilla,,,"
[     5.367] (II) event3  - Power Button: is tagged by udev as: Keyboard
[     5.367] (II) event3  - Power Button: device is a keyboard
[     5.368] (II) config/udev: Adding input device Video Bus (/dev/input/event11)
[     5.368] (**) Video Bus: Applying InputClass "libinput keyboard catchall"
[     5.368] (**) Video Bus: Applying InputClass "system-keyboard"
[     5.368] (**) Video Bus: Applying InputClass "system-keyboard"
[     5.368] (II) Using input driver 'libinput' for 'Video Bus'
[     5.368] (**) Video Bus: always reports core events
[     5.368] (**) Option "Device" "/dev/input/event11"
[     5.369] (II) event11 - Video Bus: is tagged by udev as: Keyboard
[     5.369] (II) event11 - Video Bus: device is a keyboard
[     5.369] (II) event11 - Video Bus: device removed
[     5.445] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/LNXVIDEO:00/input/input18/event11"
[     5.445] (II) XINPUT: Adding extended input device "Video Bus" (type: KEYBOARD, id 7)
[     5.445] (**) Option "xkb_model" "pc105"
[     5.445] (**) Option "xkb_layout" "ro"
[     5.445] (**) Option "xkb_variant" "cedilla,,,"
[     5.448] (II) event11 - Video Bus: is tagged by udev as: Keyboard
[     5.448] (II) event11 - Video Bus: device is a keyboard
[     5.450] (II) config/udev: Adding input device Power Button (/dev/input/event0)
[     5.450] (**) Power Button: Applying InputClass "libinput keyboard catchall"
[     5.450] (**) Power Button: Applying InputClass "system-keyboard"
[     5.450] (**) Power Button: Applying InputClass "system-keyboard"
[     5.450] (II) Using input driver 'libinput' for 'Power Button'
[     5.450] (**) Power Button: always reports core events
[     5.450] (**) Option "Device" "/dev/input/event0"
[     5.452] (II) event0  - Power Button: is tagged by udev as: Keyboard
[     5.452] (II) event0  - Power Button: device is a keyboard
[     5.453] (II) event0  - Power Button: device removed
[     5.488] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input0/event0"
[     5.488] (II) XINPUT: Adding extended input device "Power Button" (type: KEYBOARD, id 8)
[     5.488] (**) Option "xkb_model" "pc105"
[     5.488] (**) Option "xkb_layout" "ro"
[     5.488] (**) Option "xkb_variant" "cedilla,,,"
[     5.491] (II) event0  - Power Button: is tagged by udev as: Keyboard
[     5.491] (II) event0  - Power Button: device is a keyboard
[     5.493] (II) config/udev: Adding input device Lid Switch (/dev/input/event2)
[     5.493] (II) No input driver specified, ignoring this device.
[     5.493] (II) This device may have been added with another device file.
[     5.495] (II) config/udev: Adding input device Sleep Button (/dev/input/event1)
[     5.495] (**) Sleep Button: Applying InputClass "libinput keyboard catchall"
[     5.495] (**) Sleep Button: Applying InputClass "system-keyboard"
[     5.495] (**) Sleep Button: Applying InputClass "system-keyboard"
[     5.495] (II) Using input driver 'libinput' for 'Sleep Button'
[     5.495] (**) Sleep Button: always reports core events
[     5.495] (**) Option "Device" "/dev/input/event1"
[     5.497] (II) event1  - Sleep Button: is tagged by udev as: Keyboard
[     5.497] (II) event1  - Sleep Button: device is a keyboard
[     5.498] (II) event1  - Sleep Button: device removed
[     5.528] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0E:00/input/input1/event1"
[     5.528] (II) XINPUT: Adding extended input device "Sleep Button" (type: KEYBOARD, id 9)
[     5.528] (**) Option "xkb_model" "pc105"
[     5.528] (**) Option "xkb_layout" "ro"
[     5.528] (**) Option "xkb_variant" "cedilla,,,"
[     5.531] (II) event1  - Sleep Button: is tagged by udev as: Keyboard
[     5.531] (II) event1  - Sleep Button: device is a keyboard
[     5.535] (II) config/udev: Adding input device Chicony USB2.0 Camera: Chicony  (/dev/input/event12)
[     5.535] (**) Chicony USB2.0 Camera: Chicony : Applying InputClass "libinput keyboard catchall"
[     5.535] (**) Chicony USB2.0 Camera: Chicony : Applying InputClass "system-keyboard"
[     5.535] (**) Chicony USB2.0 Camera: Chicony : Applying InputClass "system-keyboard"
[     5.535] (II) Using input driver 'libinput' for 'Chicony USB2.0 Camera: Chicony '
[     5.535] (**) Chicony USB2.0 Camera: Chicony : always reports core events
[     5.535] (**) Option "Device" "/dev/input/event12"
[     5.538] (II) event12 - Chicony USB2.0 Camera: Chicony : is tagged by udev as: Keyboard
[     5.539] (II) event12 - Chicony USB2.0 Camera: Chicony : device is a keyboard
[     5.539] (II) event12 - Chicony USB2.0 Camera: Chicony : device removed
[     5.608] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:14.0/usb1/1-5/1-5:1.0/input/input19/event12"
[     5.608] (II) XINPUT: Adding extended input device "Chicony USB2.0 Camera: Chicony " (type: KEYBOARD, id 10)
[     5.608] (**) Option "xkb_model" "pc105"
[     5.608] (**) Option "xkb_layout" "ro"
[     5.608] (**) Option "xkb_variant" "cedilla,,,"
[     5.612] (II) event12 - Chicony USB2.0 Camera: Chicony : is tagged by udev as: Keyboard
[     5.612] (II) event12 - Chicony USB2.0 Camera: Chicony : device is a keyboard
[     5.615] (II) config/udev: Adding input device Logitech Wireless Mouse (/dev/input/event7)
[     5.615] (**) Logitech Wireless Mouse: Applying InputClass "libinput pointer catchall"
[     5.615] (II) Using input driver 'libinput' for 'Logitech Wireless Mouse'
[     5.615] (**) Logitech Wireless Mouse: always reports core events
[     5.615] (**) Option "Device" "/dev/input/event7"
[     5.620] (II) event7  - Logitech Wireless Mouse: is tagged by udev as: Mouse
[     5.620] (II) event7  - Logitech Wireless Mouse: device is a pointer
[     5.621] (II) event7  - Logitech Wireless Mouse: device removed
[     5.688] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:14.0/usb1/1-6/1-6:1.2/0003:046D:C52B.0003/0003:046D:4055.0004/input/input30/event7"
[     5.688] (II) XINPUT: Adding extended input device "Logitech Wireless Mouse" (type: MOUSE, id 11)
[     5.688] (**) Option "AccelerationScheme" "none"
[     5.688] (**) Logitech Wireless Mouse: (accel) selected scheme none/0
[     5.688] (**) Logitech Wireless Mouse: (accel) acceleration factor: 2.000
[     5.688] (**) Logitech Wireless Mouse: (accel) acceleration threshold: 4
[     5.693] (II) event7  - Logitech Wireless Mouse: is tagged by udev as: Mouse
[     5.694] (II) event7  - Logitech Wireless Mouse: device is a pointer
[     5.697] (II) config/udev: Adding input device Logitech Wireless Mouse (/dev/input/mouse1)
[     5.697] (II) No input driver specified, ignoring this device.
[     5.697] (II) This device may have been added with another device file.
[     5.699] (II) config/udev: Adding input device Logitech K540/K545 (/dev/input/event18)
[     5.699] (**) Logitech K540/K545: Applying InputClass "libinput keyboard catchall"
[     5.699] (**) Logitech K540/K545: Applying InputClass "system-keyboard"
[     5.699] (**) Logitech K540/K545: Applying InputClass "system-keyboard"
[     5.699] (II) Using input driver 'libinput' for 'Logitech K540/K545'
[     5.699] (**) Logitech K540/K545: always reports core events
[     5.699] (**) Option "Device" "/dev/input/event18"
[     5.704] (II) event18 - Logitech K540/K545: is tagged by udev as: Keyboard
[     5.704] (II) event18 - Logitech K540/K545: device is a keyboard
[     5.705] (II) event18 - Logitech K540/K545: device removed
[     5.741] (II) libinput: Logitech K540/K545: needs a virtual subdevice
[     5.742] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:14.0/usb1/1-6/1-6:1.2/0003:046D:C52B.0003/0003:046D:4076.0005/input/input38/event18"
[     5.742] (II) XINPUT: Adding extended input device "Logitech K540/K545" (type: MOUSE, id 12)
[     5.742] (**) Option "AccelerationScheme" "none"
[     5.742] (**) Logitech K540/K545: (accel) selected scheme none/0
[     5.742] (**) Logitech K540/K545: (accel) acceleration factor: 2.000
[     5.742] (**) Logitech K540/K545: (accel) acceleration threshold: 4
[     5.746] (II) event18 - Logitech K540/K545: is tagged by udev as: Keyboard
[     5.746] (II) event18 - Logitech K540/K545: device is a keyboard
[     5.747] (II) config/udev: Adding input device HDA Intel PCH Mic (/dev/input/event8)
[     5.747] (II) No input driver specified, ignoring this device.
[     5.747] (II) This device may have been added with another device file.
[     5.747] (II) config/udev: Adding input device HDA Intel PCH Front Headphone (/dev/input/event9)
[     5.747] (II) No input driver specified, ignoring this device.
[     5.747] (II) This device may have been added with another device file.
[     5.748] (II) config/udev: Adding input device HDA Intel PCH HDMI/DP,pcm=3 (/dev/input/event13)
[     5.748] (II) No input driver specified, ignoring this device.
[     5.748] (II) This device may have been added with another device file.
[     5.748] (II) config/udev: Adding input device HDA Intel PCH HDMI/DP,pcm=7 (/dev/input/event14)
[     5.748] (II) No input driver specified, ignoring this device.
[     5.748] (II) This device may have been added with another device file.
[     5.748] (II) config/udev: Adding input device HDA Intel PCH HDMI/DP,pcm=8 (/dev/input/event15)
[     5.748] (II) No input driver specified, ignoring this device.
[     5.749] (II) This device may have been added with another device file.
[     5.749] (II) config/udev: Adding input device HDA Intel PCH HDMI/DP,pcm=9 (/dev/input/event16)
[     5.749] (II) No input driver specified, ignoring this device.
[     5.749] (II) This device may have been added with another device file.
[     5.749] (II) config/udev: Adding input device HDA Intel PCH HDMI/DP,pcm=10 (/dev/input/event17)
[     5.749] (II) No input driver specified, ignoring this device.
[     5.749] (II) This device may have been added with another device file.
[     5.750] (II) config/udev: Adding input device Intel HID events (/dev/input/event5)
[     5.750] (**) Intel HID events: Applying InputClass "libinput keyboard catchall"
[     5.750] (**) Intel HID events: Applying InputClass "system-keyboard"
[     5.750] (**) Intel HID events: Applying InputClass "system-keyboard"
[     5.750] (II) Using input driver 'libinput' for 'Intel HID events'
[     5.750] (**) Intel HID events: always reports core events
[     5.750] (**) Option "Device" "/dev/input/event5"
[     5.750] (II) event5  - Intel HID events: is tagged by udev as: Keyboard
[     5.750] (II) event5  - Intel HID events: device is a keyboard
[     5.751] (II) event5  - Intel HID events: device removed
[     5.781] (**) Option "config_info" "udev:/sys/devices/platform/INT33D5:00/input/input9/event5"
[     5.781] (II) XINPUT: Adding extended input device "Intel HID events" (type: KEYBOARD, id 13)
[     5.781] (**) Option "xkb_model" "pc105"
[     5.781] (**) Option "xkb_layout" "ro"
[     5.781] (**) Option "xkb_variant" "cedilla,,,"
[     5.784] (II) event5  - Intel HID events: is tagged by udev as: Keyboard
[     5.784] (II) event5  - Intel HID events: device is a keyboard
[     5.786] (II) config/udev: Adding input device AT Translated Set 2 keyboard (/dev/input/event4)
[     5.786] (**) AT Translated Set 2 keyboard: Applying InputClass "libinput keyboard catchall"
[     5.786] (**) AT Translated Set 2 keyboard: Applying InputClass "system-keyboard"
[     5.786] (**) AT Translated Set 2 keyboard: Applying InputClass "system-keyboard"
[     5.786] (II) Using input driver 'libinput' for 'AT Translated Set 2 keyboard'
[     5.786] (**) AT Translated Set 2 keyboard: always reports core events
[     5.786] (**) Option "Device" "/dev/input/event4"
[     5.788] (II) event4  - AT Translated Set 2 keyboard: is tagged by udev as: Keyboard
[     5.789] (II) event4  - AT Translated Set 2 keyboard: device is a keyboard
[     5.791] (II) event4  - AT Translated Set 2 keyboard: device removed
[     5.834] (**) Option "config_info" "udev:/sys/devices/platform/i8042/serio0/input/input4/event4"
[     5.835] (II) XINPUT: Adding extended input device "AT Translated Set 2 keyboard" (type: KEYBOARD, id 14)
[     5.835] (**) Option "xkb_model" "pc105"
[     5.835] (**) Option "xkb_layout" "ro"
[     5.835] (**) Option "xkb_variant" "cedilla,,,"
[     5.838] (II) event4  - AT Translated Set 2 keyboard: is tagged by udev as: Keyboard
[     5.838] (II) event4  - AT Translated Set 2 keyboard: device is a keyboard
[     5.842] (II) config/udev: Adding input device SynPS/2 Synaptics TouchPad (/dev/input/event6)
[     5.842] (**) SynPS/2 Synaptics TouchPad: Applying InputClass "libinput touchpad catchall"
[     5.842] (**) SynPS/2 Synaptics TouchPad: Applying InputClass "touchpad catchall"
[     5.842] (**) SynPS/2 Synaptics TouchPad: Applying InputClass "Default clickpad buttons"
[     5.842] (II) LoadModule: "synaptics"
[     5.843] (II) Loading /usr/lib/xorg/modules/input/synaptics_drv.so
[     5.844] (II) Module synaptics: vendor="X.Org Foundation"
[     5.844] 	compiled for 1.21.1.1, module version = 1.9.1
[     5.844] 	Module class: X.Org XInput Driver
[     5.844] 	ABI class: X.Org XInput driver, version 24.4
[     5.844] (II) Using input driver 'synaptics' for 'SynPS/2 Synaptics TouchPad'
[     5.844] (**) SynPS/2 Synaptics TouchPad: always reports core events
[     5.844] (**) Option "Device" "/dev/input/event6"
[     5.901] (--) synaptics: SynPS/2 Synaptics TouchPad: x-axis range 1266 - 5674 (res 45)
[     5.901] (--) synaptics: SynPS/2 Synaptics TouchPad: y-axis range 1086 - 4764 (res 70)
[     5.901] (--) synaptics: SynPS/2 Synaptics TouchPad: pressure range 0 - 255
[     5.901] (--) synaptics: SynPS/2 Synaptics TouchPad: finger width range 0 - 15
[     5.901] (--) synaptics: SynPS/2 Synaptics TouchPad: buttons: left right double triple
[     5.901] (--) synaptics: SynPS/2 Synaptics TouchPad: Vendor 0x2 Product 0x7
[     5.901] (--) synaptics: SynPS/2 Synaptics TouchPad: touchpad found
[     5.901] (**) SynPS/2 Synaptics TouchPad: always reports core events
[     5.954] (**) Option "config_info" "udev:/sys/devices/platform/i8042/serio2/input/input16/event6"
[     5.954] (II) XINPUT: Adding extended input device "SynPS/2 Synaptics TouchPad" (type: TOUCHPAD, id 15)
[     5.955] (**) synaptics: SynPS/2 Synaptics TouchPad: (accel) MinSpeed is now constant deceleration 2.5
[     5.955] (**) synaptics: SynPS/2 Synaptics TouchPad: (accel) MaxSpeed is now 1.75
[     5.955] (**) synaptics: SynPS/2 Synaptics TouchPad: (accel) AccelFactor is now 0.035
[     5.955] (**) SynPS/2 Synaptics TouchPad: (accel) keeping acceleration scheme 1
[     5.955] (**) SynPS/2 Synaptics TouchPad: (accel) acceleration profile 1
[     5.955] (**) SynPS/2 Synaptics TouchPad: (accel) acceleration factor: 2.000
[     5.955] (**) SynPS/2 Synaptics TouchPad: (accel) acceleration threshold: 4
[     5.955] (--) synaptics: SynPS/2 Synaptics TouchPad: touchpad found
[     5.957] (II) config/udev: Adding input device SynPS/2 Synaptics TouchPad (/dev/input/mouse0)
[     5.957] (**) SynPS/2 Synaptics TouchPad: Ignoring device from InputClass "touchpad ignore duplicates"
[     5.958] (II) config/udev: Adding input device PC Speaker (/dev/input/event10)
[     5.958] (II) No input driver specified, ignoring this device.
[     5.958] (II) This device may have been added with another device file.
[     5.995] (**) Logitech K540/K545: Applying InputClass "libinput keyboard catchall"
[     5.995] (**) Logitech K540/K545: Applying InputClass "system-keyboard"
[     5.995] (**) Logitech K540/K545: Applying InputClass "system-keyboard"
[     5.995] (II) Using input driver 'libinput' for 'Logitech K540/K545'
[     5.995] (**) Logitech K540/K545: always reports core events
[     5.995] (**) Option "Device" "/dev/input/event18"
[     5.995] (II) libinput: Logitech K540/K545: is a virtual subdevice
[     5.996] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:14.0/usb1/1-6/1-6:1.2/0003:046D:C52B.0003/0003:046D:4076.0005/input/input38/event18"
[     5.996] (II) XINPUT: Adding extended input device "Logitech K540/K545" (type: KEYBOARD, id 16)
[     5.996] (**) Option "xkb_model" "pc105"
[     5.996] (**) Option "xkb_layout" "ro"
[     5.996] (**) Option "xkb_variant" "cedilla,,,"
[     6.128] (II) config/udev: removing device SynPS/2 Synaptics TouchPad
[     6.168] (II) UnloadModule: "synaptics"
[     6.169] (II) config/udev: Adding input device SynPS/2 Synaptics TouchPad (/dev/input/event6)
[     6.169] (**) SynPS/2 Synaptics TouchPad: Applying InputClass "libinput touchpad catchall"
[     6.169] (**) SynPS/2 Synaptics TouchPad: Applying InputClass "touchpad catchall"
[     6.169] (**) SynPS/2 Synaptics TouchPad: Applying InputClass "Default clickpad buttons"
[     6.169] (II) Using input driver 'synaptics' for 'SynPS/2 Synaptics TouchPad'
[     6.169] (**) SynPS/2 Synaptics TouchPad: always reports core events
[     6.169] (**) Option "Device" "/dev/input/event6"
[     6.208] (--) synaptics: SynPS/2 Synaptics TouchPad: x-axis range 1266 - 5674 (res 45)
[     6.208] (--) synaptics: SynPS/2 Synaptics TouchPad: y-axis range 1086 - 4764 (res 70)
[     6.208] (--) synaptics: SynPS/2 Synaptics TouchPad: pressure range 0 - 255
[     6.208] (--) synaptics: SynPS/2 Synaptics TouchPad: finger width range 0 - 15
[     6.208] (--) synaptics: SynPS/2 Synaptics TouchPad: buttons: left right double triple
[     6.208] (--) synaptics: SynPS/2 Synaptics TouchPad: Vendor 0x2 Product 0x7
[     6.208] (--) synaptics: SynPS/2 Synaptics TouchPad: touchpad found
[     6.208] (**) SynPS/2 Synaptics TouchPad: always reports core events
[     6.261] (**) Option "config_info" "udev:/sys/devices/platform/i8042/serio2/input/input16/event6"
[     6.261] (II) XINPUT: Adding extended input device "SynPS/2 Synaptics TouchPad" (type: TOUCHPAD, id 15)
[     6.261] (**) synaptics: SynPS/2 Synaptics TouchPad: (accel) MinSpeed is now constant deceleration 2.5
[     6.261] (**) synaptics: SynPS/2 Synaptics TouchPad: (accel) MaxSpeed is now 1.75
[     6.261] (**) synaptics: SynPS/2 Synaptics TouchPad: (accel) AccelFactor is now 0.035
[     6.262] (**) SynPS/2 Synaptics TouchPad: (accel) keeping acceleration scheme 1
[     6.262] (**) SynPS/2 Synaptics TouchPad: (accel) acceleration profile 1
[     6.262] (**) SynPS/2 Synaptics TouchPad: (accel) acceleration factor: 2.000
[     6.262] (**) SynPS/2 Synaptics TouchPad: (accel) acceleration threshold: 4
[     6.262] (--) synaptics: SynPS/2 Synaptics TouchPad: touchpad found
[     6.263] (II) config/udev: Adding input device SynPS/2 Synaptics TouchPad (/dev/input/mouse0)
[     6.263] (**) SynPS/2 Synaptics TouchPad: Ignoring device from InputClass "touchpad ignore duplicates"
[     6.266] (II) config/udev: Adding input device HDA Intel PCH HDMI/DP,pcm=8 (/dev/input/event15)
[     6.266] (II) No input driver specified, ignoring this device.
[     6.266] (II) This device may have been added with another device file.
[     6.267] (II) config/udev: Adding input device HDA Intel PCH HDMI/DP,pcm=3 (/dev/input/event13)
[     6.267] (II) No input driver specified, ignoring this device.
[     6.267] (II) This device may have been added with another device file.
[     6.267] (II) config/udev: Adding input device HDA Intel PCH HDMI/DP,pcm=7 (/dev/input/event14)
[     6.267] (II) No input driver specified, ignoring this device.
[     6.267] (II) This device may have been added with another device file.
[     6.267] (II) config/udev: Adding input device HDA Intel PCH HDMI/DP,pcm=10 (/dev/input/event17)
[     6.267] (II) No input driver specified, ignoring this device.
[     6.267] (II) This device may have been added with another device file.
[     6.267] (II) config/udev: Adding input device HDA Intel PCH HDMI/DP,pcm=9 (/dev/input/event16)
[     6.267] (II) No input driver specified, ignoring this device.
[     6.267] (II) This device may have been added with another device file.
[     6.268] (II) config/udev: Adding input device HDA Intel PCH Front Headphone (/dev/input/event9)
[     6.268] (II) No input driver specified, ignoring this device.
[     6.268] (II) This device may have been added with another device file.
[     6.269] (II) config/udev: Adding input device Logitech Wireless Mouse (/dev/input/mouse1)
[     6.269] (II) No input driver specified, ignoring this device.
[     6.269] (II) This device may have been added with another device file.
[     6.269] (II) config/udev: Adding input device HDA Intel PCH Mic (/dev/input/event8)
[     6.269] (II) No input driver specified, ignoring this device.
[     6.269] (II) This device may have been added with another device file.
[     6.269] (II) config/udev: removing device Logitech Wireless Mouse
[     6.269] (II) event7  - Logitech Wireless Mouse: device removed
[     6.334] (II) UnloadModule: "libinput"
[     6.335] (II) config/udev: Adding input device Logitech Wireless Mouse (/dev/input/event7)
[     6.335] (**) Logitech Wireless Mouse: Applying InputClass "libinput pointer catchall"
[     6.335] (II) Using input driver 'libinput' for 'Logitech Wireless Mouse'
[     6.335] (**) Logitech Wireless Mouse: always reports core events
[     6.335] (**) Option "Device" "/dev/input/event7"
[     6.336] (II) event7  - Logitech Wireless Mouse: is tagged by udev as: Mouse
[     6.336] (II) event7  - Logitech Wireless Mouse: device is a pointer
[     6.337] (II) event7  - Logitech Wireless Mouse: device removed
[     6.394] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:14.0/usb1/1-6/1-6:1.2/0003:046D:C52B.0003/0003:046D:4055.0004/input/input30/event7"
[     6.394] (II) XINPUT: Adding extended input device "Logitech Wireless Mouse" (type: MOUSE, id 11)
[     6.394] (**) Option "AccelerationScheme" "none"
[     6.394] (**) Logitech Wireless Mouse: (accel) selected scheme none/0
[     6.394] (**) Logitech Wireless Mouse: (accel) acceleration factor: 2.000
[     6.394] (**) Logitech Wireless Mouse: (accel) acceleration threshold: 4
[     6.395] (II) event7  - Logitech Wireless Mouse: is tagged by udev as: Mouse
[     6.395] (II) event7  - Logitech Wireless Mouse: device is a pointer
[     6.396] (II) config/udev: removing device Logitech K540/K545
[     6.396] (II) UnloadModule: "libinput"
[     6.396] (II) config/udev: removing device Logitech K540/K545
[     6.396] (II) event18 - Logitech K540/K545: device removed
[     6.435] (II) UnloadModule: "libinput"
[     6.435] (II) config/udev: Adding input device Logitech K540/K545 (/dev/input/event18)
[     6.436] (**) Logitech K540/K545: Applying InputClass "libinput keyboard catchall"
[     6.436] (**) Logitech K540/K545: Applying InputClass "system-keyboard"
[     6.436] (**) Logitech K540/K545: Applying InputClass "system-keyboard"
[     6.436] (II) Using input driver 'libinput' for 'Logitech K540/K545'
[     6.436] (**) Logitech K540/K545: always reports core events
[     6.436] (**) Option "Device" "/dev/input/event18"
[     6.437] (II) event18 - Logitech K540/K545: is tagged by udev as: Keyboard
[     6.438] (II) event18 - Logitech K540/K545: device is a keyboard
[     6.438] (II) event18 - Logitech K540/K545: device removed
[     6.474] (II) libinput: Logitech K540/K545: needs a virtual subdevice
[     6.475] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:14.0/usb1/1-6/1-6:1.2/0003:046D:C52B.0003/0003:046D:4076.0005/input/input38/event18"
[     6.475] (II) XINPUT: Adding extended input device "Logitech K540/K545" (type: MOUSE, id 12)
[     6.475] (**) Option "AccelerationScheme" "none"
[     6.475] (**) Logitech K540/K545: (accel) selected scheme none/0
[     6.475] (**) Logitech K540/K545: (accel) acceleration factor: 2.000
[     6.475] (**) Logitech K540/K545: (accel) acceleration threshold: 4
[     6.479] (II) event18 - Logitech K540/K545: is tagged by udev as: Keyboard
[     6.480] (II) event18 - Logitech K540/K545: device is a keyboard
[     6.481] (**) Logitech K540/K545: Applying InputClass "libinput keyboard catchall"
[     6.481] (**) Logitech K540/K545: Applying InputClass "system-keyboard"
[     6.481] (**) Logitech K540/K545: Applying InputClass "system-keyboard"
[     6.481] (II) Using input driver 'libinput' for 'Logitech K540/K545'
[     6.481] (**) Logitech K540/K545: always reports core events
[     6.481] (**) Option "Device" "/dev/input/event18"
[     6.481] (II) libinput: Logitech K540/K545: is a virtual subdevice
[     6.481] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:14.0/usb1/1-6/1-6:1.2/0003:046D:C52B.0003/0003:046D:4076.0005/input/input38/event18"
[     6.481] (II) XINPUT: Adding extended input device "Logitech K540/K545" (type: KEYBOARD, id 16)
[     6.481] (**) Option "xkb_model" "pc105"
[     6.481] (**) Option "xkb_layout" "ro"
[     6.481] (**) Option "xkb_variant" "cedilla,,,"
[    12.244] (II) modeset(0): EDID vendor "CHD", prod id 576
[    12.244] (II) modeset(0): Using EDID range info for horizontal sync
[    12.244] (II) modeset(0): Using EDID range info for vertical refresh
[    12.244] (II) modeset(0): Printing DDC gathered Modelines:
[    12.244] (II) modeset(0): Modeline "1920x1080"x0.0  148.50  1920 2008 2052 2200  1080 1084 1089 1125 +hsync -vsync (67.5 kHz eP)
[    12.244] (II) modeset(0): Modeline "1920x1080"x0.0  138.50  1920 1968 2000 2080  1080 1083 1088 1110 +hsync -vsync (66.6 kHz e)
[    12.244] (II) modeset(0): Modeline "1366x768"x0.0   85.50  1366 1436 1579 1792  768 771 774 798 +hsync +vsync (47.7 kHz e)
[    12.244] (II) modeset(0): Modeline "1280x720"x0.0   74.25  1280 1390 1430 1650  720 725 730 750 +hsync +vsync (45.0 kHz e)
[    12.244] (II) modeset(0): Modeline "720x480"x0.0   27.00  720 736 798 858  480 489 495 525 -hsync -vsync (31.5 kHz e)
[    12.244] (II) modeset(0): Modeline "1280x768i"x0.0   79.50  1280 1328 1360 1664  768 771 778 798 interlace +hsync +vsync (47.8 kHz e)
[    12.244] (II) modeset(0): Modeline "1920x1080"x0.0  148.50  1920 2008 2052 2200  1080 1084 1089 1125 +hsync +vsync (67.5 kHz e)
[    12.244] (II) modeset(0): Modeline "1920x1080i"x0.0   74.25  1920 2008 2052 2200  1080 1084 1094 1125 interlace +hsync +vsync (33.8 kHz e)
[    12.244] (II) modeset(0): Modeline "640x480"x0.0   25.18  640 656 752 800  480 490 492 525 -hsync -vsync (31.5 kHz e)
[    12.244] (II) modeset(0): Modeline "720x576"x0.0   27.00  720 732 796 864  576 581 586 625 -hsync -vsync (31.2 kHz e)
[    12.244] (II) modeset(0): Modeline "1280x720"x0.0   74.25  1280 1720 1760 1980  720 725 730 750 +hsync +vsync (37.5 kHz e)
[    12.244] (II) modeset(0): Modeline "1920x1080i"x0.0   74.25  1920 2448 2492 2640  1080 1084 1094 1125 interlace +hsync +vsync (28.1 kHz e)
[    12.244] (II) modeset(0): Modeline "1920x1080"x0.0  148.50  1920 2448 2492 2640  1080 1084 1089 1125 +hsync +vsync (56.2 kHz e)
[    12.244] (II) modeset(0): Modeline "800x600"x0.0   40.00  800 840 968 1056  600 601 605 628 +hsync +vsync (37.9 kHz e)
[    12.244] (II) modeset(0): Modeline "800x600"x0.0   36.00  800 824 896 1024  600 601 603 625 +hsync +vsync (35.2 kHz e)
[    12.244] (II) modeset(0): Modeline "640x480"x0.0   31.50  640 656 720 840  480 481 484 500 -hsync -vsync (37.5 kHz e)
[    12.244] (II) modeset(0): Modeline "640x480"x0.0   31.50  640 664 704 832  480 489 492 520 -hsync -vsync (37.9 kHz e)
[    12.244] (II) modeset(0): Modeline "640x480"x0.0   30.24  640 704 768 864  480 483 486 525 -hsync -vsync (35.0 kHz e)
[    12.244] (II) modeset(0): Modeline "720x400"x0.0   28.32  720 738 846 900  400 412 414 449 -hsync +vsync (31.5 kHz e)
[    12.244] (II) modeset(0): Modeline "1280x1024"x0.0  135.00  1280 1296 1440 1688  1024 1025 1028 1066 +hsync +vsync (80.0 kHz e)
[    12.244] (II) modeset(0): Modeline "1024x768"x0.0   78.75  1024 1040 1136 1312  768 769 772 800 +hsync +vsync (60.0 kHz e)
[    12.244] (II) modeset(0): Modeline "1024x768"x0.0   75.00  1024 1048 1184 1328  768 771 777 806 -hsync -vsync (56.5 kHz e)
[    12.244] (II) modeset(0): Modeline "1024x768"x0.0   65.00  1024 1048 1184 1344  768 771 777 806 -hsync -vsync (48.4 kHz e)
[    12.244] (II) modeset(0): Modeline "832x624"x0.0   57.28  832 864 928 1152  624 625 628 667 -hsync -vsync (49.7 kHz e)
[    12.244] (II) modeset(0): Modeline "800x600"x0.0   49.50  800 816 896 1056  600 601 604 625 +hsync +vsync (46.9 kHz e)
[    12.244] (II) modeset(0): Modeline "800x600"x0.0   50.00  800 856 976 1040  600 637 643 666 +hsync +vsync (48.1 kHz e)
[    12.244] (II) modeset(0): Modeline "1152x864"x0.0  108.00  1152 1216 1344 1600  864 865 868 900 +hsync +vsync (67.5 kHz e)
[    12.244] (II) modeset(0): Modeline "1280x1024"x0.0  108.00  1280 1328 1440 1688  1024 1025 1028 1066 +hsync +vsync (64.0 kHz e)
[    12.244] (II) modeset(0): Modeline "1280x960"x0.0  108.00  1280 1376 1488 1800  960 961 964 1000 +hsync +vsync (60.0 kHz e)
[    12.244] (II) modeset(0): Modeline "1440x900"x0.0   88.75  1440 1488 1520 1600  900 903 909 926 +hsync -vsync (55.5 kHz e)
[    12.244] (II) modeset(0): Modeline "1600x1200"x0.0  162.00  1600 1664 1856 2160  1200 1201 1204 1250 +hsync +vsync (75.0 kHz e)
[    12.244] (II) modeset(0): Modeline "1680x1050"x0.0  119.00  1680 1728 1760 1840  1050 1053 1059 1080 +hsync -vsync (64.7 kHz e)
[    12.244] (II) modeset(0): Modeline "1600x900"x60.0  119.00  1600 1696 1864 2128  900 901 904 932 -hsync +vsync (55.9 kHz e)
[    51.347] (II) modeset(0): EDID vendor "CHD", prod id 576
[    51.347] (II) modeset(0): Using hsync ranges from config file
[    51.347] (II) modeset(0): Using vrefresh ranges from config file
[    51.347] (II) modeset(0): Printing DDC gathered Modelines:
[    51.347] (II) modeset(0): Modeline "1920x1080"x0.0  148.50  1920 2008 2052 2200  1080 1084 1089 1125 +hsync -vsync (67.5 kHz eP)
[    51.347] (II) modeset(0): Modeline "1920x1080"x0.0  138.50  1920 1968 2000 2080  1080 1083 1088 1110 +hsync -vsync (66.6 kHz e)
[    51.347] (II) modeset(0): Modeline "1366x768"x0.0   85.50  1366 1436 1579 1792  768 771 774 798 +hsync +vsync (47.7 kHz e)
[    51.347] (II) modeset(0): Modeline "1280x720"x0.0   74.25  1280 1390 1430 1650  720 725 730 750 +hsync +vsync (45.0 kHz e)
[    51.347] (II) modeset(0): Modeline "720x480"x0.0   27.00  720 736 798 858  480 489 495 525 -hsync -vsync (31.5 kHz e)
[    51.347] (II) modeset(0): Modeline "1280x768i"x0.0   79.50  1280 1328 1360 1664  768 771 778 798 interlace +hsync +vsync (47.8 kHz e)
[    51.348] (II) modeset(0): Modeline "1920x1080"x0.0  148.50  1920 2008 2052 2200  1080 1084 1089 1125 +hsync +vsync (67.5 kHz e)
[    51.348] (II) modeset(0): Modeline "1920x1080i"x0.0   74.25  1920 2008 2052 2200  1080 1084 1094 1125 interlace +hsync +vsync (33.8 kHz e)
[    51.348] (II) modeset(0): Modeline "640x480"x0.0   25.18  640 656 752 800  480 490 492 525 -hsync -vsync (31.5 kHz e)
[    51.348] (II) modeset(0): Modeline "720x576"x0.0   27.00  720 732 796 864  576 581 586 625 -hsync -vsync (31.2 kHz e)
[    51.348] (II) modeset(0): Modeline "1280x720"x0.0   74.25  1280 1720 1760 1980  720 725 730 750 +hsync +vsync (37.5 kHz e)
[    51.348] (II) modeset(0): Modeline "1920x1080i"x0.0   74.25  1920 2448 2492 2640  1080 1084 1094 1125 interlace +hsync +vsync (28.1 kHz e)
[    51.348] (II) modeset(0): Modeline "1920x1080"x0.0  148.50  1920 2448 2492 2640  1080 1084 1089 1125 +hsync +vsync (56.2 kHz e)
[    51.348] (II) modeset(0): Modeline "800x600"x0.0   40.00  800 840 968 1056  600 601 605 628 +hsync +vsync (37.9 kHz e)
[    51.348] (II) modeset(0): Modeline "800x600"x0.0   36.00  800 824 896 1024  600 601 603 625 +hsync +vsync (35.2 kHz e)
[    51.348] (II) modeset(0): Modeline "640x480"x0.0   31.50  640 656 720 840  480 481 484 500 -hsync -vsync (37.5 kHz e)
[    51.348] (II) modeset(0): Modeline "640x480"x0.0   31.50  640 664 704 832  480 489 492 520 -hsync -vsync (37.9 kHz e)
[    51.348] (II) modeset(0): Modeline "640x480"x0.0   30.24  640 704 768 864  480 483 486 525 -hsync -vsync (35.0 kHz e)
[    51.348] (II) modeset(0): Modeline "720x400"x0.0   28.32  720 738 846 900  400 412 414 449 -hsync +vsync (31.5 kHz e)
[    51.348] (II) modeset(0): Modeline "1280x1024"x0.0  135.00  1280 1296 1440 1688  1024 1025 1028 1066 +hsync +vsync (80.0 kHz e)
[    51.348] (II) modeset(0): Modeline "1024x768"x0.0   78.75  1024 1040 1136 1312  768 769 772 800 +hsync +vsync (60.0 kHz e)
[    51.348] (II) modeset(0): Modeline "1024x768"x0.0   75.00  1024 1048 1184 1328  768 771 777 806 -hsync -vsync (56.5 kHz e)
[    51.348] (II) modeset(0): Modeline "1024x768"x0.0   65.00  1024 1048 1184 1344  768 771 777 806 -hsync -vsync (48.4 kHz e)
[    51.348] (II) modeset(0): Modeline "832x624"x0.0   57.28  832 864 928 1152  624 625 628 667 -hsync -vsync (49.7 kHz e)
[    51.348] (II) modeset(0): Modeline "800x600"x0.0   49.50  800 816 896 1056  600 601 604 625 +hsync +vsync (46.9 kHz e)
[    51.348] (II) modeset(0): Modeline "800x600"x0.0   50.00  800 856 976 1040  600 637 643 666 +hsync +vsync (48.1 kHz e)
[    51.348] (II) modeset(0): Modeline "1152x864"x0.0  108.00  1152 1216 1344 1600  864 865 868 900 +hsync +vsync (67.5 kHz e)
[    51.348] (II) modeset(0): Modeline "1280x1024"x0.0  108.00  1280 1328 1440 1688  1024 1025 1028 1066 +hsync +vsync (64.0 kHz e)
[    51.348] (II) modeset(0): Modeline "1280x960"x0.0  108.00  1280 1376 1488 1800  960 961 964 1000 +hsync +vsync (60.0 kHz e)
[    51.348] (II) modeset(0): Modeline "1440x900"x0.0   88.75  1440 1488 1520 1600  900 903 909 926 +hsync -vsync (55.5 kHz e)
[    51.348] (II) modeset(0): Modeline "1600x1200"x0.0  162.00  1600 1664 1856 2160  1200 1201 1204 1250 +hsync +vsync (75.0 kHz e)
[    51.348] (II) modeset(0): Modeline "1680x1050"x0.0  119.00  1680 1728 1760 1840  1050 1053 1059 1080 +hsync -vsync (64.7 kHz e)
[    51.348] (II) modeset(0): Modeline "1600x900"x60.0  119.00  1600 1696 1864 2128  900 901 904 932 -hsync +vsync (55.9 kHz e)

Last edited by liviubiur (2022-03-14 13:48:26)

Offline

#16 2022-03-14 14:06:17

seth
Member
From: Won't reply 2 private help req
Registered: 2012-09-03
Posts: 77,275

Re: Ugly font rendering. Wrong dimensions detected by xdpyinfo and xrandr

Still no trace of the settings…
For the immediate problem it'll however be more relevant to simply set the DPI via Xorg -dpi or an xrandr call when setting up the session (as early as possible)

Offline

#17 2022-03-14 14:11:45

liviubiur
Member
Registered: 2016-07-02
Posts: 22

Re: Ugly font rendering. Wrong dimensions detected by xdpyinfo and xrandr

Hmm, I just pasted the log of /var/log/Xorg.0.log

Which logs should I paste?

Offline

#18 2022-03-14 14:17:32

seth
Member
From: Won't reply 2 private help req
Registered: 2012-09-03
Posts: 77,275

Re: Ugly font rendering. Wrong dimensions detected by xdpyinfo and xrandr

The log is fine, it just doesn't reflect the presence of /etc/X11/xorg.conf.d/90-monitor.conf

Offline

#19 2022-03-14 14:21:21

liviubiur
Member
Registered: 2016-07-02
Posts: 22

Re: Ugly font rendering. Wrong dimensions detected by xdpyinfo and xrandr

Ah I understood it now.

Meanwhile I changed the configuration of /etc/lightdm/lightdm.conf and set xserver-command=X -dpi 92 but still the default DPI is 96 x 96.

Offline

#20 2022-03-14 14:28:30

seth
Member
From: Won't reply 2 private help req
Registered: 2012-09-03
Posts: 77,275

Re: Ugly font rendering. Wrong dimensions detected by xdpyinfo and xrandr

Please post the lightdm.conf (there're multiple sections and if you altered the global one, but there's - probably - and explicit line in "[Seat:*]", your edit becomes meaningless.

Offline

#21 2022-03-14 14:34:01

liviubiur
Member
Registered: 2016-07-02
Posts: 22

Re: Ugly font rendering. Wrong dimensions detected by xdpyinfo and xrandr

Here is the configuration of the LightDM:

#
# General configuration
#
# start-default-seat = True to always start one seat if none are defined in the configuration
# greeter-user = User to run greeter as
# minimum-display-number = Minimum display number to use for X servers
# minimum-vt = First VT to run displays on
# lock-memory = True to prevent memory from being paged to disk
# user-authority-in-system-dir = True if session authority should be in the system location
# guest-account-script = Script to be run to setup guest account
# logind-check-graphical = True to on start seats that are marked as graphical by logind
# log-directory = Directory to log information to
# run-directory = Directory to put running state in
# cache-directory = Directory to cache to
# sessions-directory = Directory to find sessions
# remote-sessions-directory = Directory to find remote sessions
# greeters-directory = Directory to find greeters
# backup-logs = True to move add a .old suffix to old log files when opening new ones
# dbus-service = True if LightDM provides a D-Bus service to control it
#
[LightDM]
#start-default-seat=true
#greeter-user=lightdm
#minimum-display-number=0
#minimum-vt=7 # Setting this to a value < 7 implies security issues, see FS#46799
#lock-memory=true
#user-authority-in-system-dir=false
#guest-account-script=guest-account
#logind-check-graphical=false
#log-directory=/var/log/lightdm
run-directory=/run/lightdm
#cache-directory=/var/cache/lightdm
#sessions-directory=/usr/share/lightdm/sessions:/usr/share/xsessions:/usr/share/wayland-sessions
#remote-sessions-directory=/usr/share/lightdm/remote-sessions
#greeters-directory=$XDG_DATA_DIRS/lightdm/greeters:$XDG_DATA_DIRS/xgreeters
#backup-logs=true
#dbus-service=true

#
# Seat configuration
#
# Seat configuration is matched against the seat name glob in the section, for example:
# [Seat:*] matches all seats and is applied first.
# [Seat:seat0] matches the seat named "seat0".
# [Seat:seat-thin-client*] matches all seats that have names that start with "seat-thin-client".
#
# type = Seat type (local, xremote)
# pam-service = PAM service to use for login
# pam-autologin-service = PAM service to use for autologin
# pam-greeter-service = PAM service to use for greeters
# xserver-command = X server command to run (can also contain arguments e.g. X -special-option)
# xmir-command = Xmir server command to run (can also contain arguments e.g. Xmir -special-option)
# xserver-config = Config file to pass to X server
# xserver-layout = Layout to pass to X server
# xserver-allow-tcp = True if TCP/IP connections are allowed to this X server
# xserver-share = True if the X server is shared for both greeter and session
# xserver-hostname = Hostname of X server (only for type=xremote)
# xserver-display-number = Display number of X server (only for type=xremote)
# xdmcp-manager = XDMCP manager to connect to (implies xserver-allow-tcp=true)
# xdmcp-port = XDMCP UDP/IP port to communicate on
# xdmcp-key = Authentication key to use for XDM-AUTHENTICATION-1 (stored in keys.conf)
greeter-session = lightdm-gtk-greeter
# greeter-hide-users = True to hide the user list
# greeter-allow-guest = True if the greeter should show a guest login option
# greeter-show-manual-login = True if the greeter should offer a manual login option
# greeter-show-remote-login = True if the greeter should offer a remote login option
# user-session = Session to load for users
# allow-user-switching = True if allowed to switch users
# allow-guest = True if guest login is allowed
# guest-session = Session to load for guests (overrides user-session)
# session-wrapper = Wrapper script to run session with
# greeter-wrapper = Wrapper script to run greeter with
# guest-wrapper = Wrapper script to run guest sessions with
# display-setup-script = Script to run when starting a greeter session (runs as root)
# display-stopped-script = Script to run after stopping the display server (runs as root)
# greeter-setup-script = Script to run when starting a greeter (runs as root)
# session-setup-script = Script to run when starting a user session (runs as root)
# session-cleanup-script = Script to run when quitting a user session (runs as root)
# autologin-guest = True to log in as guest by default
# autologin-user = User to log in with by default (overrides autologin-guest)
# autologin-user-timeout = Number of seconds to wait before loading default user
# autologin-session = Session to load for automatic login (overrides user-session)
# autologin-in-background = True if autologin session should not be immediately activated
# exit-on-failure = True if the daemon should exit if this seat fails
#
[Seat:*]
#type=local
#pam-service=lightdm
#pam-autologin-service=lightdm-autologin
#pam-greeter-service=lightdm-greeter
xserver-command=X -dpi 92
#xmir-command=Xmir
#xserver-config=
#xserver-layout=
#xserver-allow-tcp=false
#xserver-share=true
#xserver-hostname=
#xserver-display-number=
#xdmcp-manager=
#xdmcp-port=177
#xdmcp-key=
#greeter-session=example-gtk-gnome
#greeter-hide-users=false
#greeter-allow-guest=true
#greeter-show-manual-login=false
#greeter-show-remote-login=true
#user-session=default
#allow-user-switching=true
#allow-guest=true
#guest-session=
session-wrapper=/etc/lightdm/Xsession
#greeter-wrapper=
#guest-wrapper=
#display-setup-script=
#display-stopped-script=
#greeter-setup-script=
#session-setup-script=
#session-cleanup-script=
#autologin-guest=false
#autologin-user=
#autologin-user-timeout=0
#autologin-in-background=false
#autologin-session=
#exit-on-failure=false

#
# XDMCP Server configuration
#
# enabled = True if XDMCP connections should be allowed
# port = UDP/IP port to listen for connections on
# listen-address = Host/address to listen for XDMCP connections (use all addresses if not present)
# key = Authentication key to use for XDM-AUTHENTICATION-1 or blank to not use authentication (stored in keys.conf)
# hostname = Hostname to report to XDMCP clients (defaults to system hostname if unset)
#
# The authentication key is a 56 bit DES key specified in hex as 0xnnnnnnnnnnnnnn.  Alternatively
# it can be a word and the first 7 characters are used as the key.
#
[XDMCPServer]
#enabled=false
#port=177
#listen-address=
#key=
#hostname=

#
# VNC Server configuration
#
# enabled = True if VNC connections should be allowed
# command = Command to run Xvnc server with
# port = TCP/IP port to listen for connections on
# listen-address = Host/address to listen for VNC connections (use all addresses if not present)
# width = Width of display to use
# height = Height of display to use
# depth = Color depth of display to use
#
[VNCServer]
#enabled=false
#command=Xvnc
#port=5900
#listen-address=
#width=1024
#height=768
#depth=8

Anyway I think this is the DPI for xrandr:

xrdb -query |grep dpi 
Xft.dpi:	92

Last edited by liviubiur (2022-03-14 14:36:11)

Offline

#22 2022-03-14 14:45:12

seth
Member
From: Won't reply 2 private help req
Registered: 2012-09-03
Posts: 77,275

Re: Ugly font rendering. Wrong dimensions detected by xdpyinfo and xrandr

Anyway I think this is the DPI for xrandr

No. That's a resource for xft, https://archlinux.org/packages/extra/x86_64/libxft/

I'm not sure as to why lightdm would ignore the setting (updated Xorg log?) but in order to use xrandr to update the DPI you'd add a greeter-setup-script or session-setup-script
Edit: or rather display-setup-script …

Last edited by seth (2022-03-14 14:45:50)

Offline

#23 2022-03-14 14:57:58

liviubiur
Member
Registered: 2016-07-02
Posts: 22

Re: Ugly font rendering. Wrong dimensions detected by xdpyinfo and xrandr

I'll check how to do it because I don't know right now. Thank you very much for your help! I learned new things.

I can see some changes in the log.

[     4.803] (++) modeset(0): DPI set to (92, 92)
[     4.521] 
X.Org X Server 1.21.1.3
X Protocol Version 11, Revision 0
[     4.521] Current Operating System: Linux archlaptop 5.16.14-arch1-1 #1 SMP PREEMPT Fri, 11 Mar 2022 17:40:36 +0000 x86_64
[     4.521] Kernel command line: BOOT_IMAGE=/boot/vmlinuz-linux root=UUID=3141e595-6fba-4fd7-8162-481ad13e7ac7 rw
[     4.521]  
[     4.521] Current version of pixman: 0.40.0
[     4.521] 	Before reporting problems, check http://wiki.x.org
	to make sure that you have the latest version.
[     4.521] Markers: (--) probed, (**) from config file, (==) default setting,
	(++) from command line, (!!) notice, (II) informational,
	(WW) warning, (EE) error, (NI) not implemented, (??) unknown.
[     4.521] (==) Log file: "/var/log/Xorg.0.log", Time: Mon Mar 14 15:16:17 2022
[     4.523] (==) Using config directory: "/etc/X11/xorg.conf.d"
[     4.523] (==) Using system config directory "/usr/share/X11/xorg.conf.d"
[     4.524] (==) No Layout section.  Using the first Screen section.
[     4.524] (==) No screen section available. Using defaults.
[     4.524] (**) |-->Screen "Default Screen Section" (0)
[     4.524] (**) |   |-->Monitor "<default monitor>"
[     4.524] (==) No monitor specified for screen "Default Screen Section".
	Using a default monitor configuration.
[     4.524] (==) Automatically adding devices
[     4.524] (==) Automatically enabling devices
[     4.524] (==) Automatically adding GPU devices
[     4.524] (==) Automatically binding GPU devices
[     4.524] (==) Max clients allowed: 256, resource mask: 0x1fffff
[     4.525] (WW) The directory "/usr/share/fonts/Type1" does not exist.
[     4.525] 	Entry deleted from font path.
[     4.526] (WW) The directory "/usr/share/fonts/100dpi" does not exist.
[     4.526] 	Entry deleted from font path.
[     4.526] (WW) The directory "/usr/share/fonts/75dpi" does not exist.
[     4.526] 	Entry deleted from font path.
[     4.526] (==) FontPath set to:
	/usr/share/fonts/misc,
	/usr/share/fonts/TTF,
	/usr/share/fonts/OTF
[     4.526] (==) ModulePath set to "/usr/lib/xorg/modules"
[     4.526] (II) The server relies on udev to provide the list of input devices.
	If no devices become available, reconfigure udev or disable AutoAddDevices.
[     4.526] (II) Module ABI versions:
[     4.526] 	X.Org ANSI C Emulation: 0.4
[     4.526] 	X.Org Video Driver: 25.2
[     4.526] 	X.Org XInput driver : 24.4
[     4.526] 	X.Org Server Extension : 10.0
[     4.526] (++) using VT number 7

[     4.526] (II) systemd-logind: logind integration requires -keeptty and -keeptty was not provided, disabling logind integration
[     4.527] (II) xfree86: Adding drm device (/dev/dri/card0)
[     4.527] (II) Platform probe for /sys/devices/pci0000:00/0000:00:02.0/drm/card0
[     4.540] (--) PCI:*(0@0:2:0) 8086:5917:1558:7a01 rev 7, Mem @ 0xde000000/16777216, 0xc0000000/268435456, I/O @ 0x0000f000/64, BIOS @ 0x????????/131072
[     4.540] (WW) Open ACPI failed (/var/run/acpid.socket) (No such file or directory)
[     4.540] (II) LoadModule: "glx"
[     4.540] (II) Loading /usr/lib/xorg/modules/extensions/libglx.so
[     4.546] (II) Module glx: vendor="X.Org Foundation"
[     4.546] 	compiled for 1.21.1.3, module version = 1.0.0
[     4.546] 	ABI class: X.Org Server Extension, version 10.0
[     4.546] (==) Matched intel as autoconfigured driver 0
[     4.546] (==) Matched modesetting as autoconfigured driver 1
[     4.546] (==) Matched fbdev as autoconfigured driver 2
[     4.546] (==) Matched vesa as autoconfigured driver 3
[     4.546] (==) Assigned the driver to the xf86ConfigLayout
[     4.546] (II) LoadModule: "intel"
[     4.546] (WW) Warning, couldn't open module intel
[     4.546] (EE) Failed to load module "intel" (module does not exist, 0)
[     4.546] (II) LoadModule: "modesetting"
[     4.546] (II) Loading /usr/lib/xorg/modules/drivers/modesetting_drv.so
[     4.548] (II) Module modesetting: vendor="X.Org Foundation"
[     4.548] 	compiled for 1.21.1.3, module version = 1.21.1
[     4.548] 	Module class: X.Org Video Driver
[     4.548] 	ABI class: X.Org Video Driver, version 25.2
[     4.548] (II) LoadModule: "fbdev"
[     4.548] (WW) Warning, couldn't open module fbdev
[     4.548] (EE) Failed to load module "fbdev" (module does not exist, 0)
[     4.548] (II) LoadModule: "vesa"
[     4.548] (WW) Warning, couldn't open module vesa
[     4.548] (EE) Failed to load module "vesa" (module does not exist, 0)
[     4.548] (II) modesetting: Driver for Modesetting Kernel Drivers: kms
[     4.585] (II) modeset(0): using drv /dev/dri/card0
[     4.585] (II) modeset(0): Creating default Display subsection in Screen section
	"Default Screen Section" for depth/fbbpp 24/32
[     4.585] (==) modeset(0): Depth 24, (==) framebuffer bpp 32
[     4.585] (==) modeset(0): RGB weight 888
[     4.585] (==) modeset(0): Default visual is TrueColor
[     4.585] (II) Loading sub module "glamoregl"
[     4.585] (II) LoadModule: "glamoregl"
[     4.585] (II) Loading /usr/lib/xorg/modules/libglamoregl.so
[     4.590] (II) Module glamoregl: vendor="X.Org Foundation"
[     4.590] 	compiled for 1.21.1.3, module version = 1.0.1
[     4.590] 	ABI class: X.Org ANSI C Emulation, version 0.4
[     4.724] (II) modeset(0): glamor X acceleration enabled on Mesa Intel(R) UHD Graphics 620 (KBL GT2)
[     4.724] (II) modeset(0): glamor initialized
[     4.724] (==) modeset(0): VariableRefresh: disabled
[     4.724] (==) modeset(0): AsyncFlipSecondaries: disabled
[     4.726] (II) modeset(0): Output eDP-1 using monitor section eDP-1
[     4.726] (II) modeset(0): Output DP-1 has no monitor section
[     4.730] (II) modeset(0): Output HDMI-1 has no monitor section
[     4.759] (II) modeset(0): Output HDMI-2 using monitor section HDMI-2
[     4.761] (II) modeset(0): EDID for output eDP-1
[     4.761] (II) modeset(0): Manufacturer: CMN  Model: 15c3  Serial#: 0
[     4.761] (II) modeset(0): Year: 2013  Week: 40
[     4.761] (II) modeset(0): EDID Version: 1.4
[     4.761] (II) modeset(0): Digital Display Input
[     4.761] (II) modeset(0): 6 bits per channel
[     4.761] (II) modeset(0): Digital interface is DisplayPort
[     4.761] (II) modeset(0): Max Image Size [cm]: horiz.: 34  vert.: 19
[     4.761] (II) modeset(0): Gamma: 2.20
[     4.761] (II) modeset(0): No DPMS capabilities specified
[     4.761] (II) modeset(0): Supported color encodings: RGB 4:4:4 
[     4.761] (II) modeset(0): First detailed timing is preferred mode
[     4.761] (II) modeset(0): Preferred mode is native pixel format and refresh rate
[     4.761] (II) modeset(0): redX: 0.620 redY: 0.335   greenX: 0.320 greenY: 0.584
[     4.761] (II) modeset(0): blueX: 0.160 blueY: 0.065   whiteX: 0.313 whiteY: 0.329
[     4.761] (II) modeset(0): Manufacturer's mask: 0
[     4.761] (II) modeset(0): Supported detailed timing:
[     4.761] (II) modeset(0): clock: 136.6 MHz   Image Size:  344 x 193 mm
[     4.761] (II) modeset(0): h_active: 1920  h_sync: 1964  h_sync_end 1992 h_blank_end 2070 h_border: 0
[     4.761] (II) modeset(0): v_active: 1080  v_sync: 1082  v_sync_end 1086 v_blanking: 1100 v_border: 0
[     4.761] (II) modeset(0):  N156HGE-EA2
[     4.761] (II) modeset(0):  CMN
[     4.761] (II) modeset(0):  N156HGE-EA2
[     4.761] (II) modeset(0): EDID (in hex):
[     4.761] (II) modeset(0): 	00ffffffffffff000daec31500000000
[     4.761] (II) modeset(0): 	281701049522137802f2359e55529529
[     4.761] (II) modeset(0): 	10505400000001010101010101010101
[     4.761] (II) modeset(0): 	0101010101015e358096703814402c1c
[     4.761] (II) modeset(0): 	240058c110000018000000fe004e3135
[     4.761] (II) modeset(0): 	364847452d4541320a20000000fe0043
[     4.761] (II) modeset(0): 	4d4e0a202020202020202020000000fe
[     4.761] (II) modeset(0): 	004e3135364847452d4541320a20000f
[     4.762] (II) modeset(0): Printing probed modes for output eDP-1
[     4.762] (II) modeset(0): Modeline "1920x1080"x60.0  136.62  1920 1964 1992 2070  1080 1082 1086 1100 -hsync -vsync (66.0 kHz eP)
[     4.762] (II) modeset(0): Modeline "1920x1080"x119.9  266.50  1920 1944 1960 2000  1080 1081 1084 1111 doublescan +hsync -vsync (133.2 kHz d)
[     4.762] (II) modeset(0): Modeline "1920x1080"x60.0  173.00  1920 2048 2248 2576  1080 1083 1088 1120 -hsync +vsync (67.2 kHz d)
[     4.762] (II) modeset(0): Modeline "1920x1080"x59.9  138.50  1920 1968 2000 2080  1080 1083 1088 1111 +hsync -vsync (66.6 kHz d)
[     4.762] (II) modeset(0): Modeline "1680x1050"x60.0  146.25  1680 1784 1960 2240  1050 1053 1059 1089 -hsync +vsync (65.3 kHz d)
[     4.762] (II) modeset(0): Modeline "1680x1050"x59.9  119.00  1680 1728 1760 1840  1050 1053 1059 1080 +hsync -vsync (64.7 kHz d)
[     4.762] (II) modeset(0): Modeline "1400x1050"x60.0  122.00  1400 1488 1640 1880  1050 1052 1064 1082 +hsync +vsync (64.9 kHz d)
[     4.762] (II) modeset(0): Modeline "1600x900"x120.0  246.00  1600 1728 1900 2200  900 901 904 932 doublescan -hsync +vsync (111.8 kHz d)
[     4.762] (II) modeset(0): Modeline "1600x900"x119.9  186.50  1600 1624 1640 1680  900 901 904 926 doublescan +hsync -vsync (111.0 kHz d)
[     4.762] (II) modeset(0): Modeline "1600x900"x59.9  118.25  1600 1696 1856 2112  900 903 908 934 -hsync +vsync (56.0 kHz d)
[     4.762] (II) modeset(0): Modeline "1600x900"x59.8   97.50  1600 1648 1680 1760  900 903 908 926 +hsync -vsync (55.4 kHz d)
[     4.762] (II) modeset(0): Modeline "1280x1024"x60.0  108.00  1280 1328 1440 1688  1024 1025 1028 1066 +hsync +vsync (64.0 kHz d)
[     4.762] (II) modeset(0): Modeline "1400x900"x60.0  103.50  1400 1480 1624 1848  900 903 913 934 -hsync +vsync (56.0 kHz d)
[     4.762] (II) modeset(0): Modeline "1400x900"x59.9   86.50  1400 1448 1480 1560  900 903 913 926 +hsync -vsync (55.4 kHz d)
[     4.762] (II) modeset(0): Modeline "1280x960"x60.0  108.00  1280 1376 1488 1800  960 961 964 1000 +hsync +vsync (60.0 kHz d)
[     4.762] (II) modeset(0): Modeline "1440x810"x120.0  198.12  1440 1548 1704 1968  810 811 814 839 doublescan -hsync +vsync (100.7 kHz d)
[     4.762] (II) modeset(0): Modeline "1440x810"x119.9  151.88  1440 1464 1480 1520  810 811 814 833 doublescan +hsync -vsync (99.9 kHz d)
[     4.762] (II) modeset(0): Modeline "1368x768"x59.9   85.25  1368 1440 1576 1784  768 771 781 798 -hsync +vsync (47.8 kHz d)
[     4.762] (II) modeset(0): Modeline "1368x768"x59.9   72.25  1368 1416 1448 1528  768 771 781 790 +hsync -vsync (47.3 kHz d)
[     4.762] (II) modeset(0): Modeline "1280x800"x120.0  174.25  1280 1380 1516 1752  800 801 804 829 doublescan -hsync +vsync (99.5 kHz d)
[     4.762] (II) modeset(0): Modeline "1280x800"x119.9  134.25  1280 1304 1320 1360  800 801 804 823 doublescan +hsync -vsync (98.7 kHz d)
[     4.762] (II) modeset(0): Modeline "1280x800"x59.8   83.50  1280 1352 1480 1680  800 803 809 831 -hsync +vsync (49.7 kHz d)
[     4.762] (II) modeset(0): Modeline "1280x800"x59.9   71.00  1280 1328 1360 1440  800 803 809 823 +hsync -vsync (49.3 kHz d)
[     4.762] (II) modeset(0): Modeline "1280x720"x120.0  156.12  1280 1376 1512 1744  720 721 724 746 doublescan -hsync +vsync (89.5 kHz d)
[     4.762] (II) modeset(0): Modeline "1280x720"x120.0  120.75  1280 1304 1320 1360  720 721 724 740 doublescan +hsync -vsync (88.8 kHz d)
[     4.762] (II) modeset(0): Modeline "1280x720"x59.9   74.50  1280 1344 1472 1664  720 723 728 748 -hsync +vsync (44.8 kHz d)
[     4.763] (II) modeset(0): Modeline "1280x720"x59.7   63.75  1280 1328 1360 1440  720 723 728 741 +hsync -vsync (44.3 kHz d)
[     4.763] (II) modeset(0): Modeline "1024x768"x120.1  133.47  1024 1100 1212 1400  768 768 770 794 doublescan -hsync +vsync (95.3 kHz d)
[     4.763] (II) modeset(0): Modeline "1024x768"x60.0   65.00  1024 1048 1184 1344  768 771 777 806 -hsync -vsync (48.4 kHz d)
[     4.763] (II) modeset(0): Modeline "960x720"x120.0  117.00  960 1024 1128 1300  720 720 722 750 doublescan -hsync +vsync (90.0 kHz d)
[     4.763] (II) modeset(0): Modeline "928x696"x120.1  109.15  928 976 1088 1264  696 696 698 719 doublescan -hsync +vsync (86.4 kHz d)
[     4.763] (II) modeset(0): Modeline "896x672"x120.0  102.40  896 960 1060 1224  672 672 674 697 doublescan -hsync +vsync (83.7 kHz d)
[     4.763] (II) modeset(0): Modeline "1024x576"x119.9   98.50  1024 1092 1200 1376  576 577 580 597 doublescan -hsync +vsync (71.6 kHz d)
[     4.763] (II) modeset(0): Modeline "1024x576"x119.9   78.38  1024 1048 1064 1104  576 577 580 592 doublescan +hsync -vsync (71.0 kHz d)
[     4.763] (II) modeset(0): Modeline "1024x576"x59.9   46.50  1024 1064 1160 1296  576 579 584 599 -hsync +vsync (35.9 kHz d)
[     4.763] (II) modeset(0): Modeline "1024x576"x59.8   42.00  1024 1072 1104 1184  576 579 584 593 +hsync -vsync (35.5 kHz d)
[     4.763] (II) modeset(0): Modeline "960x600"x119.9   96.62  960 1028 1128 1296  600 601 604 622 doublescan -hsync +vsync (74.6 kHz d)
[     4.763] (II) modeset(0): Modeline "960x600"x120.0   77.00  960 984 1000 1040  600 601 604 617 doublescan +hsync -vsync (74.0 kHz d)
[     4.763] (II) modeset(0): Modeline "960x540"x119.9   86.50  960 1024 1124 1288  540 541 544 560 doublescan -hsync +vsync (67.2 kHz d)
[     4.763] (II) modeset(0): Modeline "960x540"x120.0   69.25  960 984 1000 1040  540 541 544 555 doublescan +hsync -vsync (66.6 kHz d)
[     4.763] (II) modeset(0): Modeline "960x540"x59.6   40.75  960 992 1088 1216  540 543 548 562 -hsync +vsync (33.5 kHz d)
[     4.763] (II) modeset(0): Modeline "960x540"x59.8   37.25  960 1008 1040 1120  540 543 548 556 +hsync -vsync (33.3 kHz d)
[     4.763] (II) modeset(0): Modeline "800x600"x120.0   81.00  800 832 928 1080  600 600 602 625 doublescan +hsync +vsync (75.0 kHz d)
[     4.763] (II) modeset(0): Modeline "800x600"x60.3   40.00  800 840 968 1056  600 601 605 628 +hsync +vsync (37.9 kHz d)
[     4.763] (II) modeset(0): Modeline "800x600"x56.2   36.00  800 824 896 1024  600 601 603 625 +hsync +vsync (35.2 kHz d)
[     4.763] (II) modeset(0): Modeline "840x525"x120.0   73.12  840 892 980 1120  525 526 529 544 doublescan -hsync +vsync (65.3 kHz d)
[     4.763] (II) modeset(0): Modeline "840x525"x119.8   59.50  840 864 880 920  525 526 529 540 doublescan +hsync -vsync (64.7 kHz d)
[     4.763] (II) modeset(0): Modeline "864x486"x59.9   32.50  864 888 968 1072  486 489 494 506 -hsync +vsync (30.3 kHz d)
[     4.763] (II) modeset(0): Modeline "864x486"x59.6   30.50  864 912 944 1024  486 489 494 500 +hsync -vsync (29.8 kHz d)
[     4.763] (II) modeset(0): Modeline "700x525"x120.0   61.00  700 744 820 940  525 526 532 541 doublescan +hsync +vsync (64.9 kHz d)
[     4.763] (II) modeset(0): Modeline "800x450"x119.9   59.12  800 848 928 1056  450 451 454 467 doublescan -hsync +vsync (56.0 kHz d)
[     4.763] (II) modeset(0): Modeline "800x450"x119.6   48.75  800 824 840 880  450 451 454 463 doublescan +hsync -vsync (55.4 kHz d)
[     4.763] (II) modeset(0): Modeline "640x512"x120.0   54.00  640 664 720 844  512 512 514 533 doublescan +hsync +vsync (64.0 kHz d)
[     4.763] (II) modeset(0): Modeline "700x450"x119.9   51.75  700 740 812 924  450 451 456 467 doublescan -hsync +vsync (56.0 kHz d)
[     4.763] (II) modeset(0): Modeline "700x450"x119.8   43.25  700 724 740 780  450 451 456 463 doublescan +hsync -vsync (55.4 kHz d)
[     4.763] (II) modeset(0): Modeline "640x480"x120.0   54.00  640 688 744 900  480 480 482 500 doublescan +hsync +vsync (60.0 kHz d)
[     4.763] (II) modeset(0): Modeline "640x480"x59.9   25.18  640 656 752 800  480 490 492 525 -hsync -vsync (31.5 kHz d)
[     4.763] (II) modeset(0): Modeline "720x405"x59.5   22.50  720 744 808 896  405 408 413 422 -hsync +vsync (25.1 kHz d)
[     4.763] (II) modeset(0): Modeline "720x405"x59.0   21.75  720 768 800 880  405 408 413 419 +hsync -vsync (24.7 kHz d)
[     4.763] (II) modeset(0): Modeline "684x384"x119.8   42.62  684 720 788 892  384 385 390 399 doublescan -hsync +vsync (47.8 kHz d)
[     4.763] (II) modeset(0): Modeline "684x384"x119.7   36.12  684 708 724 764  384 385 390 395 doublescan +hsync -vsync (47.3 kHz d)
[     4.763] (II) modeset(0): Modeline "640x400"x119.8   41.75  640 676 740 840  400 401 404 415 doublescan -hsync +vsync (49.7 kHz d)
[     4.763] (II) modeset(0): Modeline "640x400"x120.0   35.50  640 664 680 720  400 401 404 411 doublescan +hsync -vsync (49.3 kHz d)
[     4.763] (II) modeset(0): Modeline "640x360"x119.7   37.25  640 672 736 832  360 361 364 374 doublescan -hsync +vsync (44.8 kHz d)
[     4.763] (II) modeset(0): Modeline "640x360"x119.7   31.88  640 664 680 720  360 361 364 370 doublescan +hsync -vsync (44.3 kHz d)
[     4.763] (II) modeset(0): Modeline "640x360"x59.8   18.00  640 664 720 800  360 363 368 376 -hsync +vsync (22.5 kHz d)
[     4.763] (II) modeset(0): Modeline "640x360"x59.3   17.75  640 688 720 800  360 363 368 374 +hsync -vsync (22.2 kHz d)
[     4.763] (II) modeset(0): Modeline "512x384"x120.0   32.50  512 524 592 672  384 385 388 403 doublescan -hsync -vsync (48.4 kHz d)
[     4.763] (II) modeset(0): Modeline "512x288"x120.0   23.25  512 532 580 648  288 289 292 299 doublescan -hsync +vsync (35.9 kHz d)
[     4.763] (II) modeset(0): Modeline "512x288"x119.8   21.00  512 536 552 592  288 289 292 296 doublescan +hsync -vsync (35.5 kHz d)
[     4.763] (II) modeset(0): Modeline "480x270"x119.3   20.38  480 496 544 608  270 271 274 281 doublescan -hsync +vsync (33.5 kHz d)
[     4.763] (II) modeset(0): Modeline "480x270"x119.6   18.62  480 504 520 560  270 271 274 278 doublescan +hsync -vsync (33.3 kHz d)
[     4.763] (II) modeset(0): Modeline "400x300"x120.6   20.00  400 420 484 528  300 300 302 314 doublescan +hsync +vsync (37.9 kHz d)
[     4.763] (II) modeset(0): Modeline "400x300"x112.7   18.00  400 412 448 512  300 300 301 312 doublescan +hsync +vsync (35.2 kHz d)
[     4.763] (II) modeset(0): Modeline "432x243"x119.8   16.25  432 444 484 536  243 244 247 253 doublescan -hsync +vsync (30.3 kHz d)
[     4.763] (II) modeset(0): Modeline "432x243"x119.1   15.25  432 456 472 512  243 244 247 250 doublescan +hsync -vsync (29.8 kHz d)
[     4.763] (II) modeset(0): Modeline "320x240"x120.1   12.59  320 328 376 400  240 245 246 262 doublescan -hsync -vsync (31.5 kHz d)
[     4.763] (II) modeset(0): Modeline "360x202"x119.0   11.25  360 372 404 448  202 204 206 211 doublescan -hsync +vsync (25.1 kHz d)
[     4.763] (II) modeset(0): Modeline "360x202"x118.3   10.88  360 384 400 440  202 204 206 209 doublescan +hsync -vsync (24.7 kHz d)
[     4.763] (II) modeset(0): Modeline "320x180"x119.7    9.00  320 332 360 400  180 181 184 188 doublescan -hsync +vsync (22.5 kHz d)
[     4.763] (II) modeset(0): Modeline "320x180"x118.6    8.88  320 344 360 400  180 181 184 187 doublescan +hsync -vsync (22.2 kHz d)
[     4.764] (II) modeset(0): EDID for output DP-1
[     4.767] (II) modeset(0): EDID for output HDMI-1
[     4.799] (II) modeset(0): EDID for output HDMI-2
[     4.799] (II) modeset(0): Manufacturer: CHD  Model: 240  Serial#: 1
[     4.799] (II) modeset(0): Year: 2019  Week: 12
[     4.800] (II) modeset(0): EDID Version: 1.3
[     4.800] (II) modeset(0): Digital Display Input
[     4.800] (II) modeset(0): Max Image Size [cm]: horiz.: 53  vert.: 29
[     4.800] (II) modeset(0): Gamma: 2.20
[     4.800] (II) modeset(0): DPMS capabilities: StandBy Suspend Off
[     4.800] (II) modeset(0): Supported color encodings: RGB 4:4:4 YCrCb 4:4:4 
[     4.800] (II) modeset(0): First detailed timing is preferred mode
[     4.800] (II) modeset(0): redX: 0.637 redY: 0.331   greenX: 0.304 greenY: 0.626
[     4.800] (II) modeset(0): blueX: 0.152 blueY: 0.071   whiteX: 0.313 whiteY: 0.329
[     4.800] (II) modeset(0): Supported established timings:
[     4.800] (II) modeset(0): 720x400@70Hz
[     4.800] (II) modeset(0): 640x480@60Hz
[     4.800] (II) modeset(0): 640x480@67Hz
[     4.800] (II) modeset(0): 640x480@72Hz
[     4.800] (II) modeset(0): 640x480@75Hz
[     4.800] (II) modeset(0): 800x600@56Hz
[     4.800] (II) modeset(0): 800x600@60Hz
[     4.800] (II) modeset(0): 800x600@72Hz
[     4.800] (II) modeset(0): 800x600@75Hz
[     4.800] (II) modeset(0): 832x624@75Hz
[     4.800] (II) modeset(0): 1024x768@60Hz
[     4.800] (II) modeset(0): 1024x768@70Hz
[     4.800] (II) modeset(0): 1024x768@75Hz
[     4.800] (II) modeset(0): 1280x1024@75Hz
[     4.800] (II) modeset(0): Manufacturer's mask: 0
[     4.800] (II) modeset(0): Supported standard timings:
[     4.800] (II) modeset(0): #0: hsize: 1152  vsize 864  refresh: 75  vid: 20337
[     4.800] (II) modeset(0): #1: hsize: 1280  vsize 1024  refresh: 60  vid: 32897
[     4.800] (II) modeset(0): #2: hsize: 1280  vsize 960  refresh: 60  vid: 16513
[     4.800] (II) modeset(0): #3: hsize: 1440  vsize 900  refresh: 60  vid: 149
[     4.800] (II) modeset(0): #4: hsize: 1600  vsize 1200  refresh: 60  vid: 16553
[     4.800] (II) modeset(0): #5: hsize: 1680  vsize 1050  refresh: 60  vid: 179
[     4.800] (II) modeset(0): #6: hsize: 1920  vsize 1080  refresh: 60  vid: 49361
[     4.800] (II) modeset(0): #7: hsize: 1600  vsize 900  refresh: 60  vid: 49321
[     4.800] (II) modeset(0): Supported detailed timing:
[     4.800] (II) modeset(0): clock: 148.5 MHz   Image Size:  368 x 207 mm
[     4.800] (II) modeset(0): h_active: 1920  h_sync: 2008  h_sync_end 2052 h_blank_end 2200 h_border: 0
[     4.800] (II) modeset(0): v_active: 1080  v_sync: 1084  v_sync_end 1089 v_blanking: 1125 v_border: 0
[     4.800] (II) modeset(0): Ranges: V min: 50 V max: 76 Hz, H min: 30 H max: 83 kHz, PixClock max 155 MHz
[     4.800] (II) modeset(0): Monitor name: PMO S240-IFC
[     4.800] (II) modeset(0): Serial No: 0101010101010
[     4.801] (II) modeset(0): Supported detailed timing:
[     4.801] (II) modeset(0): clock: 138.5 MHz   Image Size:  546 x 352 mm
[     4.801] (II) modeset(0): h_active: 1920  h_sync: 1968  h_sync_end 2000 h_blank_end 2080 h_border: 0
[     4.801] (II) modeset(0): v_active: 1080  v_sync: 1083  v_sync_end 1088 v_blanking: 1110 v_border: 0
[     4.801] (II) modeset(0): Supported detailed timing:
[     4.801] (II) modeset(0): clock: 85.5 MHz   Image Size:  546 x 352 mm
[     4.801] (II) modeset(0): h_active: 1366  h_sync: 1436  h_sync_end 1579 h_blank_end 1792 h_border: 0
[     4.801] (II) modeset(0): v_active: 768  v_sync: 771  v_sync_end 774 v_blanking: 798 v_border: 0
[     4.801] (II) modeset(0): Supported detailed timing:
[     4.801] (II) modeset(0): clock: 74.2 MHz   Image Size:  546 x 352 mm
[     4.801] (II) modeset(0): h_active: 1280  h_sync: 1390  h_sync_end 1430 h_blank_end 1650 h_border: 0
[     4.801] (II) modeset(0): v_active: 720  v_sync: 725  v_sync_end 730 v_blanking: 750 v_border: 0
[     4.801] (II) modeset(0): Supported detailed timing:
[     4.801] (II) modeset(0): clock: 27.0 MHz   Image Size:  546 x 352 mm
[     4.801] (II) modeset(0): h_active: 720  h_sync: 736  h_sync_end 798 h_blank_end 858 h_border: 0
[     4.801] (II) modeset(0): v_active: 480  v_sync: 489  v_sync_end 495 v_blanking: 525 v_border: 0
[     4.801] (II) modeset(0): Supported detailed timing:
[     4.801] (II) modeset(0): clock: 79.5 MHz   Image Size:  546 x 352 mm
[     4.801] (II) modeset(0): h_active: 1280  h_sync: 1328  h_sync_end 1360 h_blank_end 1664 h_border: 0
[     4.801] (II) modeset(0): v_active: 768  v_sync: 771  v_sync_end 778 v_blanking: 798 v_border: 0
[     4.801] (II) modeset(0): Number of EDID sections to follow: 1
[     4.801] (II) modeset(0): EDID (in hex):
[     4.801] (II) modeset(0): 	00ffffffffffff000d04400201000000
[     4.801] (II) modeset(0): 	0c1d010380351d78ea3d15a3544da027
[     4.801] (II) modeset(0): 	125054bfef00714f818081409500a940
[     4.801] (II) modeset(0): 	b300d1c0a9c0023a801871382d40582c
[     4.801] (II) modeset(0): 	450070cf1000001a000000fd00324c1e
[     4.801] (II) modeset(0): 	530f000a202020202020000000fc0050
[     4.801] (II) modeset(0): 	4d4f20533234302d4946430a000000ff
[     4.801] (II) modeset(0): 	00303130313031303130313031300192
[     4.801] (II) modeset(0): 	02031ef14b900504030201111213141f
[     4.801] (II) modeset(0): 	230907078301000065030c0010001a36
[     4.801] (II) modeset(0): 	80a070381e403020350022602100001a
[     4.801] (II) modeset(0): 	662156aa51001e30468f330022602100
[     4.801] (II) modeset(0): 	001e011d007251d01e206e2855002260
[     4.801] (II) modeset(0): 	2100001e8c0ad08a20e02d10103e9600
[     4.802] (II) modeset(0): 	2260210000180e1f008051001e303020
[     4.802] (II) modeset(0): 	370022602100009e0000000000000035
[     4.802] (II) modeset(0): Not using mode "1600x1200" (bad mode clock/interlace/doublescan)
[     4.802] (II) modeset(0): Printing probed modes for output HDMI-2
[     4.802] (II) modeset(0): Modeline "1920x1080"x60.0  148.50  1920 2008 2052 2200  1080 1084 1089 1125 +hsync -vsync (67.5 kHz eP)
[     4.802] (II) modeset(0): Modeline "1920x1080"x60.0  148.50  1920 2008 2052 2200  1080 1084 1089 1125 +hsync +vsync (67.5 kHz e)
[     4.802] (II) modeset(0): Modeline "1920x1080"x50.0  148.50  1920 2448 2492 2640  1080 1084 1089 1125 +hsync +vsync (56.2 kHz e)
[     4.802] (II) modeset(0): Modeline "1920x1080"x59.9  148.35  1920 2008 2052 2200  1080 1084 1089 1125 +hsync +vsync (67.4 kHz e)
[     4.802] (II) modeset(0): Modeline "1920x1080"x60.0  138.50  1920 1968 2000 2080  1080 1083 1088 1110 +hsync -vsync (66.6 kHz e)
[     4.802] (II) modeset(0): Modeline "1920x1080i"x60.0   74.25  1920 2008 2052 2200  1080 1084 1094 1125 interlace +hsync +vsync (33.8 kHz e)
[     4.802] (II) modeset(0): Modeline "1920x1080i"x50.0   74.25  1920 2448 2492 2640  1080 1084 1094 1125 interlace +hsync +vsync (28.1 kHz e)
[     4.802] (II) modeset(0): Modeline "1920x1080i"x59.9   74.18  1920 2008 2052 2200  1080 1084 1094 1125 interlace +hsync +vsync (33.7 kHz e)
[     4.802] (II) modeset(0): Modeline "1680x1050"x59.9  119.00  1680 1728 1760 1840  1050 1053 1059 1080 +hsync -vsync (64.7 kHz e)
[     4.802] (II) modeset(0): Modeline "1600x900"x60.0  108.00  1600 1624 1704 1800  900 901 904 1000 +hsync +vsync (60.0 kHz e)
[     4.802] (II) modeset(0): Modeline "1280x1024"x75.0  135.00  1280 1296 1440 1688  1024 1025 1028 1066 +hsync +vsync (80.0 kHz e)
[     4.802] (II) modeset(0): Modeline "1280x1024"x60.0  108.00  1280 1328 1440 1688  1024 1025 1028 1066 +hsync +vsync (64.0 kHz e)
[     4.802] (II) modeset(0): Modeline "1440x900"x59.9   88.75  1440 1488 1520 1600  900 903 909 926 +hsync -vsync (55.5 kHz e)
[     4.802] (II) modeset(0): Modeline "1280x960"x60.0  108.00  1280 1376 1488 1800  960 961 964 1000 +hsync +vsync (60.0 kHz e)
[     4.802] (II) modeset(0): Modeline "1366x768"x59.8   85.50  1366 1436 1579 1792  768 771 774 798 +hsync +vsync (47.7 kHz e)
[     4.802] (II) modeset(0): Modeline "1152x864"x75.0  108.00  1152 1216 1344 1600  864 865 868 900 +hsync +vsync (67.5 kHz e)
[     4.802] (II) modeset(0): Modeline "1280x768i"x119.7   79.50  1280 1328 1360 1664  768 771 778 798 interlace +hsync +vsync (47.8 kHz e)
[     4.802] (II) modeset(0): Modeline "1280x720"x60.0   74.25  1280 1390 1430 1650  720 725 730 750 +hsync +vsync (45.0 kHz e)
[     4.802] (II) modeset(0): Modeline "1280x720"x50.0   74.25  1280 1720 1760 1980  720 725 730 750 +hsync +vsync (37.5 kHz e)
[     4.802] (II) modeset(0): Modeline "1280x720"x59.9   74.18  1280 1390 1430 1650  720 725 730 750 +hsync +vsync (45.0 kHz e)
[     4.803] (II) modeset(0): Modeline "1024x768"x75.0   78.75  1024 1040 1136 1312  768 769 772 800 +hsync +vsync (60.0 kHz e)
[     4.803] (II) modeset(0): Modeline "1024x768"x70.1   75.00  1024 1048 1184 1328  768 771 777 806 -hsync -vsync (56.5 kHz e)
[     4.803] (II) modeset(0): Modeline "1024x768"x60.0   65.00  1024 1048 1184 1344  768 771 777 806 -hsync -vsync (48.4 kHz e)
[     4.803] (II) modeset(0): Modeline "832x624"x74.6   57.28  832 864 928 1152  624 625 628 667 -hsync -vsync (49.7 kHz e)
[     4.803] (II) modeset(0): Modeline "800x600"x72.2   50.00  800 856 976 1040  600 637 643 666 +hsync +vsync (48.1 kHz e)
[     4.803] (II) modeset(0): Modeline "800x600"x75.0   49.50  800 816 896 1056  600 601 604 625 +hsync +vsync (46.9 kHz e)
[     4.803] (II) modeset(0): Modeline "800x600"x60.3   40.00  800 840 968 1056  600 601 605 628 +hsync +vsync (37.9 kHz e)
[     4.803] (II) modeset(0): Modeline "800x600"x56.2   36.00  800 824 896 1024  600 601 603 625 +hsync +vsync (35.2 kHz e)
[     4.803] (II) modeset(0): Modeline "720x576"x50.0   27.00  720 732 796 864  576 581 586 625 -hsync -vsync (31.2 kHz e)
[     4.803] (II) modeset(0): Modeline "720x480"x60.0   27.03  720 736 798 858  480 489 495 525 -hsync -vsync (31.5 kHz e)
[     4.803] (II) modeset(0): Modeline "720x480"x59.9   27.00  720 736 798 858  480 489 495 525 -hsync -vsync (31.5 kHz e)
[     4.803] (II) modeset(0): Modeline "640x480"x75.0   31.50  640 656 720 840  480 481 484 500 -hsync -vsync (37.5 kHz e)
[     4.803] (II) modeset(0): Modeline "640x480"x72.8   31.50  640 664 704 832  480 489 492 520 -hsync -vsync (37.9 kHz e)
[     4.803] (II) modeset(0): Modeline "640x480"x66.7   30.24  640 704 768 864  480 483 486 525 -hsync -vsync (35.0 kHz e)
[     4.803] (II) modeset(0): Modeline "640x480"x60.0   25.20  640 656 752 800  480 490 492 525 -hsync -vsync (31.5 kHz e)
[     4.803] (II) modeset(0): Modeline "640x480"x59.9   25.18  640 656 752 800  480 490 492 525 -hsync -vsync (31.5 kHz e)
[     4.803] (II) modeset(0): Modeline "720x400"x70.1   28.32  720 738 846 900  400 412 414 449 -hsync +vsync (31.5 kHz e)
[     4.803] (II) modeset(0): Output eDP-1 connected
[     4.803] (II) modeset(0): Output DP-1 disconnected
[     4.803] (II) modeset(0): Output HDMI-1 disconnected
[     4.803] (II) modeset(0): Output HDMI-2 connected
[     4.803] (II) modeset(0): Using spanning desktop for initial modes
[     4.803] (II) modeset(0): Output eDP-1 using initial mode 1920x1080 +0+0
[     4.803] (II) modeset(0): Output HDMI-2 using initial mode 1920x1080 +1920+0
[     4.803] (==) modeset(0): Using gamma correction (1.0, 1.0, 1.0)
[     4.803] (++) modeset(0): DPI set to (92, 92)
[     4.803] (II) Loading sub module "fb"
[     4.803] (II) LoadModule: "fb"
[     4.803] (II) Module "fb" already built-in
[     4.870] (==) modeset(0): Backing store enabled
[     4.870] (==) modeset(0): Silken mouse enabled
[     5.085] (II) modeset(0): Initializing kms color map for depth 24, 8 bpc.
[     5.085] (==) modeset(0): DPMS enabled
[     5.085] (II) modeset(0): [DRI2] Setup complete
[     5.085] (II) modeset(0): [DRI2]   DRI driver: iris
[     5.085] (II) modeset(0): [DRI2]   VDPAU driver: va_gl
[     5.085] (II) Initializing extension Generic Event Extension
[     5.086] (II) Initializing extension SHAPE
[     5.086] (II) Initializing extension MIT-SHM
[     5.086] (II) Initializing extension XInputExtension
[     5.087] (II) Initializing extension XTEST
[     5.087] (II) Initializing extension BIG-REQUESTS
[     5.087] (II) Initializing extension SYNC
[     5.087] (II) Initializing extension XKEYBOARD
[     5.088] (II) Initializing extension XC-MISC
[     5.088] (II) Initializing extension SECURITY
[     5.088] (II) Initializing extension XFIXES
[     5.089] (II) Initializing extension RENDER
[     5.089] (II) Initializing extension RANDR
[     5.089] (II) Initializing extension COMPOSITE
[     5.090] (II) Initializing extension DAMAGE
[     5.090] (II) Initializing extension MIT-SCREEN-SAVER
[     5.090] (II) Initializing extension DOUBLE-BUFFER
[     5.090] (II) Initializing extension RECORD
[     5.091] (II) Initializing extension DPMS
[     5.091] (II) Initializing extension Present
[     5.091] (II) Initializing extension DRI3
[     5.092] (II) Initializing extension X-Resource
[     5.092] (II) Initializing extension XVideo
[     5.092] (II) Initializing extension XVideo-MotionCompensation
[     5.092] (II) Initializing extension GLX
[     5.111] (II) AIGLX: Loaded and initialized iris
[     5.111] (II) GLX: Initialized DRI2 GL provider for screen 0
[     5.111] (II) Initializing extension XFree86-VidModeExtension
[     5.111] (II) Initializing extension XFree86-DGA
[     5.111] (II) Initializing extension XFree86-DRI
[     5.111] (II) Initializing extension DRI2
[     5.112] (II) modeset(0): Damage tracking initialized
[     5.113] (II) modeset(0): Setting screen physical size to 1060 x 298
[     5.189] (II) config/udev: Adding input device Power Button (/dev/input/event3)
[     5.189] (**) Power Button: Applying InputClass "libinput keyboard catchall"
[     5.189] (**) Power Button: Applying InputClass "system-keyboard"
[     5.189] (**) Power Button: Applying InputClass "system-keyboard"
[     5.189] (II) LoadModule: "libinput"
[     5.189] (II) Loading /usr/lib/xorg/modules/input/libinput_drv.so
[     5.193] (II) Module libinput: vendor="X.Org Foundation"
[     5.193] 	compiled for 1.21.1.3, module version = 1.2.1
[     5.193] 	Module class: X.Org XInput Driver
[     5.193] 	ABI class: X.Org XInput driver, version 24.4
[     5.193] (II) Using input driver 'libinput' for 'Power Button'
[     5.193] (**) Power Button: always reports core events
[     5.193] (**) Option "Device" "/dev/input/event3"
[     5.204] (II) event3  - Power Button: is tagged by udev as: Keyboard
[     5.204] (II) event3  - Power Button: device is a keyboard
[     5.204] (II) event3  - Power Button: device removed
[     5.235] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/LNXPWRBN:00/input/input3/event3"
[     5.235] (II) XINPUT: Adding extended input device "Power Button" (type: KEYBOARD, id 6)
[     5.235] (**) Option "xkb_model" "pc105"
[     5.235] (**) Option "xkb_layout" "ro"
[     5.235] (**) Option "xkb_variant" "cedilla,,,"
[     5.289] (II) event3  - Power Button: is tagged by udev as: Keyboard
[     5.289] (II) event3  - Power Button: device is a keyboard
[     5.290] (II) config/udev: Adding input device Video Bus (/dev/input/event11)
[     5.290] (**) Video Bus: Applying InputClass "libinput keyboard catchall"
[     5.290] (**) Video Bus: Applying InputClass "system-keyboard"
[     5.290] (**) Video Bus: Applying InputClass "system-keyboard"
[     5.290] (II) Using input driver 'libinput' for 'Video Bus'
[     5.290] (**) Video Bus: always reports core events
[     5.290] (**) Option "Device" "/dev/input/event11"
[     5.291] (II) event11 - Video Bus: is tagged by udev as: Keyboard
[     5.291] (II) event11 - Video Bus: device is a keyboard
[     5.291] (II) event11 - Video Bus: device removed
[     5.341] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/LNXVIDEO:00/input/input18/event11"
[     5.341] (II) XINPUT: Adding extended input device "Video Bus" (type: KEYBOARD, id 7)
[     5.341] (**) Option "xkb_model" "pc105"
[     5.341] (**) Option "xkb_layout" "ro"
[     5.341] (**) Option "xkb_variant" "cedilla,,,"
[     5.343] (II) event11 - Video Bus: is tagged by udev as: Keyboard
[     5.343] (II) event11 - Video Bus: device is a keyboard
[     5.343] (II) config/udev: Adding input device Power Button (/dev/input/event0)
[     5.343] (**) Power Button: Applying InputClass "libinput keyboard catchall"
[     5.343] (**) Power Button: Applying InputClass "system-keyboard"
[     5.343] (**) Power Button: Applying InputClass "system-keyboard"
[     5.343] (II) Using input driver 'libinput' for 'Power Button'
[     5.343] (**) Power Button: always reports core events
[     5.343] (**) Option "Device" "/dev/input/event0"
[     5.344] (II) event0  - Power Button: is tagged by udev as: Keyboard
[     5.344] (II) event0  - Power Button: device is a keyboard
[     5.344] (II) event0  - Power Button: device removed
[     5.395] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input0/event0"
[     5.395] (II) XINPUT: Adding extended input device "Power Button" (type: KEYBOARD, id 8)
[     5.395] (**) Option "xkb_model" "pc105"
[     5.395] (**) Option "xkb_layout" "ro"
[     5.395] (**) Option "xkb_variant" "cedilla,,,"
[     5.398] (II) event0  - Power Button: is tagged by udev as: Keyboard
[     5.398] (II) event0  - Power Button: device is a keyboard
[     5.400] (II) config/udev: Adding input device Lid Switch (/dev/input/event2)
[     5.400] (II) No input driver specified, ignoring this device.
[     5.400] (II) This device may have been added with another device file.
[     5.402] (II) config/udev: Adding input device Sleep Button (/dev/input/event1)
[     5.402] (**) Sleep Button: Applying InputClass "libinput keyboard catchall"
[     5.402] (**) Sleep Button: Applying InputClass "system-keyboard"
[     5.402] (**) Sleep Button: Applying InputClass "system-keyboard"
[     5.402] (II) Using input driver 'libinput' for 'Sleep Button'
[     5.402] (**) Sleep Button: always reports core events
[     5.402] (**) Option "Device" "/dev/input/event1"
[     5.404] (II) event1  - Sleep Button: is tagged by udev as: Keyboard
[     5.404] (II) event1  - Sleep Button: device is a keyboard
[     5.404] (II) event1  - Sleep Button: device removed
[     5.448] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0E:00/input/input1/event1"
[     5.448] (II) XINPUT: Adding extended input device "Sleep Button" (type: KEYBOARD, id 9)
[     5.448] (**) Option "xkb_model" "pc105"
[     5.448] (**) Option "xkb_layout" "ro"
[     5.448] (**) Option "xkb_variant" "cedilla,,,"
[     5.451] (II) event1  - Sleep Button: is tagged by udev as: Keyboard
[     5.452] (II) event1  - Sleep Button: device is a keyboard
[     5.455] (II) config/udev: Adding input device Chicony USB2.0 Camera: Chicony  (/dev/input/event6)
[     5.455] (**) Chicony USB2.0 Camera: Chicony : Applying InputClass "libinput keyboard catchall"
[     5.455] (**) Chicony USB2.0 Camera: Chicony : Applying InputClass "system-keyboard"
[     5.455] (**) Chicony USB2.0 Camera: Chicony : Applying InputClass "system-keyboard"
[     5.455] (II) Using input driver 'libinput' for 'Chicony USB2.0 Camera: Chicony '
[     5.455] (**) Chicony USB2.0 Camera: Chicony : always reports core events
[     5.455] (**) Option "Device" "/dev/input/event6"
[     5.459] (II) event6  - Chicony USB2.0 Camera: Chicony : is tagged by udev as: Keyboard
[     5.459] (II) event6  - Chicony USB2.0 Camera: Chicony : device is a keyboard
[     5.459] (II) event6  - Chicony USB2.0 Camera: Chicony : device removed
[     5.515] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:14.0/usb1/1-5/1-5:1.0/input/input19/event6"
[     5.515] (II) XINPUT: Adding extended input device "Chicony USB2.0 Camera: Chicony " (type: KEYBOARD, id 10)
[     5.515] (**) Option "xkb_model" "pc105"
[     5.515] (**) Option "xkb_layout" "ro"
[     5.515] (**) Option "xkb_variant" "cedilla,,,"
[     5.519] (II) event6  - Chicony USB2.0 Camera: Chicony : is tagged by udev as: Keyboard
[     5.519] (II) event6  - Chicony USB2.0 Camera: Chicony : device is a keyboard
[     5.522] (II) config/udev: Adding input device Logitech Wireless Mouse (/dev/input/event8)
[     5.522] (**) Logitech Wireless Mouse: Applying InputClass "libinput pointer catchall"
[     5.522] (II) Using input driver 'libinput' for 'Logitech Wireless Mouse'
[     5.522] (**) Logitech Wireless Mouse: always reports core events
[     5.522] (**) Option "Device" "/dev/input/event8"
[     5.527] (II) event8  - Logitech Wireless Mouse: is tagged by udev as: Mouse
[     5.527] (II) event8  - Logitech Wireless Mouse: device is a pointer
[     5.528] (II) event8  - Logitech Wireless Mouse: device removed
[     5.581] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:14.0/usb1/1-6/1-6:1.2/0003:046D:C52B.0003/0003:046D:4055.0004/input/input32/event8"
[     5.582] (II) XINPUT: Adding extended input device "Logitech Wireless Mouse" (type: MOUSE, id 11)
[     5.582] (**) Option "AccelerationScheme" "none"
[     5.582] (**) Logitech Wireless Mouse: (accel) selected scheme none/0
[     5.582] (**) Logitech Wireless Mouse: (accel) acceleration factor: 2.000
[     5.582] (**) Logitech Wireless Mouse: (accel) acceleration threshold: 4
[     5.587] (II) event8  - Logitech Wireless Mouse: is tagged by udev as: Mouse
[     5.587] (II) event8  - Logitech Wireless Mouse: device is a pointer
[     5.590] (II) config/udev: Adding input device Logitech Wireless Mouse (/dev/input/mouse1)
[     5.590] (II) No input driver specified, ignoring this device.
[     5.590] (II) This device may have been added with another device file.
[     5.592] (II) config/udev: Adding input device Logitech K540/K545 (/dev/input/event18)
[     5.593] (**) Logitech K540/K545: Applying InputClass "libinput keyboard catchall"
[     5.593] (**) Logitech K540/K545: Applying InputClass "system-keyboard"
[     5.593] (**) Logitech K540/K545: Applying InputClass "system-keyboard"
[     5.593] (II) Using input driver 'libinput' for 'Logitech K540/K545'
[     5.593] (**) Logitech K540/K545: always reports core events
[     5.593] (**) Option "Device" "/dev/input/event18"
[     5.597] (II) event18 - Logitech K540/K545: is tagged by udev as: Keyboard
[     5.597] (II) event18 - Logitech K540/K545: device is a keyboard
[     5.598] (II) event18 - Logitech K540/K545: device removed
[     5.635] (II) libinput: Logitech K540/K545: needs a virtual subdevice
[     5.635] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:14.0/usb1/1-6/1-6:1.2/0003:046D:C52B.0003/0003:046D:4076.0005/input/input38/event18"
[     5.635] (II) XINPUT: Adding extended input device "Logitech K540/K545" (type: MOUSE, id 12)
[     5.635] (**) Option "AccelerationScheme" "none"
[     5.635] (**) Logitech K540/K545: (accel) selected scheme none/0
[     5.635] (**) Logitech K540/K545: (accel) acceleration factor: 2.000
[     5.635] (**) Logitech K540/K545: (accel) acceleration threshold: 4
[     5.639] (II) event18 - Logitech K540/K545: is tagged by udev as: Keyboard
[     5.639] (II) event18 - Logitech K540/K545: device is a keyboard
[     5.640] (II) config/udev: Adding input device HDA Intel PCH Mic (/dev/input/event9)
[     5.640] (II) No input driver specified, ignoring this device.
[     5.640] (II) This device may have been added with another device file.
[     5.640] (II) config/udev: Adding input device HDA Intel PCH Front Headphone (/dev/input/event12)
[     5.640] (II) No input driver specified, ignoring this device.
[     5.640] (II) This device may have been added with another device file.
[     5.641] (II) config/udev: Adding input device HDA Intel PCH HDMI/DP,pcm=3 (/dev/input/event13)
[     5.641] (II) No input driver specified, ignoring this device.
[     5.641] (II) This device may have been added with another device file.
[     5.641] (II) config/udev: Adding input device HDA Intel PCH HDMI/DP,pcm=7 (/dev/input/event14)
[     5.641] (II) No input driver specified, ignoring this device.
[     5.641] (II) This device may have been added with another device file.
[     5.641] (II) config/udev: Adding input device HDA Intel PCH HDMI/DP,pcm=8 (/dev/input/event15)
[     5.641] (II) No input driver specified, ignoring this device.
[     5.641] (II) This device may have been added with another device file.
[     5.642] (II) config/udev: Adding input device HDA Intel PCH HDMI/DP,pcm=9 (/dev/input/event16)
[     5.642] (II) No input driver specified, ignoring this device.
[     5.642] (II) This device may have been added with another device file.
[     5.642] (II) config/udev: Adding input device HDA Intel PCH HDMI/DP,pcm=10 (/dev/input/event17)
[     5.642] (II) No input driver specified, ignoring this device.
[     5.642] (II) This device may have been added with another device file.
[     5.642] (II) config/udev: Adding input device Intel HID events (/dev/input/event5)
[     5.642] (**) Intel HID events: Applying InputClass "libinput keyboard catchall"
[     5.642] (**) Intel HID events: Applying InputClass "system-keyboard"
[     5.642] (**) Intel HID events: Applying InputClass "system-keyboard"
[     5.642] (II) Using input driver 'libinput' for 'Intel HID events'
[     5.642] (**) Intel HID events: always reports core events
[     5.643] (**) Option "Device" "/dev/input/event5"
[     5.643] (II) event5  - Intel HID events: is tagged by udev as: Keyboard
[     5.643] (II) event5  - Intel HID events: device is a keyboard
[     5.643] (II) event5  - Intel HID events: device removed
[     5.675] (**) Option "config_info" "udev:/sys/devices/platform/INT33D5:00/input/input9/event5"
[     5.675] (II) XINPUT: Adding extended input device "Intel HID events" (type: KEYBOARD, id 13)
[     5.675] (**) Option "xkb_model" "pc105"
[     5.675] (**) Option "xkb_layout" "ro"
[     5.675] (**) Option "xkb_variant" "cedilla,,,"
[     5.678] (II) event5  - Intel HID events: is tagged by udev as: Keyboard
[     5.678] (II) event5  - Intel HID events: device is a keyboard
[     5.680] (II) config/udev: Adding input device AT Translated Set 2 keyboard (/dev/input/event4)
[     5.680] (**) AT Translated Set 2 keyboard: Applying InputClass "libinput keyboard catchall"
[     5.680] (**) AT Translated Set 2 keyboard: Applying InputClass "system-keyboard"
[     5.680] (**) AT Translated Set 2 keyboard: Applying InputClass "system-keyboard"
[     5.680] (II) Using input driver 'libinput' for 'AT Translated Set 2 keyboard'
[     5.680] (**) AT Translated Set 2 keyboard: always reports core events
[     5.680] (**) Option "Device" "/dev/input/event4"
[     5.682] (II) event4  - AT Translated Set 2 keyboard: is tagged by udev as: Keyboard
[     5.683] (II) event4  - AT Translated Set 2 keyboard: device is a keyboard
[     5.685] (II) event4  - AT Translated Set 2 keyboard: device removed
[     5.715] (**) Option "config_info" "udev:/sys/devices/platform/i8042/serio0/input/input4/event4"
[     5.715] (II) XINPUT: Adding extended input device "AT Translated Set 2 keyboard" (type: KEYBOARD, id 14)
[     5.715] (**) Option "xkb_model" "pc105"
[     5.715] (**) Option "xkb_layout" "ro"
[     5.715] (**) Option "xkb_variant" "cedilla,,,"
[     5.718] (II) event4  - AT Translated Set 2 keyboard: is tagged by udev as: Keyboard
[     5.718] (II) event4  - AT Translated Set 2 keyboard: device is a keyboard
[     5.722] (II) config/udev: Adding input device SynPS/2 Synaptics TouchPad (/dev/input/event7)
[     5.722] (**) SynPS/2 Synaptics TouchPad: Applying InputClass "libinput touchpad catchall"
[     5.722] (**) SynPS/2 Synaptics TouchPad: Applying InputClass "touchpad catchall"
[     5.722] (**) SynPS/2 Synaptics TouchPad: Applying InputClass "Default clickpad buttons"
[     5.723] (II) LoadModule: "synaptics"
[     5.723] (II) Loading /usr/lib/xorg/modules/input/synaptics_drv.so
[     5.731] (II) Module synaptics: vendor="X.Org Foundation"
[     5.731] 	compiled for 1.21.1.1, module version = 1.9.1
[     5.731] 	Module class: X.Org XInput Driver
[     5.731] 	ABI class: X.Org XInput driver, version 24.4
[     5.731] (II) Using input driver 'synaptics' for 'SynPS/2 Synaptics TouchPad'
[     5.731] (**) SynPS/2 Synaptics TouchPad: always reports core events
[     5.731] (**) Option "Device" "/dev/input/event7"
[     5.782] (--) synaptics: SynPS/2 Synaptics TouchPad: x-axis range 1266 - 5674 (res 45)
[     5.782] (--) synaptics: SynPS/2 Synaptics TouchPad: y-axis range 1086 - 4764 (res 70)
[     5.782] (--) synaptics: SynPS/2 Synaptics TouchPad: pressure range 0 - 255
[     5.782] (--) synaptics: SynPS/2 Synaptics TouchPad: finger width range 0 - 15
[     5.782] (--) synaptics: SynPS/2 Synaptics TouchPad: buttons: left right double triple
[     5.782] (--) synaptics: SynPS/2 Synaptics TouchPad: Vendor 0x2 Product 0x7
[     5.782] (--) synaptics: SynPS/2 Synaptics TouchPad: touchpad found
[     5.782] (**) SynPS/2 Synaptics TouchPad: always reports core events
[     5.848] (**) Option "config_info" "udev:/sys/devices/platform/i8042/serio2/input/input16/event7"
[     5.848] (II) XINPUT: Adding extended input device "SynPS/2 Synaptics TouchPad" (type: TOUCHPAD, id 15)
[     5.848] (**) synaptics: SynPS/2 Synaptics TouchPad: (accel) MinSpeed is now constant deceleration 2.5
[     5.848] (**) synaptics: SynPS/2 Synaptics TouchPad: (accel) MaxSpeed is now 1.75
[     5.848] (**) synaptics: SynPS/2 Synaptics TouchPad: (accel) AccelFactor is now 0.035
[     5.849] (**) SynPS/2 Synaptics TouchPad: (accel) keeping acceleration scheme 1
[     5.849] (**) SynPS/2 Synaptics TouchPad: (accel) acceleration profile 1
[     5.849] (**) SynPS/2 Synaptics TouchPad: (accel) acceleration factor: 2.000
[     5.849] (**) SynPS/2 Synaptics TouchPad: (accel) acceleration threshold: 4
[     5.849] (--) synaptics: SynPS/2 Synaptics TouchPad: touchpad found
[     5.850] (II) config/udev: Adding input device SynPS/2 Synaptics TouchPad (/dev/input/mouse0)
[     5.850] (**) SynPS/2 Synaptics TouchPad: Ignoring device from InputClass "touchpad ignore duplicates"
[     5.851] (II) config/udev: Adding input device PC Speaker (/dev/input/event10)
[     5.852] (II) No input driver specified, ignoring this device.
[     5.852] (II) This device may have been added with another device file.
[     5.869] (**) Logitech K540/K545: Applying InputClass "libinput keyboard catchall"
[     5.869] (**) Logitech K540/K545: Applying InputClass "system-keyboard"
[     5.869] (**) Logitech K540/K545: Applying InputClass "system-keyboard"
[     5.869] (II) Using input driver 'libinput' for 'Logitech K540/K545'
[     5.869] (**) Logitech K540/K545: always reports core events
[     5.869] (**) Option "Device" "/dev/input/event18"
[     5.869] (II) libinput: Logitech K540/K545: is a virtual subdevice
[     5.869] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:14.0/usb1/1-6/1-6:1.2/0003:046D:C52B.0003/0003:046D:4076.0005/input/input38/event18"
[     5.869] (II) XINPUT: Adding extended input device "Logitech K540/K545" (type: KEYBOARD, id 16)
[     5.869] (**) Option "xkb_model" "pc105"
[     5.869] (**) Option "xkb_layout" "ro"
[     5.869] (**) Option "xkb_variant" "cedilla,,,"
[     5.985] (II) config/udev: removing device Chicony USB2.0 Camera: Chicony 
[     5.986] (II) event6  - Chicony USB2.0 Camera: Chicony : device removed
[     6.048] (II) UnloadModule: "libinput"
[     6.049] (II) config/udev: Adding input device Chicony USB2.0 Camera: Chicony  (/dev/input/event6)
[     6.049] (**) Chicony USB2.0 Camera: Chicony : Applying InputClass "libinput keyboard catchall"
[     6.049] (**) Chicony USB2.0 Camera: Chicony : Applying InputClass "system-keyboard"
[     6.049] (**) Chicony USB2.0 Camera: Chicony : Applying InputClass "system-keyboard"
[     6.049] (II) Using input driver 'libinput' for 'Chicony USB2.0 Camera: Chicony '
[     6.049] (**) Chicony USB2.0 Camera: Chicony : always reports core events
[     6.049] (**) Option "Device" "/dev/input/event6"
[     6.053] (II) event6  - Chicony USB2.0 Camera: Chicony : is tagged by udev as: Keyboard
[     6.053] (II) event6  - Chicony USB2.0 Camera: Chicony : device is a keyboard
[     6.054] (II) event6  - Chicony USB2.0 Camera: Chicony : device removed
[     6.115] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:14.0/usb1/1-5/1-5:1.0/input/input19/event6"
[     6.115] (II) XINPUT: Adding extended input device "Chicony USB2.0 Camera: Chicony " (type: KEYBOARD, id 10)
[     6.115] (**) Option "xkb_model" "pc105"
[     6.115] (**) Option "xkb_layout" "ro"
[     6.115] (**) Option "xkb_variant" "cedilla,,,"
[     6.119] (II) event6  - Chicony USB2.0 Camera: Chicony : is tagged by udev as: Keyboard
[     6.119] (II) event6  - Chicony USB2.0 Camera: Chicony : device is a keyboard
[     6.120] (II) config/udev: removing device SynPS/2 Synaptics TouchPad
[     6.195] (II) UnloadModule: "synaptics"
[     6.196] (II) config/udev: Adding input device SynPS/2 Synaptics TouchPad (/dev/input/event7)
[     6.196] (**) SynPS/2 Synaptics TouchPad: Applying InputClass "libinput touchpad catchall"
[     6.196] (**) SynPS/2 Synaptics TouchPad: Applying InputClass "touchpad catchall"
[     6.196] (**) SynPS/2 Synaptics TouchPad: Applying InputClass "Default clickpad buttons"
[     6.196] (II) Using input driver 'synaptics' for 'SynPS/2 Synaptics TouchPad'
[     6.196] (**) SynPS/2 Synaptics TouchPad: always reports core events
[     6.196] (**) Option "Device" "/dev/input/event7"
[     6.262] (--) synaptics: SynPS/2 Synaptics TouchPad: x-axis range 1266 - 5674 (res 45)
[     6.262] (--) synaptics: SynPS/2 Synaptics TouchPad: y-axis range 1086 - 4764 (res 70)
[     6.262] (--) synaptics: SynPS/2 Synaptics TouchPad: pressure range 0 - 255
[     6.262] (--) synaptics: SynPS/2 Synaptics TouchPad: finger width range 0 - 15
[     6.262] (--) synaptics: SynPS/2 Synaptics TouchPad: buttons: left right double triple
[     6.262] (--) synaptics: SynPS/2 Synaptics TouchPad: Vendor 0x2 Product 0x7
[     6.262] (--) synaptics: SynPS/2 Synaptics TouchPad: touchpad found
[     6.262] (**) SynPS/2 Synaptics TouchPad: always reports core events
[     6.328] (**) Option "config_info" "udev:/sys/devices/platform/i8042/serio2/input/input16/event7"
[     6.328] (II) XINPUT: Adding extended input device "SynPS/2 Synaptics TouchPad" (type: TOUCHPAD, id 15)
[     6.328] (**) synaptics: SynPS/2 Synaptics TouchPad: (accel) MinSpeed is now constant deceleration 2.5
[     6.328] (**) synaptics: SynPS/2 Synaptics TouchPad: (accel) MaxSpeed is now 1.75
[     6.328] (**) synaptics: SynPS/2 Synaptics TouchPad: (accel) AccelFactor is now 0.035
[     6.329] (**) SynPS/2 Synaptics TouchPad: (accel) keeping acceleration scheme 1
[     6.329] (**) SynPS/2 Synaptics TouchPad: (accel) acceleration profile 1
[     6.329] (**) SynPS/2 Synaptics TouchPad: (accel) acceleration factor: 2.000
[     6.329] (**) SynPS/2 Synaptics TouchPad: (accel) acceleration threshold: 4
[     6.329] (--) synaptics: SynPS/2 Synaptics TouchPad: touchpad found
[     6.330] (II) config/udev: Adding input device SynPS/2 Synaptics TouchPad (/dev/input/mouse0)
[     6.330] (**) SynPS/2 Synaptics TouchPad: Ignoring device from InputClass "touchpad ignore duplicates"
[     6.334] (II) config/udev: Adding input device HDA Intel PCH HDMI/DP,pcm=7 (/dev/input/event14)
[     6.334] (II) No input driver specified, ignoring this device.
[     6.334] (II) This device may have been added with another device file.
[     6.334] (II) config/udev: Adding input device HDA Intel PCH HDMI/DP,pcm=10 (/dev/input/event17)
[     6.334] (II) No input driver specified, ignoring this device.
[     6.334] (II) This device may have been added with another device file.
[     6.335] (II) config/udev: Adding input device HDA Intel PCH Front Headphone (/dev/input/event12)
[     6.335] (II) No input driver specified, ignoring this device.
[     6.335] (II) This device may have been added with another device file.
[     6.335] (II) config/udev: Adding input device HDA Intel PCH HDMI/DP,pcm=3 (/dev/input/event13)
[     6.335] (II) No input driver specified, ignoring this device.
[     6.335] (II) This device may have been added with another device file.
[     6.335] (II) config/udev: Adding input device HDA Intel PCH HDMI/DP,pcm=9 (/dev/input/event16)
[     6.335] (II) No input driver specified, ignoring this device.
[     6.335] (II) This device may have been added with another device file.
[     6.336] (II) config/udev: Adding input device HDA Intel PCH HDMI/DP,pcm=8 (/dev/input/event15)
[     6.336] (II) No input driver specified, ignoring this device.
[     6.336] (II) This device may have been added with another device file.
[     6.336] (II) config/udev: Adding input device Logitech Wireless Mouse (/dev/input/mouse1)
[     6.336] (II) No input driver specified, ignoring this device.
[     6.336] (II) This device may have been added with another device file.
[     6.337] (II) config/udev: Adding input device HDA Intel PCH Mic (/dev/input/event9)
[     6.337] (II) No input driver specified, ignoring this device.
[     6.337] (II) This device may have been added with another device file.
[     6.337] (II) config/udev: removing device Logitech Wireless Mouse
[     6.337] (II) event8  - Logitech Wireless Mouse: device removed
[     6.401] (II) UnloadModule: "libinput"
[     6.402] (II) config/udev: Adding input device Logitech Wireless Mouse (/dev/input/event8)
[     6.402] (**) Logitech Wireless Mouse: Applying InputClass "libinput pointer catchall"
[     6.402] (II) Using input driver 'libinput' for 'Logitech Wireless Mouse'
[     6.402] (**) Logitech Wireless Mouse: always reports core events
[     6.402] (**) Option "Device" "/dev/input/event8"
[     6.403] (II) event8  - Logitech Wireless Mouse: is tagged by udev as: Mouse
[     6.403] (II) event8  - Logitech Wireless Mouse: device is a pointer
[     6.403] (II) event8  - Logitech Wireless Mouse: device removed
[     6.475] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:14.0/usb1/1-6/1-6:1.2/0003:046D:C52B.0003/0003:046D:4055.0004/input/input32/event8"
[     6.475] (II) XINPUT: Adding extended input device "Logitech Wireless Mouse" (type: MOUSE, id 11)
[     6.475] (**) Option "AccelerationScheme" "none"
[     6.475] (**) Logitech Wireless Mouse: (accel) selected scheme none/0
[     6.475] (**) Logitech Wireless Mouse: (accel) acceleration factor: 2.000
[     6.475] (**) Logitech Wireless Mouse: (accel) acceleration threshold: 4
[     6.477] (II) event8  - Logitech Wireless Mouse: is tagged by udev as: Mouse
[     6.478] (II) event8  - Logitech Wireless Mouse: device is a pointer
[     6.478] (II) config/udev: removing device Logitech K540/K545
[     6.478] (II) UnloadModule: "libinput"
[     6.478] (II) config/udev: removing device Logitech K540/K545
[     6.478] (II) event18 - Logitech K540/K545: device removed
[     6.515] (II) UnloadModule: "libinput"
[     6.517] (II) config/udev: Adding input device Logitech K540/K545 (/dev/input/event18)
[     6.517] (**) Logitech K540/K545: Applying InputClass "libinput keyboard catchall"
[     6.517] (**) Logitech K540/K545: Applying InputClass "system-keyboard"
[     6.517] (**) Logitech K540/K545: Applying InputClass "system-keyboard"
[     6.517] (II) Using input driver 'libinput' for 'Logitech K540/K545'
[     6.517] (**) Logitech K540/K545: always reports core events
[     6.517] (**) Option "Device" "/dev/input/event18"
[     6.520] (II) event18 - Logitech K540/K545: is tagged by udev as: Keyboard
[     6.520] (II) event18 - Logitech K540/K545: device is a keyboard
[     6.521] (II) event18 - Logitech K540/K545: device removed
[     6.555] (II) libinput: Logitech K540/K545: needs a virtual subdevice
[     6.555] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:14.0/usb1/1-6/1-6:1.2/0003:046D:C52B.0003/0003:046D:4076.0005/input/input38/event18"
[     6.555] (II) XINPUT: Adding extended input device "Logitech K540/K545" (type: MOUSE, id 12)
[     6.555] (**) Option "AccelerationScheme" "none"
[     6.555] (**) Logitech K540/K545: (accel) selected scheme none/0
[     6.555] (**) Logitech K540/K545: (accel) acceleration factor: 2.000
[     6.555] (**) Logitech K540/K545: (accel) acceleration threshold: 4
[     6.558] (II) event18 - Logitech K540/K545: is tagged by udev as: Keyboard
[     6.558] (II) event18 - Logitech K540/K545: device is a keyboard
[     6.559] (**) Logitech K540/K545: Applying InputClass "libinput keyboard catchall"
[     6.559] (**) Logitech K540/K545: Applying InputClass "system-keyboard"
[     6.559] (**) Logitech K540/K545: Applying InputClass "system-keyboard"
[     6.559] (II) Using input driver 'libinput' for 'Logitech K540/K545'
[     6.559] (**) Logitech K540/K545: always reports core events
[     6.559] (**) Option "Device" "/dev/input/event18"
[     6.559] (II) libinput: Logitech K540/K545: is a virtual subdevice
[     6.559] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:14.0/usb1/1-6/1-6:1.2/0003:046D:C52B.0003/0003:046D:4076.0005/input/input38/event18"
[     6.559] (II) XINPUT: Adding extended input device "Logitech K540/K545" (type: KEYBOARD, id 16)
[     6.559] (**) Option "xkb_model" "pc105"
[     6.559] (**) Option "xkb_layout" "ro"
[     6.559] (**) Option "xkb_variant" "cedilla,,,"
[    17.751] (II) modeset(0): EDID vendor "CHD", prod id 576
[    17.751] (II) modeset(0): Using EDID range info for horizontal sync
[    17.751] (II) modeset(0): Using EDID range info for vertical refresh
[    17.751] (II) modeset(0): Printing DDC gathered Modelines:
[    17.751] (II) modeset(0): Modeline "1920x1080"x0.0  148.50  1920 2008 2052 2200  1080 1084 1089 1125 +hsync -vsync (67.5 kHz eP)
[    17.751] (II) modeset(0): Modeline "1920x1080"x0.0  138.50  1920 1968 2000 2080  1080 1083 1088 1110 +hsync -vsync (66.6 kHz e)
[    17.751] (II) modeset(0): Modeline "1366x768"x0.0   85.50  1366 1436 1579 1792  768 771 774 798 +hsync +vsync (47.7 kHz e)
[    17.751] (II) modeset(0): Modeline "1280x720"x0.0   74.25  1280 1390 1430 1650  720 725 730 750 +hsync +vsync (45.0 kHz e)
[    17.751] (II) modeset(0): Modeline "720x480"x0.0   27.00  720 736 798 858  480 489 495 525 -hsync -vsync (31.5 kHz e)
[    17.751] (II) modeset(0): Modeline "1280x768i"x0.0   79.50  1280 1328 1360 1664  768 771 778 798 interlace +hsync +vsync (47.8 kHz e)
[    17.751] (II) modeset(0): Modeline "1920x1080"x0.0  148.50  1920 2008 2052 2200  1080 1084 1089 1125 +hsync +vsync (67.5 kHz e)
[    17.751] (II) modeset(0): Modeline "1920x1080i"x0.0   74.25  1920 2008 2052 2200  1080 1084 1094 1125 interlace +hsync +vsync (33.8 kHz e)
[    17.751] (II) modeset(0): Modeline "640x480"x0.0   25.18  640 656 752 800  480 490 492 525 -hsync -vsync (31.5 kHz e)
[    17.751] (II) modeset(0): Modeline "720x576"x0.0   27.00  720 732 796 864  576 581 586 625 -hsync -vsync (31.2 kHz e)
[    17.751] (II) modeset(0): Modeline "1280x720"x0.0   74.25  1280 1720 1760 1980  720 725 730 750 +hsync +vsync (37.5 kHz e)
[    17.751] (II) modeset(0): Modeline "1920x1080i"x0.0   74.25  1920 2448 2492 2640  1080 1084 1094 1125 interlace +hsync +vsync (28.1 kHz e)
[    17.751] (II) modeset(0): Modeline "1920x1080"x0.0  148.50  1920 2448 2492 2640  1080 1084 1089 1125 +hsync +vsync (56.2 kHz e)
[    17.751] (II) modeset(0): Modeline "800x600"x0.0   40.00  800 840 968 1056  600 601 605 628 +hsync +vsync (37.9 kHz e)
[    17.751] (II) modeset(0): Modeline "800x600"x0.0   36.00  800 824 896 1024  600 601 603 625 +hsync +vsync (35.2 kHz e)
[    17.751] (II) modeset(0): Modeline "640x480"x0.0   31.50  640 656 720 840  480 481 484 500 -hsync -vsync (37.5 kHz e)
[    17.751] (II) modeset(0): Modeline "640x480"x0.0   31.50  640 664 704 832  480 489 492 520 -hsync -vsync (37.9 kHz e)
[    17.751] (II) modeset(0): Modeline "640x480"x0.0   30.24  640 704 768 864  480 483 486 525 -hsync -vsync (35.0 kHz e)
[    17.751] (II) modeset(0): Modeline "720x400"x0.0   28.32  720 738 846 900  400 412 414 449 -hsync +vsync (31.5 kHz e)
[    17.751] (II) modeset(0): Modeline "1280x1024"x0.0  135.00  1280 1296 1440 1688  1024 1025 1028 1066 +hsync +vsync (80.0 kHz e)
[    17.751] (II) modeset(0): Modeline "1024x768"x0.0   78.75  1024 1040 1136 1312  768 769 772 800 +hsync +vsync (60.0 kHz e)
[    17.751] (II) modeset(0): Modeline "1024x768"x0.0   75.00  1024 1048 1184 1328  768 771 777 806 -hsync -vsync (56.5 kHz e)
[    17.751] (II) modeset(0): Modeline "1024x768"x0.0   65.00  1024 1048 1184 1344  768 771 777 806 -hsync -vsync (48.4 kHz e)
[    17.751] (II) modeset(0): Modeline "832x624"x0.0   57.28  832 864 928 1152  624 625 628 667 -hsync -vsync (49.7 kHz e)
[    17.751] (II) modeset(0): Modeline "800x600"x0.0   49.50  800 816 896 1056  600 601 604 625 +hsync +vsync (46.9 kHz e)
[    17.751] (II) modeset(0): Modeline "800x600"x0.0   50.00  800 856 976 1040  600 637 643 666 +hsync +vsync (48.1 kHz e)
[    17.751] (II) modeset(0): Modeline "1152x864"x0.0  108.00  1152 1216 1344 1600  864 865 868 900 +hsync +vsync (67.5 kHz e)
[    17.751] (II) modeset(0): Modeline "1280x1024"x0.0  108.00  1280 1328 1440 1688  1024 1025 1028 1066 +hsync +vsync (64.0 kHz e)
[    17.751] (II) modeset(0): Modeline "1280x960"x0.0  108.00  1280 1376 1488 1800  960 961 964 1000 +hsync +vsync (60.0 kHz e)
[    17.751] (II) modeset(0): Modeline "1440x900"x0.0   88.75  1440 1488 1520 1600  900 903 909 926 +hsync -vsync (55.5 kHz e)
[    17.751] (II) modeset(0): Modeline "1600x1200"x0.0  162.00  1600 1664 1856 2160  1200 1201 1204 1250 +hsync +vsync (75.0 kHz e)
[    17.751] (II) modeset(0): Modeline "1680x1050"x0.0  119.00  1680 1728 1760 1840  1050 1053 1059 1080 +hsync -vsync (64.7 kHz e)
[    17.751] (II) modeset(0): Modeline "1600x900"x60.0  119.00  1600 1696 1864 2128  900 901 904 932 -hsync +vsync (55.9 kHz e)
[  1048.741] (EE) event18 - Logitech K540/K545: client bug: event processing lagging behind by 26ms, your system is too slow
[  1663.562] (II) modeset(0): EDID vendor "CHD", prod id 576
[  1663.563] (II) modeset(0): Using hsync ranges from config file
[  1663.563] (II) modeset(0): Using vrefresh ranges from config file
[  1663.563] (II) modeset(0): Printing DDC gathered Modelines:
[  1663.563] (II) modeset(0): Modeline "1920x1080"x0.0  148.50  1920 2008 2052 2200  1080 1084 1089 1125 +hsync -vsync (67.5 kHz eP)
[  1663.563] (II) modeset(0): Modeline "1920x1080"x0.0  138.50  1920 1968 2000 2080  1080 1083 1088 1110 +hsync -vsync (66.6 kHz e)
[  1663.563] (II) modeset(0): Modeline "1366x768"x0.0   85.50  1366 1436 1579 1792  768 771 774 798 +hsync +vsync (47.7 kHz e)
[  1663.563] (II) modeset(0): Modeline "1280x720"x0.0   74.25  1280 1390 1430 1650  720 725 730 750 +hsync +vsync (45.0 kHz e)
[  1663.563] (II) modeset(0): Modeline "720x480"x0.0   27.00  720 736 798 858  480 489 495 525 -hsync -vsync (31.5 kHz e)
[  1663.563] (II) modeset(0): Modeline "1280x768i"x0.0   79.50  1280 1328 1360 1664  768 771 778 798 interlace +hsync +vsync (47.8 kHz e)
[  1663.563] (II) modeset(0): Modeline "1920x1080"x0.0  148.50  1920 2008 2052 2200  1080 1084 1089 1125 +hsync +vsync (67.5 kHz e)
[  1663.563] (II) modeset(0): Modeline "1920x1080i"x0.0   74.25  1920 2008 2052 2200  1080 1084 1094 1125 interlace +hsync +vsync (33.8 kHz e)
[  1663.563] (II) modeset(0): Modeline "640x480"x0.0   25.18  640 656 752 800  480 490 492 525 -hsync -vsync (31.5 kHz e)
[  1663.563] (II) modeset(0): Modeline "720x576"x0.0   27.00  720 732 796 864  576 581 586 625 -hsync -vsync (31.2 kHz e)
[  1663.563] (II) modeset(0): Modeline "1280x720"x0.0   74.25  1280 1720 1760 1980  720 725 730 750 +hsync +vsync (37.5 kHz e)
[  1663.563] (II) modeset(0): Modeline "1920x1080i"x0.0   74.25  1920 2448 2492 2640  1080 1084 1094 1125 interlace +hsync +vsync (28.1 kHz e)
[  1663.563] (II) modeset(0): Modeline "1920x1080"x0.0  148.50  1920 2448 2492 2640  1080 1084 1089 1125 +hsync +vsync (56.2 kHz e)
[  1663.563] (II) modeset(0): Modeline "800x600"x0.0   40.00  800 840 968 1056  600 601 605 628 +hsync +vsync (37.9 kHz e)
[  1663.563] (II) modeset(0): Modeline "800x600"x0.0   36.00  800 824 896 1024  600 601 603 625 +hsync +vsync (35.2 kHz e)
[  1663.563] (II) modeset(0): Modeline "640x480"x0.0   31.50  640 656 720 840  480 481 484 500 -hsync -vsync (37.5 kHz e)
[  1663.563] (II) modeset(0): Modeline "640x480"x0.0   31.50  640 664 704 832  480 489 492 520 -hsync -vsync (37.9 kHz e)
[  1663.563] (II) modeset(0): Modeline "640x480"x0.0   30.24  640 704 768 864  480 483 486 525 -hsync -vsync (35.0 kHz e)
[  1663.563] (II) modeset(0): Modeline "720x400"x0.0   28.32  720 738 846 900  400 412 414 449 -hsync +vsync (31.5 kHz e)
[  1663.563] (II) modeset(0): Modeline "1280x1024"x0.0  135.00  1280 1296 1440 1688  1024 1025 1028 1066 +hsync +vsync (80.0 kHz e)
[  1663.563] (II) modeset(0): Modeline "1024x768"x0.0   78.75  1024 1040 1136 1312  768 769 772 800 +hsync +vsync (60.0 kHz e)
[  1663.563] (II) modeset(0): Modeline "1024x768"x0.0   75.00  1024 1048 1184 1328  768 771 777 806 -hsync -vsync (56.5 kHz e)
[  1663.563] (II) modeset(0): Modeline "1024x768"x0.0   65.00  1024 1048 1184 1344  768 771 777 806 -hsync -vsync (48.4 kHz e)
[  1663.563] (II) modeset(0): Modeline "832x624"x0.0   57.28  832 864 928 1152  624 625 628 667 -hsync -vsync (49.7 kHz e)
[  1663.563] (II) modeset(0): Modeline "800x600"x0.0   49.50  800 816 896 1056  600 601 604 625 +hsync +vsync (46.9 kHz e)
[  1663.563] (II) modeset(0): Modeline "800x600"x0.0   50.00  800 856 976 1040  600 637 643 666 +hsync +vsync (48.1 kHz e)
[  1663.563] (II) modeset(0): Modeline "1152x864"x0.0  108.00  1152 1216 1344 1600  864 865 868 900 +hsync +vsync (67.5 kHz e)
[  1663.563] (II) modeset(0): Modeline "1280x1024"x0.0  108.00  1280 1328 1440 1688  1024 1025 1028 1066 +hsync +vsync (64.0 kHz e)
[  1663.563] (II) modeset(0): Modeline "1280x960"x0.0  108.00  1280 1376 1488 1800  960 961 964 1000 +hsync +vsync (60.0 kHz e)
[  1663.563] (II) modeset(0): Modeline "1440x900"x0.0   88.75  1440 1488 1520 1600  900 903 909 926 +hsync -vsync (55.5 kHz e)
[  1663.563] (II) modeset(0): Modeline "1600x1200"x0.0  162.00  1600 1664 1856 2160  1200 1201 1204 1250 +hsync +vsync (75.0 kHz e)
[  1663.563] (II) modeset(0): Modeline "1680x1050"x0.0  119.00  1680 1728 1760 1840  1050 1053 1059 1080 +hsync -vsync (64.7 kHz e)
[  1663.563] (II) modeset(0): Modeline "1600x900"x60.0  119.00  1600 1696 1864 2128  900 901 904 932 -hsync +vsync (55.9 kHz e)

Last edited by liviubiur (2022-03-14 15:11:35)

Offline

#24 2022-03-14 15:32:53

liviubiur
Member
Registered: 2016-07-02
Posts: 22

Re: Ugly font rendering. Wrong dimensions detected by xdpyinfo and xrandr

I created this script (2 lines because this is what I found here https://linuxreviews.org/HOWTO_set_DPI_in_Xorg

cat /etc/lightdm/Xsetup 
xrandr --dpi 92
xrandr --dpi 92

and I inserted it in the lightdm.conf file as that

display-setup-script=/etc/lightdm/Xsetup

After that the DPI value is still 96.

xdpyinfo | grep -B2 resolution
screen #0:
  dimensions:    3840x1080 pixels (1016x286 millimeters)
  resolution:    96x96 dots per inch

Offline

#25 2022-03-14 15:45:42

seth
Member
From: Won't reply 2 private help req
Registered: 2012-09-03
Posts: 77,275

Re: Ugly font rendering. Wrong dimensions detected by xdpyinfo and xrandr

You'll require that call only once, but the script needs to be executable and probably wouldn't suffer from a shebang either.
With the fiondings in #23 however this might be too early because I start to suspect that the session (gnome? xfce? …?)  steamrolls a DPI over the server, so you'd have to fix it there.

Offline

Board footer

Powered by FluxBB