yshui / picom

A lightweight compositor for X11 with animation support
https://picom.app/
Other
4.13k stars 589 forks source link

xset dpms force off: blank screen w/ mouse only after wakeup #315

Closed Un1Gfn closed 4 years ago

Un1Gfn commented 4 years ago

xset dpms force off: blank screen w/ mouse only after wakeup

Platform

Thinkpad X200

Arch Linux

Linux HP-Arch 5.5.4-arch1-1 #1 SMP PREEMPT Sat, 15 Feb 2020 00:36:29 +0000 x86_64 GNU/Linux
biosdecode ``` # biosdecode 3.2 VPD present. BIOS Build ID: 7XET72WW Box Serial Number: R8GHBZF Motherboard Serial Number: 1ZG95982124 Machine Type/Model: 745496U SMBIOS 2.4 present. Structure Table Length: 2493 bytes Structure Table Address: 0x000E0010 Number Of Structures: 68 Maximum Structure Size: 120 bytes BIOS32 Service Directory present. Revision: 0 Calling Interface Address: 0x000FDC80 ACPI 2.0 present. OEM Identifier: LENOVO RSD Table 32-bit Address: 0xBDB5B6BC XSD Table 64-bit Address: 0x00000000BDB5B728 Intel Multiprocessor present. Specification Revision: 1.4 Configuration Table Address: 0x0009F071 Mode: Virtual Wire PNP BIOS 1.0 present. Event Notification: Not Supported Real Mode 16-bit Code Address: E2DB:17A6 Real Mode 16-bit Data Address: 0040:0000 16-bit Protected Mode Code Address: 0x000F97C7 16-bit Protected Mode Data Address: 0x00000400 ```
dmidecode -t bios ``` # dmidecode 3.2 Getting SMBIOS data from sysfs. SMBIOS 2.4 present. Handle 0x0000, DMI type 0, 24 bytes BIOS Information Vendor: LENOVO Version: 7XET72WW (3.22 ) Release Date: 11/22/2012 Address: 0xE0000 Runtime Size: 128 kB ROM Size: 4096 kB Characteristics: PCI is supported PC Card (PCMCIA) is supported PNP is supported BIOS is upgradeable BIOS shadowing is allowed ESCD support is available Boot from CD is supported Selectable boot is supported BIOS ROM is socketed EDD is supported ACPI is supported USB legacy is supported BIOS boot specification is supported Targeted content distribution is supported BIOS Revision: 3.34 Firmware Revision: 1.6 Handle 0x001E, DMI type 13, 22 bytes BIOS Language Information Language Description Format: Abbreviated Installable Languages: 1 enUS Currently Installed Language: enUS ```
lspci | grep -e 'VGA' -e 'Display' | cut -d" " -f 1 | xargs -i lspci -vvv -xxxx -s {} ``` 00:02.0 VGA compatible controller: Intel Corporation Mobile 4 Series Chipset Integrated Graphics Controller (rev 07) (prog-if 00 [VGA controller]) Subsystem: Lenovo Mobile 4 Series Chipset Integrated Graphics Controller Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx- Status: Cap+ 66MHz- UDF- FastB2B+ ParErr- DEVSEL=fast >TAbort- SERR- TAbort- SERR-

GPU, drivers, and screen setup

Built-in laptop screen only

Intel GM45

$ pacman -Qs xf86-video
local/xf86-video-intel 1:2.99.917+899+gf66d3954-1 (xorg-drivers)
    X.org Intel i810/i830/i915/945G/G965+ video drivers
$ pacman -Qs mesa
local/glu 9.0.1-1
    Mesa OpenGL Utility library
local/mesa 19.3.4-2
    An open-source implementation of the OpenGL specification
local/mesa-demos 8.4.0-2
    Mesa demos and tools incl. glxinfo + glxgears
local/vulkan-intel 19.3.4-2
    Intel's Vulkan mesa driver
glxinfo -B ``` name of display: :0 display: :0 screen: 0 direct rendering: Yes Extended renderer info (GLX_MESA_query_renderer): Vendor: Intel Open Source Technology Center (0x8086) Device: Mesa DRI Mobile Intel® GM45 Express Chipset (0x2a42) Version: 19.3.4 Accelerated: yes Video memory: 1536MB Unified memory: yes Preferred profile: compat (0x2) Max core profile version: 0.0 Max compat profile version: 2.1 Max GLES1 profile version: 1.1 Max GLES[23] profile version: 2.0 OpenGL vendor string: Intel Open Source Technology Center OpenGL renderer string: Mesa DRI Mobile Intel® GM45 Express Chipset OpenGL version string: 2.1 Mesa 19.3.4 OpenGL shading language version string: 1.20 OpenGL ES profile version string: OpenGL ES 2.0 Mesa 19.3.4 OpenGL ES profile shading language version string: OpenGL ES GLSL ES 1.0.16 ```
xrandr ``` Screen 0: minimum 320 x 200, current 1280 x 800, maximum 8192 x 8192 LVDS1 connected primary 1280x800+0+0 (normal left inverted right x axis y axis) 261mm x 163mm 1280x800 59.99*+ 59.81 59.91 50.00 1280x720 59.86 59.74 1024x768 60.00 1024x576 59.90 59.82 960x540 59.63 59.82 800x600 60.32 56.25 864x486 59.92 59.57 640x480 59.94 720x405 59.51 58.99 640x360 59.84 59.32 VGA1 disconnected (normal left inverted right x axis y axis) HDMI1 disconnected (normal left inverted right x axis y axis) DP1 disconnected (normal left inverted right x axis y axis) HDMI2 disconnected (normal left inverted right x axis y axis) DP2 disconnected (normal left inverted right x axis y axis) DP3 disconnected (normal left inverted right x axis y axis) ```

Environment

$ i3 --version
i3 version 4.17.1 (2019-08-30) © 2009 Michael Stapelberg and contributors
/home/darren/.xinitrc ```bash #!/bin/sh userresources=$HOME/.Xresources usermodmap=$HOME/.Xmodmap sysresources=/etc/X11/xinit/.Xresources sysmodmap=/etc/X11/xinit/.Xmodmap if [ -f $sysresources ]; then xrdb -merge $sysresources fi if [ -f $sysmodmap ]; then xmodmap $sysmodmap fi if [ -f "$userresources" ]; then xrdb -merge "$userresources" fi if [ -f "$usermodmap" ]; then xmodmap "$usermodmap" fi if [ -d /etc/X11/xinit/xinitrc.d ] ; then for f in /etc/X11/xinit/xinitrc.d/?*.sh ; do [ -x "$f" ] && . "$f" done unset f fi [[ -f /home/darren/.Xmodmap ]] && xmodmap /home/darren/.Xmodmap /usr/bin/fcitx &>/dev/null & /usr/lib/polkit-gnome/polkit-gnome-authentication-agent-1 &>/dev/null & /usr/bin/picom --config /home/darren/.picom.conf &>/dev/null & echo '6500' >/tmp/color_temperature mkdir -p /home/darren/.i3/log.d exec i3 -c /home/darren/.i3/i3.config -V >> /home/darren/.i3/log.d/i3log-$(date +'%F-%k-%M-%S') 2>&1 ```

picom version

version & diagnostics ``` $ picom --version v7.5 $ picom --config /home/darren/.picom.conf --diagnostics [ 02/17/2020 17:11:07.089 session_init INFO ] Switching to log file: /home/darren/.picom.log **Version:** v7.5 ### Extensions: * Shape: Yes * XRandR: Yes * Present: Present ### Misc: * Use Overlay: Yes * Config file used: /home/darren/.picom.conf ### Drivers (inaccurate): Intel ```

Configuration:

/etc/X11/xorg.conf.d/10-monitor.conf ```bash Section "Monitor" Identifier "LVDS0" Option "DPMS" "false" EndSection Section "ServerLayout" Identifier "ServerLayout0" Option "StandbyTime" "0" Option "SuspendTime" "0" Option "OffTime" "0" Option "BlankTime" "0" EndSection ```
/etc/X11/xorg.conf.d/20-intel.conf ```bash Section "Device" Identifier "Intel Graphics" Driver "intel" Option "Accel" "true" Option "AccelMethod" "UXA" EndSection ```
/home/darren/.picom.conf ``` log-level = "debug"; log-file = "~/.picom.log"; backend = "glx"; glx-no-stencil = true; shadow = false; inactive-opacity = 1; active-opacity = 1; frame-opacity = 1; fading = false; vsync = true; ```

Steps of reproduction

cold boot
root login on tty2

:> /home/darren/.local/share/xorg/Xorg.0.log
:> /home/darren/.local/share/xorg/Xorg.0.log.old
:> /home/darren/.picom.log

darren login on tty1
startx

xset dpms force off, screen off
wait for 2 seconds
wake up screen w/ trackpoint
everything shows up again

xset dpms force off, screen off
wait for 5 seconds
wake up screen w/ trackpoint
blank screen w/ mouse only
Ctrl-Alt-F2 switch to tty2
Ctrl-Alt-F1 switch back to tty1
everything shows up again

killall picom
xset dpms force off, screen off
wait for 5 seconds
wake up screen w/ trackpoint
everything shows up again

Expected behavior

compton running seconds before waking up screen
2 everything shows up again
5 everything shows up again
O 2 everything shows up again
O 5 everything shows up again

Current Behavior

compton running seconds before waking up screen
2 everything shows up again
5 everything shows up again
O 2 everything shows up again
O 5 blank screen w/ mouse only

Other details

/home/darren/.picom.log ``` [ 02/17/2020 19:26:13.131 atom_getter DEBUG ] Atom _NET_WM_WINDOW_OPACITY is 365 [ 02/17/2020 19:26:13.132 atom_getter DEBUG ] Atom _NET_FRAME_EXTENTS is 326 [ 02/17/2020 19:26:13.133 atom_getter DEBUG ] Atom WM_STATE is 366 [ 02/17/2020 19:26:13.133 atom_getter DEBUG ] Atom _NET_WM_NAME is 332 [ 02/17/2020 19:26:13.133 atom_getter DEBUG ] Atom _NET_WM_PID is 333 [ 02/17/2020 19:26:13.133 atom_getter DEBUG ] Atom WM_NAME is 39 [ 02/17/2020 19:26:13.133 atom_getter DEBUG ] Atom WM_CLASS is 67 [ 02/17/2020 19:26:13.133 atom_getter DEBUG ] Atom WM_TRANSIENT_FOR is 68 [ 02/17/2020 19:26:13.137 atom_getter DEBUG ] Atom WM_WINDOW_ROLE is 323 [ 02/17/2020 19:26:13.137 atom_getter DEBUG ] Atom WM_CLIENT_LEADER is 318 [ 02/17/2020 19:26:13.137 atom_getter DEBUG ] Atom _NET_ACTIVE_WINDOW is 324 [ 02/17/2020 19:26:13.137 atom_getter DEBUG ] Atom _COMPTON_SHADOW is 396 [ 02/17/2020 19:26:13.137 atom_getter DEBUG ] Atom _NET_WM_WINDOW_TYPE is 348 [ 02/17/2020 19:26:13.137 atom_getter DEBUG ] Atom _NET_WM_WINDOW_TYPE_DESKTOP is 397 [ 02/17/2020 19:26:13.137 atom_getter DEBUG ] Atom _NET_WM_WINDOW_TYPE_DOCK is 374 [ 02/17/2020 19:26:13.137 atom_getter DEBUG ] Atom _NET_WM_WINDOW_TYPE_TOOLBAR is 375 [ 02/17/2020 19:26:13.137 atom_getter DEBUG ] Atom _NET_WM_WINDOW_TYPE_MENU is 353 [ 02/17/2020 19:26:13.137 atom_getter DEBUG ] Atom _NET_WM_WINDOW_TYPE_UTILITY is 357 [ 02/17/2020 19:26:13.137 atom_getter DEBUG ] Atom _NET_WM_WINDOW_TYPE_SPLASH is 376 [ 02/17/2020 19:26:13.137 atom_getter DEBUG ] Atom _NET_WM_WINDOW_TYPE_DIALOG is 350 [ 02/17/2020 19:26:13.137 atom_getter DEBUG ] Atom _NET_WM_WINDOW_TYPE_NORMAL is 354 [ 02/17/2020 19:26:13.137 atom_getter DEBUG ] Atom _NET_WM_WINDOW_TYPE_DROPDOWN_MENU is 352 [ 02/17/2020 19:26:13.138 atom_getter DEBUG ] Atom _NET_WM_WINDOW_TYPE_POPUP_MENU is 355 [ 02/17/2020 19:26:13.138 atom_getter DEBUG ] Atom _NET_WM_WINDOW_TYPE_TOOLTIP is 356 [ 02/17/2020 19:26:13.138 atom_getter DEBUG ] Atom _NET_WM_WINDOW_TYPE_NOTIFICATION is 377 [ 02/17/2020 19:26:13.138 atom_getter DEBUG ] Atom _NET_WM_WINDOW_TYPE_COMBO is 349 [ 02/17/2020 19:26:13.138 atom_getter DEBUG ] Atom _NET_WM_WINDOW_TYPE_DND is 351 [ 02/17/2020 19:26:13.139 atom_getter DEBUG ] Atom COMPTON_VERSION is 399 [ 02/17/2020 19:26:13.147 atom_getter DEBUG ] Atom _NET_WM_CM_S0 is 328 [ 02/17/2020 19:26:13.148 init_overlay DEBUG ] overlay = 0x0000006f [ 02/17/2020 19:26:13.227 glx_has_extension INFO ] Found GLX extension GLX_SGI_video_sync. [ 02/17/2020 19:26:13.228 glx_has_extension INFO ] Found GLX extension GLX_SGI_swap_control. [ 02/17/2020 19:26:13.228 glx_has_extension INFO ] Found GLX extension GLX_OML_sync_control. [ 02/17/2020 19:26:13.228 glx_has_extension INFO ] Found GLX extension GLX_MESA_swap_control. [ 02/17/2020 19:26:13.228 glx_has_extension INFO ] Missing GLX extension GLX_EXT_swap_control. [ 02/17/2020 19:26:13.228 glx_has_extension INFO ] Found GLX extension GLX_EXT_texture_from_pixmap. [ 02/17/2020 19:26:13.228 glx_has_extension INFO ] Found GLX extension GLX_ARB_create_context. [ 02/17/2020 19:26:13.228 glx_has_extension INFO ] Found GLX extension GLX_EXT_buffer_age. [ 02/17/2020 19:26:13.325 gl_has_extension INFO ] Missing GL extension GL_GREMEDY_string_marker. [ 02/17/2020 19:26:13.325 add_win DEBUG ] Adding window 0x00800063 [ 02/17/2020 19:26:13.325 add_win DEBUG ] Adding window 0x00400002 [ 02/17/2020 19:26:13.325 add_win DEBUG ] Adding window 0x00a00001 [ 02/17/2020 19:26:13.325 add_win DEBUG ] Adding window 0x00600001 [ 02/17/2020 19:26:13.325 add_win DEBUG ] Adding window 0x00800064 [ 02/17/2020 19:26:13.325 add_win DEBUG ] Adding window 0x00800066 [ 02/17/2020 19:26:13.325 add_win DEBUG ] Adding window 0x00800068 [ 02/17/2020 19:26:13.325 add_win DEBUG ] Adding window 0x0080006a [ 02/17/2020 19:26:13.326 add_win DEBUG ] Adding window 0x0080006c [ 02/17/2020 19:26:13.326 add_win DEBUG ] Adding window 0x0080006e [ 02/17/2020 19:26:13.326 add_win DEBUG ] Adding window 0x00800070 [ 02/17/2020 19:26:13.326 add_win DEBUG ] Adding window 0x00800074 [ 02/17/2020 19:26:13.326 add_win DEBUG ] Adding window 0x00800072 [ 02/17/2020 19:26:13.326 _draw_callback DEBUG ] Delayed handling of events, entering critical section [ 02/17/2020 19:26:13.326 fill_win DEBUG ] Managing window 0x00800072 [ 02/17/2020 19:26:13.326 fill_win DEBUG ] Managing window 0x00800074 [ 02/17/2020 19:26:13.326 fill_win DEBUG ] Managing window 0x00800070 [ 02/17/2020 19:26:13.326 fill_win DEBUG ] Managing window 0x0080006e [ 02/17/2020 19:26:13.326 fill_win DEBUG ] Managing window 0x0080006c [ 02/17/2020 19:26:13.326 fill_win DEBUG ] Managing window 0x0080006a [ 02/17/2020 19:26:13.326 fill_win DEBUG ] Managing window 0x00800068 [ 02/17/2020 19:26:13.326 fill_win DEBUG ] Managing window 0x00800066 [ 02/17/2020 19:26:13.326 fill_win DEBUG ] Managing window 0x00800064 [ 02/17/2020 19:26:13.337 fill_win DEBUG ] Managing window 0x00600001 [ 02/17/2020 19:26:13.337 fill_win DEBUG ] Managing window 0x00a00001 [ 02/17/2020 19:26:13.337 fill_win DEBUG ] Managing window 0x00400002 [ 02/17/2020 19:26:13.337 fill_win DEBUG ] Managing window 0x00800063 [ 02/17/2020 19:26:13.337 _draw_callback DEBUG ] Exiting critical section [ 02/17/2020 19:26:13.337 redir_start DEBUG ] Redirecting the screen. [ 02/17/2020 19:26:13.338 redir_start DEBUG ] Screen redirected. [ 02/17/2020 19:26:13.338 _draw_callback DEBUG ] Re-run paint_preprocess [ 02/17/2020 19:26:13.338 atom_getter DEBUG ] Atom _XROOTPMAP_ID is 419 [ 02/17/2020 19:26:13.338 atom_getter DEBUG ] Atom _XSETROOT_ID is 420 [ 02/17/2020 19:26:13.338 glx_find_fbconfig DEBUG ] Looking for FBConfig for RGBA8880, depth 24 [ 02/17/2020 19:26:13.338 glx_bind_pixmap DEBUG ] depth 24, tgt 0x20dc, rgba 0 [ 02/17/2020 19:26:13.380 ev_handle DEBUG ] event MapNotify serial 0x000006a7 window 0x0000006f "(Overlay)" [ 02/17/2020 19:26:13.380 ev_handle DEBUG ] event Expose serial 0x000006a7 window 0x0000006f "(Overlay)" [ 02/17/2020 19:26:13.380 ev_handle DEBUG ] event CreateNoti serial 0x000006c4 window 0x01000006 "(Failed to get title)" [ 02/17/2020 19:26:13.380 add_win DEBUG ] Adding window 0x01000006 [ 02/17/2020 19:26:13.380 ev_handle DEBUG ] event PropertyNo serial 0x000006c4 window 0x000000ef "(Root window)" [ 02/17/2020 19:26:13.380 ev_handle DEBUG ] event PropertyNo serial 0x000006c4 window 0x000000ef "(Root window)" [ 02/17/2020 19:26:13.380 _draw_callback DEBUG ] Delayed handling of events, entering critical section [ 02/17/2020 19:26:13.380 fill_win DEBUG ] Managing window 0x01000006 [ 02/17/2020 19:26:13.381 _draw_callback DEBUG ] Exiting critical section [ 02/17/2020 19:26:13.403 ev_handle DEBUG ] event CreateNoti serial 0x000006d5 window 0x00800087 "(Failed to get title)" [ 02/17/2020 19:26:13.403 add_win DEBUG ] Adding window 0x00800087 [ 02/17/2020 19:26:13.403 ev_handle DEBUG ] event ReparentNo serial 0x000006d5 window 0x01000006 "(Failed to get title)" [ 02/17/2020 19:26:13.403 ev_reparent_notify DEBUG ] { new_parent: 0x00800087, override_redirect: 0 } [ 02/17/2020 19:26:13.403 ev_handle DEBUG ] event ConfigureN serial 0x000006d5 window 0x00800087 "(Failed to get title)" [ 02/17/2020 19:26:13.403 ev_configure_notify DEBUG ] { send_event: 239, id: 0x00800087, above: 0x00800072, override_redirect: 1 } [ 02/17/2020 19:26:13.403 restack_above DEBUG ] Restack 0x00800087 ((unmanaged)), old_below: 0x00800072, new_below: 0x00800072 [ 02/17/2020 19:26:13.403 ev_handle DEBUG ] event MapNotify serial 0x000006d5 window 0x00800087 "(Failed to get title)" [ 02/17/2020 19:26:13.403 _draw_callback DEBUG ] Delayed handling of events, entering critical section [ 02/17/2020 19:26:13.404 fill_win DEBUG ] Managing window 0x00800087 [ 02/17/2020 19:26:13.404 map_win DEBUG ] Mapping (0x00800087 "(null)") [ 02/17/2020 19:26:13.404 win_determine_shadow DEBUG ] Determining shadow of window 0x00800087 ((null)) [ 02/17/2020 19:26:13.404 win_determine_shadow DEBUG ] Shadow disabled by wintypes [ 02/17/2020 19:26:13.404 map_win DEBUG ] Window (0x00800087) has type dock [ 02/17/2020 19:26:13.404 win_determine_shadow DEBUG ] Determining shadow of window 0x00800087 ((null)) [ 02/17/2020 19:26:13.404 win_determine_shadow DEBUG ] Shadow disabled by wintypes [ 02/17/2020 19:26:13.404 map_win DEBUG ] Window 0x00800087 has opacity 0.000000, opacity target is 1.000000 [ 02/17/2020 19:26:13.404 _draw_callback DEBUG ] Exiting critical section [ 02/17/2020 19:26:13.404 run_fade DEBUG ] Window 0x00800087 (null) doesn't need fading [ 02/17/2020 19:26:13.404 run_fade DEBUG ] Fading finished for window 0x00800087 (null) [ 02/17/2020 19:26:13.405 glx_find_fbconfig DEBUG ] Looking for FBConfig for RGBA8880, depth 24 [ 02/17/2020 19:26:13.405 glx_bind_pixmap DEBUG ] depth 24, tgt 0x20dc, rgba 0 [ 02/17/2020 19:26:13.425 ev_handle DEBUG ] event CreateNoti serial 0x000006fc window 0x0100000c "(Failed to get title)" [ 02/17/2020 19:26:13.425 add_win DEBUG ] Adding window 0x0100000c [ 02/17/2020 19:26:13.425 _draw_callback DEBUG ] Delayed handling of events, entering critical section [ 02/17/2020 19:26:13.425 fill_win DEBUG ] Managing window 0x0100000c [ 02/17/2020 19:26:13.426 _draw_callback DEBUG ] Exiting critical section [ 02/17/2020 19:26:13.427 ev_handle DEBUG ] event ClientMess serial 0x0000070f window 0000000000 "" [ 02/17/2020 19:26:13.568 ev_handle DEBUG ] event PropertyNo serial 0x0000071f window 0x000000ef "(Root window)" [ 02/17/2020 19:26:13.568 ev_handle DEBUG ] event PropertyNo serial 0x0000071f window 0x000000ef "(Root window)" [ 02/17/2020 19:26:13.580 ev_handle DEBUG ] event CreateNoti serial 0x00000722 window 0x00a00002 "(Failed to get title)" [ 02/17/2020 19:26:13.580 add_win DEBUG ] Adding window 0x00a00002 [ 02/17/2020 19:26:13.580 _draw_callback DEBUG ] Delayed handling of events, entering critical section [ 02/17/2020 19:26:13.585 ev_handle DEBUG ] event PropertyNo serial 0x00000722 window 0x000000ef "(Root window)" [ 02/17/2020 19:26:13.585 ev_handle DEBUG ] event CreateNoti serial 0x00000722 window 0x00a00004 "(Failed to get title)" [ 02/17/2020 19:26:13.585 add_win DEBUG ] Adding window 0x00a00004 [ 02/17/2020 19:26:13.585 ev_handle DEBUG ] event CreateNoti serial 0x00000722 window 0x00a00006 "(Failed to get title)" [ 02/17/2020 19:26:13.585 add_win DEBUG ] Adding window 0x00a00006 [ 02/17/2020 19:26:13.585 fill_win DEBUG ] Managing window 0x00a00006 [ 02/17/2020 19:26:13.585 fill_win DEBUG ] Managing window 0x00a00004 [ 02/17/2020 19:26:13.586 fill_win DEBUG ] Managing window 0x00a00002 [ 02/17/2020 19:26:13.586 _draw_callback DEBUG ] Exiting critical section [ 02/17/2020 19:26:13.586 ev_handle DEBUG ] event CreateNoti serial 0x00000732 window 0x00a00009 "(Failed to get title)" [ 02/17/2020 19:26:13.586 add_win DEBUG ] Adding window 0x00a00009 [ 02/17/2020 19:26:13.586 _draw_callback DEBUG ] Delayed handling of events, entering critical section [ 02/17/2020 19:26:13.591 fill_win DEBUG ] Managing window 0x00a00009 [ 02/17/2020 19:26:13.592 _draw_callback DEBUG ] Exiting critical section [ 02/17/2020 19:26:13.757 ev_handle DEBUG ] event CreateNoti serial 0x0000073e window 0x00a0000b "(Failed to get title)" [ 02/17/2020 19:26:13.757 add_win DEBUG ] Adding window 0x00a0000b [ 02/17/2020 19:26:13.757 _draw_callback DEBUG ] Delayed handling of events, entering critical section [ 02/17/2020 19:26:13.758 ev_handle DEBUG ] event ConfigureN serial 0x0000073e window 0x00a00009 "(Failed to get title)" [ 02/17/2020 19:26:13.758 ev_configure_notify DEBUG ] { send_event: 239, id: 0x00a00009, above: 0x00a00006, override_redirect: 1 } [ 02/17/2020 19:26:13.758 restack_above DEBUG ] Restack 0x00a00009 ((null)), old_below: 0x00a00006, new_below: 0x00a00006 [ 02/17/2020 19:26:13.758 ev_handle DEBUG ] event ConfigureN serial 0x0000073e window 0x00a00004 "(Failed to get title)" [ 02/17/2020 19:26:13.758 ev_configure_notify DEBUG ] { send_event: 239, id: 0x00a00004, above: 0x00a00002, override_redirect: 1 } [ 02/17/2020 19:26:13.758 restack_above DEBUG ] Restack 0x00a00004 ((null)), old_below: 0x00a00002, new_below: 0x00a00002 [ 02/17/2020 19:26:13.758 ev_handle DEBUG ] event ConfigureN serial 0x0000073e window 0x00a00004 "(Failed to get title)" [ 02/17/2020 19:26:13.758 ev_configure_notify DEBUG ] { send_event: 239, id: 0x00a00004, above: 0x00a00002, override_redirect: 1 } [ 02/17/2020 19:26:13.758 restack_above DEBUG ] Restack 0x00a00004 ((null)), old_below: 0x00a00002, new_below: 0x00a00002 [ 02/17/2020 19:26:13.758 ev_handle DEBUG ] event CreateNoti serial 0x0000073e window 0x00a00011 "(Failed to get title)" [ 02/17/2020 19:26:13.758 add_win DEBUG ] Adding window 0x00a00011 [ 02/17/2020 19:26:13.758 ev_handle DEBUG ] event CreateNoti serial 0x0000073e window 0x00a00013 "(Failed to get title)" [ 02/17/2020 19:26:13.758 add_win DEBUG ] Adding window 0x00a00013 [ 02/17/2020 19:26:13.758 ev_handle DEBUG ] event CreateNoti serial 0x0000073e window 0x00a00015 "(Failed to get title)" [ 02/17/2020 19:26:13.758 add_win DEBUG ] Adding window 0x00a00015 [ 02/17/2020 19:26:13.759 ev_handle DEBUG ] event CreateNoti serial 0x0000073e window 0x00a00017 "(Failed to get title)" [ 02/17/2020 19:26:13.759 add_win DEBUG ] Adding window 0x00a00017 [ 02/17/2020 19:26:13.759 fill_win DEBUG ] Managing window 0x00a00017 [ 02/17/2020 19:26:13.759 fill_win DEBUG ] Managing window 0x00a00015 [ 02/17/2020 19:26:13.759 fill_win DEBUG ] Managing window 0x00a00013 [ 02/17/2020 19:26:13.759 fill_win DEBUG ] Managing window 0x00a00011 [ 02/17/2020 19:26:13.759 fill_win DEBUG ] Managing window 0x00a0000b [ 02/17/2020 19:26:13.759 _draw_callback DEBUG ] Exiting critical section [ 02/17/2020 19:26:13.859 ev_handle DEBUG ] event CreateNoti serial 0x00000756 window 0x00a00018 "(Failed to get title)" [ 02/17/2020 19:26:13.859 add_win DEBUG ] Adding window 0x00a00018 [ 02/17/2020 19:26:13.859 _draw_callback DEBUG ] Delayed handling of events, entering critical section [ 02/17/2020 19:26:13.859 fill_win DEBUG ] Managing window 0x00a00018 [ 02/17/2020 19:26:13.859 _draw_callback DEBUG ] Exiting critical section [ 02/17/2020 19:26:13.863 ev_handle DEBUG ] event ReparentNo serial 0x00000762 window 0x00a00018 "(Failed to get title)" [ 02/17/2020 19:26:13.863 ev_reparent_notify DEBUG ] { new_parent: 0x01000006, override_redirect: 0 } [ 02/17/2020 19:26:15.724 ev_handle DEBUG ] event CreateNoti serial 0x00000798 window 0x0080008c "(Failed to get title)" [ 02/17/2020 19:26:15.724 add_win DEBUG ] Adding window 0x0080008c [ 02/17/2020 19:26:15.724 _draw_callback DEBUG ] Delayed handling of events, entering critical section [ 02/17/2020 19:26:15.725 ev_handle DEBUG ] event ClientMess serial 0x00000798 window 0000000000 "" [ 02/17/2020 19:26:15.725 ev_handle DEBUG ] event ClientMess serial 0x00000798 window 0000000000 "" [ 02/17/2020 19:26:15.725 ev_handle DEBUG ] event ClientMess serial 0x00000798 window 0000000000 "" [ 02/17/2020 19:26:15.725 ev_handle DEBUG ] event ClientMess serial 0x00000798 window 0000000000 "" [ 02/17/2020 19:26:15.725 ev_handle DEBUG ] event ClientMess serial 0x00000798 window 0000000000 "" [ 02/17/2020 19:26:15.725 ev_handle DEBUG ] event DestroyNot serial 0x00000798 window 0x0080008c "(Failed to get title)" [ 02/17/2020 19:26:15.725 _draw_callback DEBUG ] Exiting critical section [ 02/17/2020 19:26:15.768 ev_handle DEBUG ] event CreateNoti serial 0x000007a1 window 0x01200004 "(Failed to get title)" [ 02/17/2020 19:26:15.768 add_win DEBUG ] Adding window 0x01200004 [ 02/17/2020 19:26:15.768 _draw_callback DEBUG ] Delayed handling of events, entering critical section [ 02/17/2020 19:26:15.768 fill_win DEBUG ] Managing window 0x01200004 [ 02/17/2020 19:26:15.768 _draw_callback DEBUG ] Exiting critical section [ 02/17/2020 19:26:15.971 ev_handle DEBUG ] event CreateNoti serial 0x000007ad window 0x01200006 "(Failed to get title)" [ 02/17/2020 19:26:15.971 add_win DEBUG ] Adding window 0x01200006 [ 02/17/2020 19:26:15.971 ev_handle DEBUG ] event CreateNoti serial 0x000007ad window 0x01200008 "(Failed to get title)" [ 02/17/2020 19:26:15.971 add_win DEBUG ] Adding window 0x01200008 [ 02/17/2020 19:26:15.971 _draw_callback DEBUG ] Delayed handling of events, entering critical section [ 02/17/2020 19:26:15.971 fill_win DEBUG ] Managing window 0x01200008 [ 02/17/2020 19:26:15.971 fill_win DEBUG ] Managing window 0x01200006 [ 02/17/2020 19:26:15.971 _draw_callback DEBUG ] Exiting critical section [ 02/17/2020 19:26:15.972 ev_handle DEBUG ] event ClientMess serial 0x000007b9 window 0000000000 "" [ 02/17/2020 19:26:15.972 ev_handle DEBUG ] event ClientMess serial 0x000007b9 window 0000000000 "" [ 02/17/2020 19:26:15.999 ev_handle DEBUG ] event ClientMess serial 0x000007bf window 0000000000 "" [ 02/17/2020 19:26:15.999 ev_handle DEBUG ] event ClientMess serial 0x000007bf window 0000000000 "" [ 02/17/2020 19:26:15.999 ev_handle DEBUG ] event ClientMess serial 0x000007bf window 0000000000 "" [ 02/17/2020 19:26:16.002 ev_handle DEBUG ] event CreateNoti serial 0x000007c2 window 0x0080008d "(Failed to get title)" [ 02/17/2020 19:26:16.002 add_win DEBUG ] Adding window 0x0080008d [ 02/17/2020 19:26:16.002 _draw_callback DEBUG ] Delayed handling of events, entering critical section [ 02/17/2020 19:26:16.003 fill_win DEBUG ] Managing window 0x0080008d [ 02/17/2020 19:26:16.003 _draw_callback DEBUG ] Exiting critical section [ 02/17/2020 19:26:16.013 ev_handle DEBUG ] event ReparentNo serial 0x000007cf window 0x01200006 "(Failed to get title)" [ 02/17/2020 19:26:16.013 ev_reparent_notify DEBUG ] { new_parent: 0x0080008d, override_redirect: 0 } [ 02/17/2020 19:26:16.013 ev_handle DEBUG ] event ConfigureN serial 0x000007cf window 0x0080008d "(Failed to get title)" [ 02/17/2020 19:26:16.013 ev_configure_notify DEBUG ] { send_event: 239, id: 0x0080008d, above: 0x00800074, override_redirect: 1 } [ 02/17/2020 19:26:16.013 restack_above DEBUG ] Restack 0x0080008d ((null)), old_below: 0x01200008, new_below: 0x00800074 [ 02/17/2020 19:26:16.013 ev_handle DEBUG ] event PropertyNo serial 0x000007cf window 0x000000ef "(Root window)" [ 02/17/2020 19:26:16.013 ev_handle DEBUG ] event PropertyNo serial 0x000007cf window 0x000000ef "(Root window)" [ 02/17/2020 19:26:16.013 ev_handle DEBUG ] event ConfigureN serial 0x000007cf window 0x00800074 "(Failed to get title)" [ 02/17/2020 19:26:16.013 ev_configure_notify DEBUG ] { send_event: 239, id: 0x00800074, above: 0x00800070, override_redirect: 1 } [ 02/17/2020 19:26:16.013 restack_above DEBUG ] Restack 0x00800074 ((null)), old_below: 0x00800070, new_below: 0x00800070 [ 02/17/2020 19:26:16.013 ev_handle DEBUG ] event MapNotify serial 0x000007cf window 0x00800074 "(Failed to get title)" [ 02/17/2020 19:26:16.013 map_win DEBUG ] Mapping (0x00800074 "(null)") [ 02/17/2020 19:26:16.013 win_determine_shadow DEBUG ] Determining shadow of window 0x00800074 ((null)) [ 02/17/2020 19:26:16.013 win_determine_shadow DEBUG ] Shadow disabled by wintypes [ 02/17/2020 19:26:16.013 map_win DEBUG ] Window (0x00800074) has type normal [ 02/17/2020 19:26:16.013 win_determine_shadow DEBUG ] Determining shadow of window 0x00800074 ((null)) [ 02/17/2020 19:26:16.013 win_determine_shadow DEBUG ] Shadow disabled by wintypes [ 02/17/2020 19:26:16.013 map_win DEBUG ] Window 0x00800074 has opacity 0.000000, opacity target is 1.000000 [ 02/17/2020 19:26:16.013 _draw_callback DEBUG ] Delayed handling of events, entering critical section [ 02/17/2020 19:26:16.014 _draw_callback DEBUG ] Exiting critical section [ 02/17/2020 19:26:16.014 run_fade DEBUG ] Window 0x00800074 (null) doesn't need fading [ 02/17/2020 19:26:16.014 run_fade DEBUG ] Fading finished for window 0x00800074 (null) [ 02/17/2020 19:26:16.041 glx_find_fbconfig DEBUG ] Looking for FBConfig for RGBA8888, depth 32 [ 02/17/2020 19:26:16.043 glx_bind_pixmap DEBUG ] depth 32, tgt 0x20dc, rgba 1 [ 02/17/2020 19:26:16.050 ev_handle DEBUG ] event ConfigureN serial 0x000007ea window 0x0080008d "(Failed to get title)" [ 02/17/2020 19:26:16.051 ev_configure_notify DEBUG ] { send_event: 239, id: 0x0080008d, above: 0x00800074, override_redirect: 1 } [ 02/17/2020 19:26:16.051 restack_above DEBUG ] Restack 0x0080008d ((null)), old_below: 0x00800074, new_below: 0x00800074 [ 02/17/2020 19:26:16.051 ev_handle DEBUG ] event PropertyNo serial 0x000007ea window 0x01200006 "(Failed to get title)" [ 02/17/2020 19:26:16.051 ev_handle DEBUG ] event MapNotify serial 0x000007ea window 0x0080008d "Shell No. 1" [ 02/17/2020 19:26:16.051 map_win DEBUG ] Mapping (0x0080008d "Shell No. 1") [ 02/17/2020 19:26:16.051 win_determine_shadow DEBUG ] Determining shadow of window 0x0080008d (Shell No. 1) [ 02/17/2020 19:26:16.051 win_determine_shadow DEBUG ] Shadow disabled by wintypes [ 02/17/2020 19:26:16.051 map_win DEBUG ] Window (0x0080008d) has type normal [ 02/17/2020 19:26:16.051 win_determine_shadow DEBUG ] Determining shadow of window 0x0080008d (Shell No. 1) [ 02/17/2020 19:26:16.051 win_determine_shadow DEBUG ] Shadow disabled by wintypes [ 02/17/2020 19:26:16.051 map_win DEBUG ] Window 0x0080008d has opacity 0.000000, opacity target is 1.000000 [ 02/17/2020 19:26:16.051 ev_handle DEBUG ] event PropertyNo serial 0x000007ea window 0x000000ef "(Root window)" [ 02/17/2020 19:26:16.051 ev_handle DEBUG ] event PropertyNo serial 0x000007ea window 0x01200006 "Shell No. 1" [ 02/17/2020 19:26:16.051 ev_handle DEBUG ] event PropertyNo serial 0x000007ea window 0x01200006 "Shell No. 1" [ 02/17/2020 19:26:16.051 ev_handle DEBUG ] event Event 0 serial 0x000007fd window 0000000000 "" [ 02/17/2020 19:26:16.051 x_print_error DEBUG ] X error 3 BadWindow request 2 minor 0 serial 2064 [ 02/17/2020 19:26:16.051 _draw_callback DEBUG ] Delayed handling of events, entering critical section [ 02/17/2020 19:26:16.052 _draw_callback DEBUG ] Exiting critical section [ 02/17/2020 19:26:16.052 run_fade DEBUG ] Window 0x0080008d Shell No. 1 doesn't need fading [ 02/17/2020 19:26:16.052 run_fade DEBUG ] Fading finished for window 0x0080008d Shell No. 1 [ 02/17/2020 19:26:16.057 glx_find_fbconfig DEBUG ] Looking for FBConfig for RGBA8888, depth 32 [ 02/17/2020 19:26:16.058 glx_bind_pixmap DEBUG ] depth 32, tgt 0x20dc, rgba 1 [ 02/17/2020 19:26:16.110 ev_handle DEBUG ] event PropertyNo serial 0x0000083e window 0x01200006 "darren@HP-Arch:~" [ 02/17/2020 19:26:16.125 ev_handle DEBUG ] event PropertyNo serial 0x0000083f window 0x01200006 "darren@HP-Arch:~" [ 02/17/2020 19:26:16.125 ev_handle DEBUG ] event PropertyNo serial 0x0000083f window 0x01200006 "darren@HP-Arch:~" [ 02/17/2020 19:26:16.177 ev_handle DEBUG ] event ConfigureN serial 0x00000856 window 0x00a00004 "(Failed to get title)" [ 02/17/2020 19:26:16.177 ev_configure_notify DEBUG ] { send_event: 239, id: 0x00a00004, above: 0x00a00002, override_redirect: 1 } [ 02/17/2020 19:26:16.177 restack_above DEBUG ] Restack 0x00a00004 ((null)), old_below: 0x00a00002, new_below: 0x00a00002 [ 02/17/2020 19:26:16.827 ev_handle DEBUG ] event PropertyNo serial 0x0000085c window 0x01200006 "darren@HP-Arch:~" [ 02/17/2020 19:26:16.964 ev_handle DEBUG ] event ConfigureN serial 0x00000868 window 0x00a00004 "(Failed to get title)" [ 02/17/2020 19:26:16.965 ev_configure_notify DEBUG ] { send_event: 239, id: 0x00a00004, above: 0x00a00002, override_redirect: 1 } [ 02/17/2020 19:26:16.965 restack_above DEBUG ] Restack 0x00a00004 ((null)), old_below: 0x00a00002, new_below: 0x00a00002 [ 02/17/2020 19:26:17.114 ev_handle DEBUG ] event PropertyNo serial 0x00000873 window 0x01200006 "darren@HP-Arch:~" [ 02/17/2020 19:26:17.224 ev_handle DEBUG ] event ConfigureN serial 0x0000087f window 0x00a00004 "(Failed to get title)" [ 02/17/2020 19:26:17.224 ev_configure_notify DEBUG ] { send_event: 239, id: 0x00a00004, above: 0x00a00002, override_redirect: 1 } [ 02/17/2020 19:26:17.224 restack_above DEBUG ] Restack 0x00a00004 ((null)), old_below: 0x00a00002, new_below: 0x00a00002 [ 02/17/2020 19:26:17.567 ev_handle DEBUG ] event PropertyNo serial 0x00000882 window 0x01200006 "darren@HP-Arch:~" [ 02/17/2020 19:26:17.717 ev_handle DEBUG ] event ConfigureN serial 0x0000088e window 0x00a00004 "(Failed to get title)" [ 02/17/2020 19:26:17.717 ev_configure_notify DEBUG ] { send_event: 239, id: 0x00a00004, above: 0x00a00002, override_redirect: 1 } [ 02/17/2020 19:26:17.717 restack_above DEBUG ] Restack 0x00a00004 ((null)), old_below: 0x00a00002, new_below: 0x00a00002 [ 02/17/2020 19:26:17.949 ev_handle DEBUG ] event PropertyNo serial 0x00000891 window 0x01200006 "darren@HP-Arch:~" [ 02/17/2020 19:26:18.060 ev_handle DEBUG ] event ConfigureN serial 0x000008a5 window 0x00a00004 "(Failed to get title)" [ 02/17/2020 19:26:18.060 ev_configure_notify DEBUG ] { send_event: 239, id: 0x00a00004, above: 0x00a00002, override_redirect: 1 } [ 02/17/2020 19:26:18.060 restack_above DEBUG ] Restack 0x00a00004 ((null)), old_below: 0x00a00002, new_below: 0x00a00002 [ 02/17/2020 19:26:18.378 ev_handle DEBUG ] event PropertyNo serial 0x000008a8 window 0x01200006 "darren@HP-Arch:~" [ 02/17/2020 19:26:18.480 ev_handle DEBUG ] event ConfigureN serial 0x000008b4 window 0x00a00004 "(Failed to get title)" [ 02/17/2020 19:26:18.480 ev_configure_notify DEBUG ] { send_event: 239, id: 0x00a00004, above: 0x00a00002, override_redirect: 1 } [ 02/17/2020 19:26:18.480 restack_above DEBUG ] Restack 0x00a00004 ((null)), old_below: 0x00a00002, new_below: 0x00a00002 [ 02/17/2020 19:26:18.737 ev_handle DEBUG ] event PropertyNo serial 0x000008b7 window 0x01200006 "darren@HP-Arch:~" [ 02/17/2020 19:26:18.864 ev_handle DEBUG ] event ConfigureN serial 0x000008c3 window 0x00a00004 "(Failed to get title)" [ 02/17/2020 19:26:18.864 ev_configure_notify DEBUG ] { send_event: 239, id: 0x00a00004, above: 0x00a00002, override_redirect: 1 } [ 02/17/2020 19:26:18.864 restack_above DEBUG ] Restack 0x00a00004 ((null)), old_below: 0x00a00002, new_below: 0x00a00002 [ 02/17/2020 19:26:19.805 ev_handle DEBUG ] event PropertyNo serial 0x000008ce window 0x01200006 "darren@HP-Arch:~" [ 02/17/2020 19:26:19.941 ev_handle DEBUG ] event ConfigureN serial 0x000008da window 0x00a00004 "(Failed to get title)" [ 02/17/2020 19:26:19.941 ev_configure_notify DEBUG ] { send_event: 239, id: 0x00a00004, above: 0x00a00002, override_redirect: 1 } [ 02/17/2020 19:26:19.941 restack_above DEBUG ] Restack 0x00a00004 ((null)), old_below: 0x00a00002, new_below: 0x00a00002 [ 02/17/2020 19:26:20.073 ev_handle DEBUG ] event PropertyNo serial 0x000008ed window 0x01200006 "darren@HP-Arch:~" [ 02/17/2020 19:26:20.194 ev_handle DEBUG ] event ConfigureN serial 0x000008f9 window 0x00a00004 "(Failed to get title)" [ 02/17/2020 19:26:20.194 ev_configure_notify DEBUG ] { send_event: 239, id: 0x00a00004, above: 0x00a00002, override_redirect: 1 } [ 02/17/2020 19:26:20.194 restack_above DEBUG ] Restack 0x00a00004 ((null)), old_below: 0x00a00002, new_below: 0x00a00002 [ 02/17/2020 19:26:20.287 ev_handle DEBUG ] event PropertyNo serial 0x000008fc window 0x01200006 "darren@HP-Arch:~" [ 02/17/2020 19:26:20.384 ev_handle DEBUG ] event ConfigureN serial 0x00000908 window 0x00a00004 "(Failed to get title)" [ 02/17/2020 19:26:20.384 ev_configure_notify DEBUG ] { send_event: 239, id: 0x00a00004, above: 0x00a00002, override_redirect: 1 } [ 02/17/2020 19:26:20.384 restack_above DEBUG ] Restack 0x00a00004 ((null)), old_below: 0x00a00002, new_below: 0x00a00002 [ 02/17/2020 19:26:22.088 ev_handle DEBUG ] event PropertyNo serial 0x0000091b window 0x01200006 "darren@HP-Arch:~" [ 02/17/2020 19:26:22.151 ev_handle DEBUG ] event ConfigureN serial 0x00000927 window 0x00a00004 "(Failed to get title)" [ 02/17/2020 19:26:22.151 ev_configure_notify DEBUG ] { send_event: 239, id: 0x00a00004, above: 0x00a00002, override_redirect: 1 } [ 02/17/2020 19:26:22.151 restack_above DEBUG ] Restack 0x00a00004 ((null)), old_below: 0x00a00002, new_below: 0x00a00002 [ 02/17/2020 19:26:27.274 ev_handle DEBUG ] event PropertyNo serial 0x00000957 window 0x01200006 "darren@HP-Arch:~" [ 02/17/2020 19:26:27.274 ev_handle DEBUG ] event ConfigureN serial 0x00000957 window 0x00a00004 "(Failed to get title)" [ 02/17/2020 19:26:27.274 ev_configure_notify DEBUG ] { send_event: 239, id: 0x00a00004, above: 0x00a00002, override_redirect: 1 } [ 02/17/2020 19:26:27.274 restack_above DEBUG ] Restack 0x00a00004 ((null)), old_below: 0x00a00002, new_below: 0x00a00002 [ 02/17/2020 19:26:27.274 ev_handle DEBUG ] event PropertyNo serial 0x00000957 window 0x01200006 "darren@HP-Arch:~" [ 02/17/2020 19:26:27.274 ev_handle DEBUG ] event PropertyNo serial 0x00000957 window 0x000000ef "(Root window)" [ 02/17/2020 19:26:27.274 ev_handle DEBUG ] event Expose serial 0x00000957 window 0x0000006f "(Overlay)" [ 02/17/2020 19:26:27.274 ev_handle DEBUG ] event PropertyNo serial 0x00000957 window 0x000000ef "(Root window)" [ 02/17/2020 19:26:27.777 ev_handle DEBUG ] event PropertyNo serial 0x00000978 window 0x01200006 "darren@HP-Arch:~" [ 02/17/2020 19:26:28.710 ev_handle DEBUG ] event PropertyNo serial 0x00000993 window 0x01200006 "darren@HP-Arch:~" [ 02/17/2020 19:26:28.802 ev_handle DEBUG ] event ConfigureN serial 0x000009a5 window 0x00a00004 "(Failed to get title)" [ 02/17/2020 19:26:28.802 ev_configure_notify DEBUG ] { send_event: 239, id: 0x00a00004, above: 0x00a00002, override_redirect: 1 } [ 02/17/2020 19:26:28.802 restack_above DEBUG ] Restack 0x00a00004 ((null)), old_below: 0x00a00002, new_below: 0x00a00002 [ 02/17/2020 19:26:29.931 ev_handle DEBUG ] event PropertyNo serial 0x000009b0 window 0x01200006 "darren@HP-Arch:~" [ 02/17/2020 19:26:30.009 ev_handle DEBUG ] event ConfigureN serial 0x000009bf window 0x00a00004 "(Failed to get title)" [ 02/17/2020 19:26:30.009 ev_configure_notify DEBUG ] { send_event: 239, id: 0x00a00004, above: 0x00a00002, override_redirect: 1 } [ 02/17/2020 19:26:30.009 restack_above DEBUG ] Restack 0x00a00004 ((null)), old_below: 0x00a00002, new_below: 0x00a00002 [ 02/17/2020 19:26:31.734 ev_handle DEBUG ] event PropertyNo serial 0x00000a0f window 0x01200006 "darren@HP-Arch:~" [ 02/17/2020 19:26:32.362 ev_handle DEBUG ] event PropertyNo serial 0x00000a22 window 0x01200006 "darren@HP-Arch:~" [ 02/17/2020 19:26:32.365 ev_handle DEBUG ] event ConfigureN serial 0x00000a23 window 0x00a00004 "(Failed to get title)" [ 02/17/2020 19:26:32.365 ev_configure_notify DEBUG ] { send_event: 239, id: 0x00a00004, above: 0x00a00002, override_redirect: 1 } [ 02/17/2020 19:26:32.365 restack_above DEBUG ] Restack 0x00a00004 ((null)), old_below: 0x00a00002, new_below: 0x00a00002 [ 02/17/2020 19:26:32.522 ev_handle DEBUG ] event ConfigureN serial 0x00000a2e window 0x00a00004 "(Failed to get title)" [ 02/17/2020 19:26:32.522 ev_configure_notify DEBUG ] { send_event: 239, id: 0x00a00004, above: 0x00a00002, override_redirect: 1 } [ 02/17/2020 19:26:32.522 restack_above DEBUG ] Restack 0x00a00004 ((null)), old_below: 0x00a00002, new_below: 0x00a00002 [ 02/17/2020 19:26:33.564 ev_handle DEBUG ] event PropertyNo serial 0x00000a39 window 0x01200006 "darren@HP-Arch:~" [ 02/17/2020 19:26:33.660 ev_handle DEBUG ] event ConfigureN serial 0x00000a45 window 0x00a00004 "(Failed to get title)" [ 02/17/2020 19:26:33.660 ev_configure_notify DEBUG ] { send_event: 239, id: 0x00a00004, above: 0x00a00002, override_redirect: 1 } [ 02/17/2020 19:26:33.660 restack_above DEBUG ] Restack 0x00a00004 ((null)), old_below: 0x00a00002, new_below: 0x00a00002 [ 02/17/2020 19:26:41.428 ev_handle DEBUG ] event PropertyNo serial 0x00000a82 window 0x01200006 "darren@HP-Arch:~" [ 02/17/2020 19:26:41.428 ev_handle DEBUG ] event ConfigureN serial 0x00000a82 window 0x00a00004 "(Failed to get title)" [ 02/17/2020 19:26:41.428 ev_configure_notify DEBUG ] { send_event: 239, id: 0x00a00004, above: 0x00a00002, override_redirect: 1 } [ 02/17/2020 19:26:41.428 restack_above DEBUG ] Restack 0x00a00004 ((null)), old_below: 0x00a00002, new_below: 0x00a00002 [ 02/17/2020 19:26:41.431 ev_handle DEBUG ] event PropertyNo serial 0x00000a82 window 0x01200006 "darren@HP-Arch:~" [ 02/17/2020 19:26:41.431 ev_handle DEBUG ] event PropertyNo serial 0x00000a82 window 0x000000ef "(Root window)" [ 02/17/2020 19:26:41.431 ev_handle DEBUG ] event Expose serial 0x00000a82 window 0x0000006f "(Overlay)" [ 02/17/2020 19:26:41.431 ev_handle DEBUG ] event PropertyNo serial 0x00000a82 window 0x000000ef "(Root window)" [ 02/17/2020 19:26:46.122 ev_handle DEBUG ] event PropertyNo serial 0x00000acc window 0x01200006 "darren@HP-Arch:~" [ 02/17/2020 19:26:46.180 ev_handle DEBUG ] event ConfigureN serial 0x00000ad8 window 0x00a00004 "(Failed to get title)" [ 02/17/2020 19:26:46.180 ev_configure_notify DEBUG ] { send_event: 239, id: 0x00a00004, above: 0x00a00002, override_redirect: 1 } [ 02/17/2020 19:26:46.180 restack_above DEBUG ] Restack 0x00a00004 ((null)), old_below: 0x00a00002, new_below: 0x00a00002 [ 02/17/2020 19:26:46.283 ev_handle DEBUG ] event PropertyNo serial 0x00000adb window 0x01200006 "darren@HP-Arch:~" [ 02/17/2020 19:26:46.348 ev_handle DEBUG ] event ConfigureN serial 0x00000ae7 window 0x00a00004 "(Failed to get title)" [ 02/17/2020 19:26:46.348 ev_configure_notify DEBUG ] { send_event: 239, id: 0x00a00004, above: 0x00a00002, override_redirect: 1 } [ 02/17/2020 19:26:46.348 restack_above DEBUG ] Restack 0x00a00004 ((null)), old_below: 0x00a00002, new_below: 0x00a00002 [ 02/17/2020 19:26:46.442 ev_handle DEBUG ] event PropertyNo serial 0x00000aea window 0x01200006 "darren@HP-Arch:~" [ 02/17/2020 19:26:46.546 ev_handle DEBUG ] event ConfigureN serial 0x00000af6 window 0x00a00004 "(Failed to get title)" [ 02/17/2020 19:26:46.546 ev_configure_notify DEBUG ] { send_event: 239, id: 0x00a00004, above: 0x00a00002, override_redirect: 1 } [ 02/17/2020 19:26:46.546 restack_above DEBUG ] Restack 0x00a00004 ((null)), old_below: 0x00a00002, new_below: 0x00a00002 [ 02/17/2020 19:26:46.584 ev_handle DEBUG ] event PropertyNo serial 0x00000af9 window 0x01200006 "darren@HP-Arch:~" [ 02/17/2020 19:26:46.703 ev_handle DEBUG ] event ConfigureN serial 0x00000b05 window 0x00a00004 "(Failed to get title)" [ 02/17/2020 19:26:46.703 ev_configure_notify DEBUG ] { send_event: 239, id: 0x00a00004, above: 0x00a00002, override_redirect: 1 } [ 02/17/2020 19:26:46.704 restack_above DEBUG ] Restack 0x00a00004 ((null)), old_below: 0x00a00002, new_below: 0x00a00002 [ 02/17/2020 19:26:46.746 ev_handle DEBUG ] event PropertyNo serial 0x00000b08 window 0x01200006 "darren@HP-Arch:~" [ 02/17/2020 19:26:46.860 ev_handle DEBUG ] event PropertyNo serial 0x00000b14 window 0x01200006 "darren@HP-Arch:~" [ 02/17/2020 19:26:46.862 ev_handle DEBUG ] event ConfigureN serial 0x00000b18 window 0x00a00004 "(Failed to get title)" [ 02/17/2020 19:26:46.862 ev_configure_notify DEBUG ] { send_event: 239, id: 0x00a00004, above: 0x00a00002, override_redirect: 1 } [ 02/17/2020 19:26:46.863 restack_above DEBUG ] Restack 0x00a00004 ((null)), old_below: 0x00a00002, new_below: 0x00a00002 [ 02/17/2020 19:26:46.948 ev_handle DEBUG ] event ConfigureN serial 0x00000b23 window 0x00a00004 "(Failed to get title)" [ 02/17/2020 19:26:46.948 ev_configure_notify DEBUG ] { send_event: 239, id: 0x00a00004, above: 0x00a00002, override_redirect: 1 } [ 02/17/2020 19:26:46.948 restack_above DEBUG ] Restack 0x00a00004 ((null)), old_below: 0x00a00002, new_below: 0x00a00002 [ 02/17/2020 19:26:47.024 ev_handle DEBUG ] event PropertyNo serial 0x00000b2e window 0x01200006 "darren@HP-Arch:~" [ 02/17/2020 19:26:47.161 ev_handle DEBUG ] event ConfigureN serial 0x00000b3a window 0x00a00004 "(Failed to get title)" [ 02/17/2020 19:26:47.161 ev_configure_notify DEBUG ] { send_event: 239, id: 0x00a00004, above: 0x00a00002, override_redirect: 1 } [ 02/17/2020 19:26:47.161 restack_above DEBUG ] Restack 0x00a00004 ((null)), old_below: 0x00a00002, new_below: 0x00a00002 [ 02/17/2020 19:26:47.304 ev_handle DEBUG ] event PropertyNo serial 0x00000b3d window 0x01200006 "darren@HP-Arch:~" [ 02/17/2020 19:26:47.416 ev_handle DEBUG ] event ConfigureN serial 0x00000b49 window 0x00a00004 "(Failed to get title)" [ 02/17/2020 19:26:47.416 ev_configure_notify DEBUG ] { send_event: 239, id: 0x00a00004, above: 0x00a00002, override_redirect: 1 } [ 02/17/2020 19:26:47.416 restack_above DEBUG ] Restack 0x00a00004 ((null)), old_below: 0x00a00002, new_below: 0x00a00002 [ 02/17/2020 19:26:47.773 ev_handle DEBUG ] event PropertyNo serial 0x00000b4c window 0x01200006 "darren@HP-Arch:~" [ 02/17/2020 19:26:47.851 ev_handle DEBUG ] event PropertyNo serial 0x00000b58 window 0x01200006 "darren@HP-Arch:~" [ 02/17/2020 19:26:47.853 ev_handle DEBUG ] event ConfigureN serial 0x00000b5a window 0x00a00004 "(Failed to get title)" [ 02/17/2020 19:26:47.853 ev_configure_notify DEBUG ] { send_event: 239, id: 0x00a00004, above: 0x00a00002, override_redirect: 1 } [ 02/17/2020 19:26:47.853 restack_above DEBUG ] Restack 0x00a00004 ((null)), old_below: 0x00a00002, new_below: 0x00a00002 [ 02/17/2020 19:26:47.915 ev_handle DEBUG ] event ConfigureN serial 0x00000b67 window 0x00a00004 "(Failed to get title)" [ 02/17/2020 19:26:47.915 ev_configure_notify DEBUG ] { send_event: 239, id: 0x00a00004, above: 0x00a00002, override_redirect: 1 } [ 02/17/2020 19:26:47.915 restack_above DEBUG ] Restack 0x00a00004 ((null)), old_below: 0x00a00002, new_below: 0x00a00002 [ 02/17/2020 19:26:47.976 ev_handle DEBUG ] event PropertyNo serial 0x00000b6a window 0x01200006 "darren@HP-Arch:~" [ 02/17/2020 19:26:48.094 ev_handle DEBUG ] event PropertyNo serial 0x00000b7e window 0x01200006 "darren@HP-Arch:~" [ 02/17/2020 19:26:48.096 ev_handle DEBUG ] event ConfigureN serial 0x00000b82 window 0x00a00004 "(Failed to get title)" [ 02/17/2020 19:26:48.096 ev_configure_notify DEBUG ] { send_event: 239, id: 0x00a00004, above: 0x00a00002, override_redirect: 1 } [ 02/17/2020 19:26:48.097 restack_above DEBUG ] Restack 0x00a00004 ((null)), old_below: 0x00a00002, new_below: 0x00a00002 [ 02/17/2020 19:26:48.180 ev_handle DEBUG ] event PropertyNo serial 0x00000b8d window 0x01200006 "darren@HP-Arch:~" [ 02/17/2020 19:26:48.182 ev_handle DEBUG ] event ConfigureN serial 0x00000b91 window 0x00a00004 "(Failed to get title)" [ 02/17/2020 19:26:48.182 ev_configure_notify DEBUG ] { send_event: 239, id: 0x00a00004, above: 0x00a00002, override_redirect: 1 } [ 02/17/2020 19:26:48.182 restack_above DEBUG ] Restack 0x00a00004 ((null)), old_below: 0x00a00002, new_below: 0x00a00002 [ 02/17/2020 19:26:48.244 ev_handle DEBUG ] event ConfigureN serial 0x00000b9c window 0x00a00004 "(Failed to get title)" [ 02/17/2020 19:26:48.245 ev_configure_notify DEBUG ] { send_event: 239, id: 0x00a00004, above: 0x00a00002, override_redirect: 1 } [ 02/17/2020 19:26:48.245 restack_above DEBUG ] Restack 0x00a00004 ((null)), old_below: 0x00a00002, new_below: 0x00a00002 [ 02/17/2020 19:26:48.442 ev_handle DEBUG ] event PropertyNo serial 0x00000b9f window 0x01200006 "darren@HP-Arch:~" ```
/home/darren/.local/share/xorg/Xorg.0.log ``` [ 158.619] (WW) Failed to open protocol names file lib/xorg/protocol.txt [ 158.619] X.Org X Server 1.20.7 X Protocol Version 11, Revision 0 [ 158.619] Build Operating System: Linux Arch Linux [ 158.620] Current Operating System: Linux HP-Arch 5.5.4-arch1-1 #1 SMP PREEMPT Sat, 15 Feb 2020 00:36:29 +0000 x86_64 [ 158.620] Kernel command line: BOOT_IMAGE=/boot/vmlinuz-linux root=UUID=0957ed29-6836-434f-a436-d9cccc74b771 rw resume=UUID=1998135c-82a6-42e4-bb75-55320d990dee loglevel=3 rw [ 158.620] Build Date: 14 January 2020 07:13:52AM [ 158.620] [ 158.620] Current version of pixman: 0.38.4 [ 158.620] Before reporting problems, check http://wiki.x.org to make sure that you have the latest version. [ 158.620] Markers: (--) probed, (**) from config file, (==) default setting, (++) from command line, (!!) notice, (II) informational, (WW) warning, (EE) error, (NI) not implemented, (??) unknown. [ 158.621] (==) Log file: "/home/darren/.local/share/xorg/Xorg.0.log", Time: Mon Feb 17 19:26:11 2020 [ 158.621] (==) Using config directory: "/etc/X11/xorg.conf.d" [ 158.621] (==) Using system config directory "/usr/share/X11/xorg.conf.d" [ 158.621] (==) ServerLayout "ServerLayout0" [ 158.621] (==) No screen section available. Using defaults. [ 158.621] (**) |-->Screen "Default Screen Section" (0) [ 158.621] (**) | |-->Monitor "" [ 158.621] (==) No device specified for screen "Default Screen Section". Using the first device section listed. [ 158.621] (**) | |-->Device "Intel Graphics" [ 158.621] (==) No monitor specified for screen "Default Screen Section". Using a default monitor configuration. [ 158.621] (**) Option "BlankTime" "0" [ 158.621] (**) Option "StandbyTime" "0" [ 158.621] (**) Option "SuspendTime" "0" [ 158.621] (**) Option "OffTime" "0" [ 158.621] (==) Automatically adding devices [ 158.621] (==) Automatically enabling devices [ 158.621] (==) Automatically adding GPU devices [ 158.621] (==) Automatically binding GPU devices [ 158.621] (==) Max clients allowed: 256, resource mask: 0x1fffff [ 158.622] (WW) The directory "/usr/share/fonts/OTF" does not exist. [ 158.622] Entry deleted from font path. [ 158.622] (WW) The directory "/usr/share/fonts/Type1" does not exist. [ 158.622] Entry deleted from font path. [ 158.622] (WW) `fonts.dir' not found (or not valid) in "/usr/share/fonts/75dpi". [ 158.622] Entry deleted from font path. [ 158.622] (Run 'mkfontdir' on "/usr/share/fonts/75dpi"). [ 158.622] (==) FontPath set to: /usr/share/fonts/misc, /usr/share/fonts/TTF, /usr/share/fonts/100dpi [ 158.622] (==) ModulePath set to "/usr/lib/xorg/modules" [ 158.622] (II) The server relies on udev to provide the list of input devices. If no devices become available, reconfigure udev or disable AutoAddDevices. [ 158.622] (II) Module ABI versions: [ 158.622] X.Org ANSI C Emulation: 0.4 [ 158.622] X.Org Video Driver: 24.1 [ 158.622] X.Org XInput driver : 24.1 [ 158.622] X.Org Server Extension : 10.0 [ 158.623] (++) using VT number 1 [ 158.625] (II) systemd-logind: took control of session /org/freedesktop/login1/session/_33 [ 158.626] (II) xfree86: Adding drm device (/dev/dri/card0) [ 158.627] (II) systemd-logind: got fd for /dev/dri/card0 226:0 fd 10 paused 0 [ 158.631] (--) PCI:*(0@0:2:0) 8086:2a42:17aa:20e4 rev 7, Mem @ 0xf2000000/4194304, 0xd0000000/268435456, I/O @ 0x00001800/8, BIOS @ 0x????????/131072 [ 158.631] (--) PCI: (0@0:2:1) 8086:2a43:17aa:20e4 rev 7, Mem @ 0xf2400000/1048576 [ 158.631] (WW) Open ACPI failed (/var/run/acpid.socket) (No such file or directory) [ 158.631] (II) LoadModule: "glx" [ 158.632] (II) Loading /usr/lib/xorg/modules/extensions/libglx.so [ 158.633] (II) Module glx: vendor="X.Org Foundation" [ 158.633] compiled for 1.20.7, module version = 1.0.0 [ 158.634] ABI class: X.Org Server Extension, version 10.0 [ 158.634] (II) LoadModule: "intel" [ 158.634] (II) Loading /usr/lib/xorg/modules/drivers/intel_drv.so [ 158.634] (II) Module intel: vendor="X.Org Foundation" [ 158.634] compiled for 1.20.6, module version = 2.99.917 [ 158.634] Module class: X.Org Video Driver [ 158.634] ABI class: X.Org Video Driver, version 24.0 [ 158.634] (II) intel: Driver for Intel(R) Integrated Graphics Chipsets: i810, i810-dc100, i810e, i815, i830M, 845G, 854, 852GM/855GM, 865G, 915G, E7221 (i915), 915GM, 945G, 945GM, 945GME, Pineview GM, Pineview G, 965G, G35, 965Q, 946GZ, 965GM, 965GME/GLE, G33, Q35, Q33, GM45, 4 Series, G45/G43, Q45/Q43, G41, B43 [ 158.634] (II) intel: Driver for Intel(R) HD Graphics [ 158.634] (II) intel: Driver for Intel(R) Iris(TM) Graphics [ 158.634] (II) intel: Driver for Intel(R) Iris(TM) Pro Graphics [ 158.635] xf86EnableIOPorts: failed to set IOPL for I/O (Operation not permitted) [ 158.635] (WW) VGA arbiter: cannot open kernel arbiter, no multi-card support [ 158.635] (II) intel(0): Creating default Display subsection in Screen section "Default Screen Section" for depth/fbbpp 24/32 [ 158.635] (==) intel(0): Depth 24, (--) framebuffer bpp 32 [ 158.635] (==) intel(0): RGB weight 888 [ 158.635] (==) intel(0): Default visual is TrueColor [ 158.635] (**) intel(0): Option "Accel" "true" [ 158.635] (**) intel(0): Option "AccelMethod" "UXA" [ 158.635] (--) intel(0): Integrated Graphics Chipset: Intel(R) GM45 [ 158.635] (**) intel(0): Relaxed fencing enabled [ 158.635] (**) intel(0): Wait on SwapBuffers? enabled [ 158.635] (**) intel(0): Triple buffering? enabled [ 158.635] (**) intel(0): Framebuffer tiled [ 158.635] (**) intel(0): Pixmaps tiled [ 158.635] (**) intel(0): 3D buffers tiled [ 158.635] (**) intel(0): SwapBuffers wait enabled [ 158.635] (==) intel(0): video overlay key set to 0x101fe [ 158.635] (II) intel(0): Output LVDS1 has no monitor section [ 158.636] (--) intel(0): found backlight control interface acpi_video0 [ 158.644] (II) intel(0): Output VGA1 has no monitor section [ 158.851] (II) intel(0): Output HDMI1 has no monitor section [ 158.930] (II) intel(0): Output DP1 has no monitor section [ 158.931] (II) intel(0): Output HDMI2 has no monitor section [ 159.010] (II) intel(0): Output DP2 has no monitor section [ 159.089] (II) intel(0): Output DP3 has no monitor section [ 159.089] (II) intel(0): EDID for output LVDS1 [ 159.089] (II) intel(0): Manufacturer: LEN Model: 4010 Serial#: 0 [ 159.089] (II) intel(0): Year: 2007 Week: 1 [ 159.089] (II) intel(0): EDID Version: 1.3 [ 159.089] (II) intel(0): Digital Display Input [ 159.089] (II) intel(0): Max Image Size [cm]: horiz.: 26 vert.: 16 [ 159.089] (II) intel(0): Gamma: 2.20 [ 159.089] (II) intel(0): DPMS capabilities: StandBy Suspend Off [ 159.089] (II) intel(0): Supported color encodings: RGB 4:4:4 YCrCb 4:4:4 [ 159.089] (II) intel(0): First detailed timing is preferred mode [ 159.089] (II) intel(0): redX: 0.580 redY: 0.340 greenX: 0.310 greenY: 0.550 [ 159.089] (II) intel(0): blueX: 0.155 blueY: 0.155 whiteX: 0.313 whiteY: 0.329 [ 159.089] (II) intel(0): Manufacturer's mask: 0 [ 159.089] (II) intel(0): Supported detailed timing: [ 159.089] (II) intel(0): clock: 71.1 MHz Image Size: 261 x 163 mm [ 159.089] (II) intel(0): h_active: 1280 h_sync: 1328 h_sync_end 1360 h_blank_end 1440 h_border: 0 [ 159.089] (II) intel(0): v_active: 800 v_sync: 803 v_sync_end 809 v_blanking: 823 v_border: 0 [ 159.089] (II) intel(0): Supported detailed timing: [ 159.089] (II) intel(0): clock: 59.3 MHz Image Size: 261 x 163 mm [ 159.089] (II) intel(0): h_active: 1280 h_sync: 1328 h_sync_end 1360 h_blank_end 1440 h_border: 0 [ 159.089] (II) intel(0): v_active: 800 v_sync: 803 v_sync_end 809 v_blanking: 823 v_border: 0 [ 159.089] (II) intel(0): Unknown vendor-specific block f [ 159.089] (II) intel(0): B121EW03 V6 [ 159.089] (II) intel(0): EDID (in hex): [ 159.089] (II) intel(0): 00ffffffffffff0030ae104000000000 [ 159.089] (II) intel(0): 01110103801a1078ea87f594574f8c27 [ 159.089] (II) intel(0): 27505400000001010101010101010101 [ 159.089] (II) intel(0): 010101010101c61b00a0502017303020 [ 159.089] (II) intel(0): 360005a310000018261700a050201730 [ 159.089] (II) intel(0): 3020360005a3100000180000000f0081 [ 159.089] (II) intel(0): 0a3c810a3214010006af1436000000fe [ 159.089] (II) intel(0): 004231323145573033205636200a00aa [ 159.089] (II) intel(0): Not using default mode "320x240" (doublescan mode not supported) [ 159.089] (II) intel(0): Not using default mode "400x300" (doublescan mode not supported) [ 159.089] (II) intel(0): Not using default mode "400x300" (doublescan mode not supported) [ 159.089] (II) intel(0): Not using default mode "512x384" (doublescan mode not supported) [ 159.089] (II) intel(0): Not using default mode "640x480" (doublescan mode not supported) [ 159.089] (II) intel(0): Not using default mode "640x512" (doublescan mode not supported) [ 159.089] (II) intel(0): Not using default mode "800x600" (doublescan mode not supported) [ 159.089] (II) intel(0): Not using default mode "896x672" (doublescan mode not supported) [ 159.090] (II) intel(0): Not using default mode "928x696" (doublescan mode not supported) [ 159.090] (II) intel(0): Not using default mode "960x720" (doublescan mode not supported) [ 159.090] (II) intel(0): Not using default mode "700x525" (doublescan mode not supported) [ 159.090] (II) intel(0): Not using default mode "1024x768" (doublescan mode not supported) [ 159.090] (II) intel(0): Not using default mode "320x180" (doublescan mode not supported) [ 159.090] (II) intel(0): Not using default mode "320x180" (doublescan mode not supported) [ 159.090] (II) intel(0): Not using default mode "360x202" (doublescan mode not supported) [ 159.090] (II) intel(0): Not using default mode "360x202" (doublescan mode not supported) [ 159.090] (II) intel(0): Not using default mode "432x243" (doublescan mode not supported) [ 159.090] (II) intel(0): Not using default mode "432x243" (doublescan mode not supported) [ 159.090] (II) intel(0): Not using default mode "480x270" (doublescan mode not supported) [ 159.090] (II) intel(0): Not using default mode "480x270" (doublescan mode not supported) [ 159.090] (II) intel(0): Not using default mode "512x288" (doublescan mode not supported) [ 159.090] (II) intel(0): Not using default mode "512x288" (doublescan mode not supported) [ 159.090] (II) intel(0): Not using default mode "640x360" (doublescan mode not supported) [ 159.090] (II) intel(0): Not using default mode "640x360" (doublescan mode not supported) [ 159.090] (II) intel(0): Not using default mode "684x384" (doublescan mode not supported) [ 159.090] (II) intel(0): Not using default mode "684x384" (doublescan mode not supported) [ 159.090] (II) intel(0): Not using default mode "800x450" (doublescan mode not supported) [ 159.090] (II) intel(0): Not using default mode "800x450" (doublescan mode not supported) [ 159.090] (II) intel(0): Not using default mode "960x540" (doublescan mode not supported) [ 159.090] (II) intel(0): Not using default mode "960x540" (doublescan mode not supported) [ 159.090] (II) intel(0): Not using default mode "1024x576" (doublescan mode not supported) [ 159.090] (II) intel(0): Not using default mode "1024x576" (doublescan mode not supported) [ 159.090] (II) intel(0): Not using default mode "1280x720" (doublescan mode not supported) [ 159.090] (II) intel(0): Not using default mode "1280x720" (doublescan mode not supported) [ 159.090] (II) intel(0): Not using default mode "640x400" (doublescan mode not supported) [ 159.090] (II) intel(0): Not using default mode "640x400" (doublescan mode not supported) [ 159.090] (II) intel(0): Not using default mode "700x450" (doublescan mode not supported) [ 159.090] (II) intel(0): Not using default mode "700x450" (doublescan mode not supported) [ 159.090] (II) intel(0): Not using default mode "840x525" (doublescan mode not supported) [ 159.090] (II) intel(0): Not using default mode "840x525" (doublescan mode not supported) [ 159.090] (II) intel(0): Not using default mode "960x600" (doublescan mode not supported) [ 159.090] (II) intel(0): Not using default mode "960x600" (doublescan mode not supported) [ 159.090] (II) intel(0): Not using default mode "1280x800" (doublescan mode not supported) [ 159.090] (II) intel(0): Not using default mode "1280x800" (doublescan mode not supported) [ 159.090] (II) intel(0): Printing probed modes for output LVDS1 [ 159.090] (II) intel(0): Modeline "1280x800"x60.0 71.10 1280 1328 1360 1440 800 803 809 823 -hsync -vsync (49.4 kHz eP) [ 159.090] (II) intel(0): Modeline "1280x800"x59.8 83.50 1280 1352 1480 1680 800 803 809 831 -hsync +vsync (49.7 kHz d) [ 159.090] (II) intel(0): Modeline "1280x800"x59.9 71.00 1280 1328 1360 1440 800 803 809 823 +hsync -vsync (49.3 kHz d) [ 159.090] (II) intel(0): Modeline "1280x800"x50.0 59.26 1280 1328 1360 1440 800 803 809 823 -hsync -vsync (41.2 kHz e) [ 159.090] (II) intel(0): Modeline "1280x720"x59.9 74.50 1280 1344 1472 1664 720 723 728 748 -hsync +vsync (44.8 kHz d) [ 159.090] (II) intel(0): Modeline "1280x720"x59.7 63.75 1280 1328 1360 1440 720 723 728 741 +hsync -vsync (44.3 kHz d) [ 159.090] (II) intel(0): Modeline "1024x768"x60.0 65.00 1024 1048 1184 1344 768 771 777 806 -hsync -vsync (48.4 kHz d) [ 159.090] (II) intel(0): Modeline "1024x576"x59.9 46.50 1024 1064 1160 1296 576 579 584 599 -hsync +vsync (35.9 kHz d) [ 159.090] (II) intel(0): Modeline "1024x576"x59.8 42.00 1024 1072 1104 1184 576 579 584 593 +hsync -vsync (35.5 kHz d) [ 159.090] (II) intel(0): Modeline "960x540"x59.6 40.75 960 992 1088 1216 540 543 548 562 -hsync +vsync (33.5 kHz d) [ 159.090] (II) intel(0): Modeline "960x540"x59.8 37.25 960 1008 1040 1120 540 543 548 556 +hsync -vsync (33.3 kHz d) [ 159.090] (II) intel(0): Modeline "800x600"x60.3 40.00 800 840 968 1056 600 601 605 628 +hsync +vsync (37.9 kHz d) [ 159.090] (II) intel(0): Modeline "800x600"x56.2 36.00 800 824 896 1024 600 601 603 625 +hsync +vsync (35.2 kHz d) [ 159.090] (II) intel(0): Modeline "864x486"x59.9 32.50 864 888 968 1072 486 489 494 506 -hsync +vsync (30.3 kHz d) [ 159.090] (II) intel(0): Modeline "864x486"x59.6 30.50 864 912 944 1024 486 489 494 500 +hsync -vsync (29.8 kHz d) [ 159.090] (II) intel(0): Modeline "640x480"x59.9 25.18 640 656 752 800 480 490 492 525 -hsync -vsync (31.5 kHz d) [ 159.090] (II) intel(0): Modeline "720x405"x59.5 22.50 720 744 808 896 405 408 413 422 -hsync +vsync (25.1 kHz d) [ 159.090] (II) intel(0): Modeline "720x405"x59.0 21.75 720 768 800 880 405 408 413 419 +hsync -vsync (24.7 kHz d) [ 159.090] (II) intel(0): Modeline "640x360"x59.8 18.00 640 664 720 800 360 363 368 376 -hsync +vsync (22.5 kHz d) [ 159.090] (II) intel(0): Modeline "640x360"x59.3 17.75 640 688 720 800 360 363 368 374 +hsync -vsync (22.2 kHz d) [ 159.099] (II) intel(0): EDID for output VGA1 [ 159.306] (II) intel(0): EDID for output HDMI1 [ 159.385] (II) intel(0): EDID for output DP1 [ 159.386] (II) intel(0): EDID for output HDMI2 [ 159.465] (II) intel(0): EDID for output DP2 [ 159.543] (II) intel(0): EDID for output DP3 [ 159.543] (II) intel(0): Output LVDS1 connected [ 159.543] (II) intel(0): Output VGA1 disconnected [ 159.543] (II) intel(0): Output HDMI1 disconnected [ 159.543] (II) intel(0): Output DP1 disconnected [ 159.543] (II) intel(0): Output HDMI2 disconnected [ 159.543] (II) intel(0): Output DP2 disconnected [ 159.543] (II) intel(0): Output DP3 disconnected [ 159.543] (II) intel(0): Using exact sizes for initial modes [ 159.543] (II) intel(0): Output LVDS1 using initial mode 1280x800 +0+0 [ 159.544] (II) intel(0): Kernel page flipping support detected, enabling [ 159.544] (==) intel(0): Using gamma correction (1.0, 1.0, 1.0) [ 159.544] (==) intel(0): DPI set to (96, 96) [ 159.544] (II) Loading sub module "fb" [ 159.544] (II) LoadModule: "fb" [ 159.544] (II) Loading /usr/lib/xorg/modules/libfb.so [ 159.544] (II) Module fb: vendor="X.Org Foundation" [ 159.544] compiled for 1.20.7, module version = 1.0.0 [ 159.544] ABI class: X.Org ANSI C Emulation, version 0.4 [ 159.544] (II) Loading sub module "dri2" [ 159.544] (II) LoadModule: "dri2" [ 159.544] (II) Module "dri2" already built-in [ 159.544] (II) Loading sub module "dri3" [ 159.544] (II) LoadModule: "dri3" [ 159.544] (II) Module "dri3" already built-in [ 159.544] (II) intel(0): Allocated new frame buffer 1280x800 stride 5120, tiled [ 159.560] (II) UXA(0): Driver registered support for the following operations: [ 159.560] (II) solid [ 159.560] (II) copy [ 159.560] (II) composite (RENDER acceleration) [ 159.560] (II) put_image [ 159.560] (II) get_image [ 159.560] (II) intel(0): [DRI2] Setup complete [ 159.560] (II) intel(0): [DRI2] DRI driver: i965 [ 159.560] (II) intel(0): [DRI2] VDPAU driver: va_gl [ 159.560] (==) intel(0): Backing store enabled [ 159.560] (==) intel(0): Silken mouse disabled [ 159.560] (II) intel(0): Initializing HW Cursor [ 159.560] (==) intel(0): DPMS enabled [ 159.560] (==) intel(0): Intel XvMC decoder enabled [ 159.560] (II) intel(0): Set up textured video [ 159.560] (II) intel(0): [XvMC] xvmc_vld driver initialized. [ 159.560] (II) intel(0): DRI2: Enabled [ 159.560] (II) intel(0): DRI3: Enabled [ 159.560] (==) intel(0): hotplug detection: "enabled" [ 159.586] (II) Initializing extension Generic Event Extension [ 159.586] (II) Initializing extension SHAPE [ 159.586] (II) Initializing extension MIT-SHM [ 159.586] (II) Initializing extension XInputExtension [ 159.587] (II) Initializing extension XTEST [ 159.587] (II) Initializing extension BIG-REQUESTS [ 159.587] (II) Initializing extension SYNC [ 159.587] (II) Initializing extension XKEYBOARD [ 159.587] (II) Initializing extension XC-MISC [ 159.587] (II) Initializing extension SECURITY [ 159.587] (II) Initializing extension XFIXES [ 159.587] (II) Initializing extension RENDER [ 159.587] (II) Initializing extension RANDR [ 159.587] (II) Initializing extension COMPOSITE [ 159.587] (II) Initializing extension DAMAGE [ 159.587] (II) Initializing extension MIT-SCREEN-SAVER [ 159.587] (II) Initializing extension DOUBLE-BUFFER [ 159.587] (II) Initializing extension RECORD [ 159.587] (II) Initializing extension DPMS [ 159.587] (II) Initializing extension Present [ 159.587] (II) Initializing extension DRI3 [ 159.587] (II) Initializing extension X-Resource [ 159.587] (II) Initializing extension XVideo [ 159.587] (II) Initializing extension XVideo-MotionCompensation [ 159.587] (II) Initializing extension GLX [ 159.616] (II) AIGLX: Loaded and initialized i965 [ 159.616] (II) GLX: Initialized DRI2 GL provider for screen 0 [ 159.616] (II) Initializing extension XFree86-VidModeExtension [ 159.616] (II) Initializing extension XFree86-DGA [ 159.616] (II) Initializing extension XFree86-DRI [ 159.616] (II) Initializing extension DRI2 [ 159.616] (II) intel(0): Setting screen physical size to 338 x 211 [ 159.697] (II) config/udev: Adding input device Power Button (/dev/input/event2) [ 159.698] (**) Power Button: Applying InputClass "libinput keyboard catchall" [ 159.698] (II) LoadModule: "libinput" [ 159.698] (II) Loading /usr/lib/xorg/modules/input/libinput_drv.so [ 159.699] (II) Module libinput: vendor="X.Org Foundation" [ 159.699] compiled for 1.20.5, module version = 0.29.0 [ 159.699] Module class: X.Org XInput Driver [ 159.699] ABI class: X.Org XInput driver, version 24.1 [ 159.699] (II) Using input driver 'libinput' for 'Power Button' [ 159.701] (II) systemd-logind: got fd for /dev/input/event2 13:66 fd 14 paused 0 [ 159.701] (**) Power Button: always reports core events [ 159.701] (**) Option "Device" "/dev/input/event2" [ 159.701] (**) Option "_source" "server/udev" [ 159.703] (II) event2 - Power Button: is tagged by udev as: Keyboard [ 159.703] (II) event2 - Power Button: device is a keyboard [ 159.704] (II) event2 - Power Button: device removed [ 159.704] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/LNXPWRBN:00/input/input2/event2" [ 159.704] (II) XINPUT: Adding extended input device "Power Button" (type: KEYBOARD, id 6) [ 159.705] (II) event2 - Power Button: is tagged by udev as: Keyboard [ 159.705] (II) event2 - Power Button: device is a keyboard [ 159.706] (II) config/udev: Adding input device Video Bus (/dev/input/event11) [ 159.706] (**) Video Bus: Applying InputClass "libinput keyboard catchall" [ 159.706] (II) Using input driver 'libinput' for 'Video Bus' [ 159.707] (II) systemd-logind: got fd for /dev/input/event11 13:75 fd 17 paused 0 [ 159.707] (**) Video Bus: always reports core events [ 159.707] (**) Option "Device" "/dev/input/event11" [ 159.707] (**) Option "_source" "server/udev" [ 159.709] (II) event11 - Video Bus: is tagged by udev as: Keyboard [ 159.709] (II) event11 - Video Bus: device is a keyboard [ 159.709] (II) event11 - Video Bus: device removed [ 159.709] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/LNXVIDEO:00/input/input12/event11" [ 159.709] (II) XINPUT: Adding extended input device "Video Bus" (type: KEYBOARD, id 7) [ 159.711] (II) event11 - Video Bus: is tagged by udev as: Keyboard [ 159.711] (II) event11 - Video Bus: device is a keyboard [ 159.711] (II) config/udev: Adding input device Lid Switch (/dev/input/event0) [ 159.711] (II) No input driver specified, ignoring this device. [ 159.711] (II) This device may have been added with another device file. [ 159.712] (II) config/udev: Adding input device Sleep Button (/dev/input/event1) [ 159.712] (**) Sleep Button: Applying InputClass "libinput keyboard catchall" [ 159.712] (II) Using input driver 'libinput' for 'Sleep Button' [ 159.713] (II) systemd-logind: got fd for /dev/input/event1 13:65 fd 18 paused 0 [ 159.713] (**) Sleep Button: always reports core events [ 159.713] (**) Option "Device" "/dev/input/event1" [ 159.713] (**) Option "_source" "server/udev" [ 159.714] (II) event1 - Sleep Button: is tagged by udev as: Keyboard [ 159.715] (II) event1 - Sleep Button: device is a keyboard [ 159.715] (II) event1 - Sleep Button: device removed [ 159.715] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0E:00/input/input1/event1" [ 159.715] (II) XINPUT: Adding extended input device "Sleep Button" (type: KEYBOARD, id 8) [ 159.716] (II) event1 - Sleep Button: is tagged by udev as: Keyboard [ 159.716] (II) event1 - Sleep Button: device is a keyboard [ 159.718] (II) config/udev: Adding input device HDA Intel Dock Headphone (/dev/input/event8) [ 159.718] (II) No input driver specified, ignoring this device. [ 159.718] (II) This device may have been added with another device file. [ 159.718] (II) config/udev: Adding input device HDA Intel Headphone (/dev/input/event9) [ 159.718] (II) No input driver specified, ignoring this device. [ 159.718] (II) This device may have been added with another device file. [ 159.719] (II) config/udev: Adding input device HDA Intel Mic (/dev/input/event6) [ 159.719] (II) No input driver specified, ignoring this device. [ 159.719] (II) This device may have been added with another device file. [ 159.719] (II) config/udev: Adding input device HDA Intel Dock Mic (/dev/input/event7) [ 159.719] (II) No input driver specified, ignoring this device. [ 159.719] (II) This device may have been added with another device file. [ 159.720] (II) config/udev: Adding input device AT Translated Set 2 keyboard (/dev/input/event3) [ 159.720] (**) AT Translated Set 2 keyboard: Applying InputClass "libinput keyboard catchall" [ 159.720] (II) Using input driver 'libinput' for 'AT Translated Set 2 keyboard' [ 159.721] (II) systemd-logind: got fd for /dev/input/event3 13:67 fd 19 paused 0 [ 159.721] (**) AT Translated Set 2 keyboard: always reports core events [ 159.721] (**) Option "Device" "/dev/input/event3" [ 159.721] (**) Option "_source" "server/udev" [ 159.723] (II) event3 - AT Translated Set 2 keyboard: is tagged by udev as: Keyboard [ 159.723] (II) event3 - AT Translated Set 2 keyboard: device is a keyboard [ 159.723] (II) event3 - AT Translated Set 2 keyboard: device removed [ 159.724] (**) Option "config_info" "udev:/sys/devices/platform/i8042/serio0/input/input3/event3" [ 159.724] (II) XINPUT: Adding extended input device "AT Translated Set 2 keyboard" (type: KEYBOARD, id 9) [ 159.725] (II) event3 - AT Translated Set 2 keyboard: is tagged by udev as: Keyboard [ 159.725] (II) event3 - AT Translated Set 2 keyboard: device is a keyboard [ 159.727] (II) config/udev: Adding input device TPPS/2 IBM TrackPoint (/dev/input/event10) [ 159.727] (**) TPPS/2 IBM TrackPoint: Applying InputClass "libinput pointer catchall" [ 159.727] (II) Using input driver 'libinput' for 'TPPS/2 IBM TrackPoint' [ 159.728] (II) systemd-logind: got fd for /dev/input/event10 13:74 fd 20 paused 0 [ 159.728] (**) TPPS/2 IBM TrackPoint: always reports core events [ 159.728] (**) Option "Device" "/dev/input/event10" [ 159.728] (**) Option "_source" "server/udev" [ 159.729] (II) event10 - TPPS/2 IBM TrackPoint: is tagged by udev as: Mouse Pointingstick [ 159.730] (II) event10 - TPPS/2 IBM TrackPoint: trackpoint multiplier is 1.25 [ 159.730] (II) event10 - TPPS/2 IBM TrackPoint: device is a pointer [ 159.731] (II) event10 - TPPS/2 IBM TrackPoint: device removed [ 159.731] (**) Option "config_info" "udev:/sys/devices/platform/i8042/serio1/input/input6/event10" [ 159.731] (II) XINPUT: Adding extended input device "TPPS/2 IBM TrackPoint" (type: MOUSE, id 10) [ 159.731] (**) Option "AccelerationScheme" "none" [ 159.731] (**) TPPS/2 IBM TrackPoint: (accel) selected scheme none/0 [ 159.731] (**) TPPS/2 IBM TrackPoint: (accel) acceleration factor: 2.000 [ 159.731] (**) TPPS/2 IBM TrackPoint: (accel) acceleration threshold: 4 [ 159.732] (II) event10 - TPPS/2 IBM TrackPoint: is tagged by udev as: Mouse Pointingstick [ 159.733] (II) event10 - TPPS/2 IBM TrackPoint: trackpoint multiplier is 1.25 [ 159.733] (II) event10 - TPPS/2 IBM TrackPoint: device is a pointer [ 159.734] (II) config/udev: Adding input device TPPS/2 IBM TrackPoint (/dev/input/mouse0) [ 159.734] (II) No input driver specified, ignoring this device. [ 159.734] (II) This device may have been added with another device file. [ 159.735] (II) config/udev: Adding input device PC Speaker (/dev/input/event4) [ 159.735] (II) No input driver specified, ignoring this device. [ 159.735] (II) This device may have been added with another device file. [ 159.736] (II) config/udev: Adding input device ThinkPad Extra Buttons (/dev/input/event5) [ 159.736] (**) ThinkPad Extra Buttons: Applying InputClass "libinput keyboard catchall" [ 159.736] (II) Using input driver 'libinput' for 'ThinkPad Extra Buttons' [ 159.737] (II) systemd-logind: got fd for /dev/input/event5 13:69 fd 21 paused 0 [ 159.737] (**) ThinkPad Extra Buttons: always reports core events [ 159.737] (**) Option "Device" "/dev/input/event5" [ 159.737] (**) Option "_source" "server/udev" [ 159.738] (II) event5 - ThinkPad Extra Buttons: is tagged by udev as: Keyboard Switch [ 159.738] (II) event5 - ThinkPad Extra Buttons: device is a keyboard [ 159.739] (II) event5 - ThinkPad Extra Buttons: device removed [ 159.739] (**) Option "config_info" "udev:/sys/devices/platform/thinkpad_acpi/input/input7/event5" [ 159.739] (II) XINPUT: Adding extended input device "ThinkPad Extra Buttons" (type: KEYBOARD, id 11) [ 159.740] (II) event5 - ThinkPad Extra Buttons: is tagged by udev as: Keyboard Switch [ 159.740] (II) event5 - ThinkPad Extra Buttons: device is a keyboard [ 172.923] (**) Option "fd" "14" [ 172.923] (II) event2 - Power Button: device removed [ 172.923] (**) Option "fd" "17" [ 172.923] (II) event11 - Video Bus: device removed [ 172.924] (**) Option "fd" "18" [ 172.924] (II) event1 - Sleep Button: device removed [ 172.924] (**) Option "fd" "19" [ 172.924] (II) event3 - AT Translated Set 2 keyboard: device removed [ 172.924] (**) Option "fd" "20" [ 172.925] (II) event10 - TPPS/2 IBM TrackPoint: device removed [ 172.925] (**) Option "fd" "21" [ 172.925] (II) event5 - ThinkPad Extra Buttons: device removed [ 172.925] (II) AIGLX: Suspending AIGLX clients for VT switch [ 172.978] (II) systemd-logind: got pause for 13:75 [ 172.979] (II) systemd-logind: got pause for 13:65 [ 172.979] (II) systemd-logind: got pause for 226:0 [ 172.979] (II) systemd-logind: got pause for 13:66 [ 172.979] (II) systemd-logind: got pause for 13:67 [ 172.979] (II) systemd-logind: got pause for 13:74 [ 172.979] (II) systemd-logind: got pause for 13:69 [ 173.347] (II) systemd-logind: got resume for 13:75 [ 173.376] (II) systemd-logind: got resume for 13:65 [ 173.377] (II) systemd-logind: got resume for 226:0 [ 173.377] (II) AIGLX: Resuming AIGLX clients after VT switch [ 173.424] (II) intel(0): EDID vendor "LEN", prod id 16400 [ 173.425] (II) intel(0): Printing DDC gathered Modelines: [ 173.425] (II) intel(0): Modeline "1280x800"x0.0 71.10 1280 1328 1360 1440 800 803 809 823 -hsync -vsync (49.4 kHz eP) [ 173.425] (II) intel(0): Modeline "1280x800"x0.0 59.26 1280 1328 1360 1440 800 803 809 823 -hsync -vsync (41.2 kHz e) [ 173.913] (II) event11 - Video Bus: is tagged by udev as: Keyboard [ 173.914] (II) event11 - Video Bus: device is a keyboard [ 173.921] (II) event1 - Sleep Button: is tagged by udev as: Keyboard [ 173.922] (II) event1 - Sleep Button: device is a keyboard [ 173.934] (II) systemd-logind: got resume for 13:66 [ 173.936] (II) event2 - Power Button: is tagged by udev as: Keyboard [ 173.936] (II) event2 - Power Button: device is a keyboard [ 173.936] (II) systemd-logind: got resume for 13:67 [ 173.939] (II) event3 - AT Translated Set 2 keyboard: is tagged by udev as: Keyboard [ 173.939] (II) event3 - AT Translated Set 2 keyboard: device is a keyboard [ 173.940] (II) systemd-logind: got resume for 13:74 [ 173.942] (II) event10 - TPPS/2 IBM TrackPoint: is tagged by udev as: Mouse Pointingstick [ 173.943] (II) event10 - TPPS/2 IBM TrackPoint: trackpoint multiplier is 1.25 [ 173.943] (II) event10 - TPPS/2 IBM TrackPoint: device is a pointer [ 173.944] (II) systemd-logind: got resume for 13:69 [ 173.948] (II) event5 - ThinkPad Extra Buttons: is tagged by udev as: Keyboard Switch [ 173.948] (II) event5 - ThinkPad Extra Buttons: device is a keyboard [ 186.714] (**) Option "fd" "38" [ 186.714] (II) event2 - Power Button: device removed [ 186.715] (**) Option "fd" "17" [ 186.715] (II) event11 - Video Bus: device removed [ 186.715] (**) Option "fd" "19" [ 186.715] (II) event1 - Sleep Button: device removed [ 186.715] (**) Option "fd" "18" [ 186.715] (II) event3 - AT Translated Set 2 keyboard: device removed [ 186.716] (**) Option "fd" "21" [ 186.716] (II) event10 - TPPS/2 IBM TrackPoint: device removed [ 186.716] (**) Option "fd" "31" [ 186.716] (II) event5 - ThinkPad Extra Buttons: device removed [ 186.716] (II) AIGLX: Suspending AIGLX clients for VT switch [ 186.776] (II) systemd-logind: got pause for 13:75 [ 186.776] (II) systemd-logind: got pause for 13:65 [ 186.776] (II) systemd-logind: got pause for 226:0 [ 186.776] (II) systemd-logind: got pause for 13:66 [ 186.776] (II) systemd-logind: got pause for 13:67 [ 186.776] (II) systemd-logind: got pause for 13:74 [ 186.776] (II) systemd-logind: got pause for 13:69 [ 187.550] (II) systemd-logind: got resume for 13:75 [ 187.580] (II) systemd-logind: got resume for 13:65 [ 187.580] (II) systemd-logind: got resume for 226:0 [ 187.580] (II) AIGLX: Resuming AIGLX clients after VT switch [ 187.619] (II) intel(0): EDID vendor "LEN", prod id 16400 [ 187.619] (II) intel(0): Printing DDC gathered Modelines: [ 187.620] (II) intel(0): Modeline "1280x800"x0.0 71.10 1280 1328 1360 1440 800 803 809 823 -hsync -vsync (49.4 kHz eP) [ 187.620] (II) intel(0): Modeline "1280x800"x0.0 59.26 1280 1328 1360 1440 800 803 809 823 -hsync -vsync (41.2 kHz e) [ 188.091] (II) event11 - Video Bus: is tagged by udev as: Keyboard [ 188.092] (II) event11 - Video Bus: device is a keyboard [ 188.094] (II) event1 - Sleep Button: is tagged by udev as: Keyboard [ 188.094] (II) event1 - Sleep Button: device is a keyboard [ 188.095] (II) systemd-logind: got resume for 13:66 [ 188.099] (II) event2 - Power Button: is tagged by udev as: Keyboard [ 188.099] (II) event2 - Power Button: device is a keyboard [ 188.100] (II) systemd-logind: got resume for 13:67 [ 188.103] (II) event3 - AT Translated Set 2 keyboard: is tagged by udev as: Keyboard [ 188.103] (II) event3 - AT Translated Set 2 keyboard: device is a keyboard [ 188.104] (II) systemd-logind: got resume for 13:74 [ 188.107] (II) event10 - TPPS/2 IBM TrackPoint: is tagged by udev as: Mouse Pointingstick [ 188.107] (II) event10 - TPPS/2 IBM TrackPoint: trackpoint multiplier is 1.25 [ 188.108] (II) event10 - TPPS/2 IBM TrackPoint: device is a pointer [ 188.109] (II) systemd-logind: got resume for 13:69 [ 188.111] (II) event5 - ThinkPad Extra Buttons: is tagged by udev as: Keyboard Switch [ 188.111] (II) event5 - ThinkPad Extra Buttons: device is a keyboard [ 209.206] (**) Option "fd" "18" [ 209.206] (II) event11 - Video Bus: device removed [ 209.206] (**) Option "fd" "20" [ 209.206] (II) event1 - Sleep Button: device removed [ 209.206] (**) Option "fd" "38" [ 209.206] (II) event2 - Power Button: device removed [ 209.206] (**) Option "fd" "19" [ 209.206] (II) event3 - AT Translated Set 2 keyboard: device removed [ 209.206] (**) Option "fd" "21" [ 209.206] (II) event10 - TPPS/2 IBM TrackPoint: device removed [ 209.206] (**) Option "fd" "28" [ 209.206] (II) event5 - ThinkPad Extra Buttons: device removed [ 209.223] (II) UnloadModule: "libinput" [ 209.223] (II) systemd-logind: releasing fd for 13:69 [ 209.252] (II) UnloadModule: "libinput" [ 209.253] (II) systemd-logind: releasing fd for 13:74 [ 209.289] (II) UnloadModule: "libinput" [ 209.290] (II) systemd-logind: releasing fd for 13:67 [ 209.313] (II) UnloadModule: "libinput" [ 209.313] (II) systemd-logind: releasing fd for 13:66 [ 209.343] (II) UnloadModule: "libinput" [ 209.343] (II) systemd-logind: releasing fd for 13:65 [ 209.373] (II) UnloadModule: "libinput" [ 209.374] (II) systemd-logind: releasing fd for 13:75 [ 209.496] (II) Server terminated successfully (0). Closing log file. ```
/home/darren/.local/share/xorg/Xorg.0.log.old ``` ```
Un1Gfn commented 4 years ago

photo_2020-02-17_21-48-00

Un1Gfn commented 4 years ago

Intel Gen4 GPU family It seems that @Skibicki has a similar GPU, GMA 4500 (I'm GMA 4500MHD) However SNA+TearFree+picom does not eliminate screen tearing for me. I have to switch to UXA.

Un1Gfn commented 4 years ago

I switched to wayland+sway :)

Un1Gfn commented 4 years ago

Elimited w/ early KMS

:-1: xf86-video-intel :-1:
:-1: wayland :-1:
:-1: swaywm :-1: :angry: :anger:

:+1: picom :+1: :100: