You are not logged in.

#1 2024-12-01 17:25:03

who sam
Member
Registered: 2024-12-01
Posts: 8

[SOLVED] any xorg related wm not working

i installed arch from almost 1 year ( but i'm a noob)
i'm not a very good programmer , i only know the basics
i got no gpu only apu : AMD Ryzen 3 PRO 2200G with Radeon Vega Graphics
the system was working and no problem using qtile mainly and gnome sometimes
from 4 weaks i installed hyprland
everything worked with no problems for 1 weak
then qtile , gnome on xorg are not working but there wayland versions are working with no problems
i tried going to default config,py for qtile but no changes

tried to search but nothing helped


the files i got in /etc/X11/xinit :

/etc/X11/xinit/xinitrc :

  
#!/bin/sh

userresources=$HOME/.Xresources
usermodmap=$HOME/.Xmodmap
sysresources=/etc/X11/xinit/.Xresources
sysmodmap=/etc/X11/xinit/.Xmodmap

# Merge in default resources and keymaps

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

# Run scripts in xinitrc.d if they exist
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

# Optionally start some programs (correcting "alacrityy" to "alacritty")
# You can uncomment these if needed
# xclock -geometry 50x50-1+1 &
# alacritty &
# exec twm
#
# Start the window manager
exec qtile start

/etc/X11/xinit/xserverrc :

#!/bin/sh
exec /usr/bin/X -nolisten tcp "$@"

/etc/X11/xinit/xinitrc.d/40-libcanberra-gtk-module.sh :

#!/bin/sh

case "${DESKTOP_SESSION-}" in
  gnome*) # Done by gnome-settings-daemon
  ;;
  *)
    # Extra check in case DESKTOP_SESSION is not set correctly
    if [ -z "${GNOME_DESKTOP_SESSION_ID-}" ]; then
      GTK_MODULES="${GTK_MODULES:+$GTK_MODULES:}canberra-gtk-module"
      export GTK_MODULES
    fi
  ;;
esac

/etc/X11/xinit/xinitrc.d/50-systemd-user.sh :

#!/bin/sh
#  SPDX-License-Identifier: LGPL-2.1-or-later
#
#  This file is part of systemd.
#
#  systemd is free software; you can redistribute it and/or modify it
#  under the terms of the GNU Lesser General Public License as published by
#  the Free Software Foundation; either version 2.1 of the License, or
#  (at your option) any later version.

systemctl --user import-environment DISPLAY XAUTHORITY

if command -v dbus-update-activation-environment >/dev/null 2>&1; then
    dbus-update-activation-environment DISPLAY XAUTHORITY
fi

/etc/X11/xinit/xinitrc.d/80xapp-gtk3-module.sh :

#!/bin/bash
# This file is sourced by xinit(1) or a display manager's Xsession, not executed.

if [ -z "$GTK3_MODULES" ] ; then
    GTK3_MODULES="xapp-gtk3-module"
else
    GTK3_MODULES="$GTK3_MODULES:xapp-gtk3-module"
fi

export GTK3_MODULES

/etc/X11/xinit/xinitrc.d/90xbrlapi :

# startup script for /etc/X11/Xsession.d

prefix="/usr"
exec_prefix="${prefix}"
drivers_directory="${exec_prefix}/lib/brltty"
program_directory="${exec_prefix}/bin"
xbrlapi="$program_directory/xbrlapi"
brltty="$program_directory/brltty"

if [ -x "${xbrlapi}" ]; then
  if "${xbrlapi}" 2>/dev/null ; then
    # xbrlapi could connect to BrlAPI, try to start brltty with AtSpi2 driver.
    if [ -x "${brltty}" -a \
         -e "$drivers_directory/libbrlttybba.so" -a \
         -e "$drivers_directory/libbrlttyxa2.so" ]; then
      "${brltty}" -b ba -s no -x a2 -N 2>/dev/null
    fi
  fi
fi
the files i got in /etc/X11/xorg.conf.d :

/etc/X11/xorg.conf.d/00-keyboard.conf :

# Written by systemd-localed(8), read by systemd-localed and Xorg. It's
# probably wise not to edit this file manually. Use localectl(1) to
# instruct systemd-localed to update it.
Section "InputClass"
        Identifier "system-keyboard"
        MatchIsKeyboard "on"
        Option "XkbLayout" "us,ara"
        Option "XkbModel" "pc105"
        Option "XkbVariant" ",qwerty"
        Option "XkbOptions" "grp:alt_shift_toggle"
EndSection

/etc/X11/xorg.conf.d/10-amdgpu.conf :

Section "Device"
    Identifier "AMD"
    Driver "amdgpu"
    BusID "PCI:6:0:0"  # Replace with your correct BusID from lspci
    # Option "PrimaryGPU" "true"
EndSection

/etc/X11/xorg.conf.d/10-modesetting.conf :

# Section "Device"
#     Identifier "modesetting"
#     Driver "modesetting"
# EndSection
~/.local/share/xorg/Xorg.0.log :
[    53.126] (--) Log file renamed from "/home/hossam/.local/share/xorg/Xorg.pid-1565.log" to "/home/hossam/.local/share/xorg/Xorg.0.log"
[    53.126] 
X.Org X Server 1.21.1.14
X Protocol Version 11, Revision 0
[    53.126] Current Operating System: Linux arch 6.12.1-arch1-1 #1 SMP PREEMPT_DYNAMIC Fri, 22 Nov 2024 16:04:27 +0000 x86_64
[    53.126] Kernel command line: BOOT_IMAGE=/boot/vmlinuz-linux root=UUID=610dcefc-3605-4aee-b9a6-dff658b1a422 rw loglevel=3 quiet
[    53.126]  
[    53.126] Current version of pixman: 0.44.0
[    53.126] 	Before reporting problems, check http://wiki.x.org
	to make sure that you have the latest version.
[    53.126] Markers: (--) probed, (**) from config file, (==) default setting,
	(++) from command line, (!!) notice, (II) informational,
	(WW) warning, (EE) error, (NI) not implemented, (??) unknown.
[    53.126] (==) Log file: "/home/hossam/.local/share/xorg/Xorg.0.log", Time: Sun Dec  1 18:13:33 2024
[    53.126] (==) Using config directory: "/etc/X11/xorg.conf.d"
[    53.126] (==) Using system config directory "/usr/share/X11/xorg.conf.d"
[    53.126] (==) No Layout section.  Using the first Screen section.
[    53.126] (==) No screen section available. Using defaults.
[    53.126] (**) |-->Screen "Default Screen Section" (0)
[    53.126] (**) |   |-->Monitor "<default monitor>"
[    53.126] (==) No device specified for screen "Default Screen Section".
	Using the first device section listed.
[    53.126] (**) |   |-->Device "AMD"
[    53.126] (==) No monitor specified for screen "Default Screen Section".
	Using a default monitor configuration.
[    53.126] (**) Allowing byte-swapped clients
[    53.126] (==) Automatically adding devices
[    53.126] (==) Automatically enabling devices
[    53.126] (==) Automatically adding GPU devices
[    53.126] (==) Automatically binding GPU devices
[    53.126] (==) Max clients allowed: 256, resource mask: 0x1fffff
[    53.126] (==) FontPath set to:
	/usr/share/fonts/misc,
	/usr/share/fonts/TTF,
	/usr/share/fonts/OTF,
	/usr/share/fonts/Type1,
	/usr/share/fonts/100dpi,
	/usr/share/fonts/75dpi
[    53.126] (==) ModulePath set to "/usr/lib/xorg/modules"
[    53.126] (II) The server relies on udev to provide the list of input devices.
	If no devices become available, reconfigure udev or disable AutoAddDevices.
[    53.126] (II) Module ABI versions:
[    53.126] 	X.Org ANSI C Emulation: 0.4
[    53.127] 	X.Org Video Driver: 25.2
[    53.127] 	X.Org XInput driver : 24.4
[    53.127] 	X.Org Server Extension : 10.0
[    53.127] (++) using VT number 2

[    53.129] (II) systemd-logind: took control of session /org/freedesktop/login1/session/_35
[    53.129] (II) xfree86: Adding drm device (/dev/dri/card1)
[    53.129] (II) Platform probe for /sys/devices/pci0000:00/0000:00:08.1/0000:06:00.0/drm/card1
[    53.130] (II) systemd-logind: got fd for /dev/dri/card1 226:1 fd 14 paused 0
[    53.132] (--) PCI:*(6@0:0:0) 1002:15dd:1002:15dd rev 213, Mem @ 0xe0000000/268435456, 0xf0000000/2097152, 0xfcc00000/524288, I/O @ 0x0000e000/256, BIOS @ 0x????????/131072
[    53.132] (II) Open ACPI successful (/var/run/acpid.socket)
[    53.132] (II) LoadModule: "glx"
[    53.132] (II) Loading /usr/lib/xorg/modules/extensions/libglx.so
[    53.133] (II) Module glx: vendor="X.Org Foundation"
[    53.133] 	compiled for 1.21.1.14, module version = 1.0.0
[    53.133] 	ABI class: X.Org Server Extension, version 10.0
[    53.133] (II) LoadModule: "amdgpu"
[    53.133] (II) Loading /usr/lib/xorg/modules/drivers/amdgpu_drv.so
[    53.134] (II) Module amdgpu: vendor="X.Org Foundation"
[    53.134] 	compiled for 1.21.1.11, module version = 23.0.0
[    53.134] 	Module class: X.Org Video Driver
[    53.134] 	ABI class: X.Org Video Driver, version 25.2
[    53.134] (II) AMDGPU: Driver for AMD Radeon:
	All GPUs supported by the amdgpu kernel driver
[    53.134] (WW) VGA arbiter: cannot open kernel arbiter, no multi-card support
[    53.134] (II) AMDGPU(0): Creating default Display subsection in Screen section
	"Default Screen Section" for depth/fbbpp 24/32
[    53.134] (==) AMDGPU(0): Depth 24, (--) framebuffer bpp 32
[    53.134] (II) AMDGPU(0): Pixel depth = 24 bits stored in 4 bytes (32 bpp pixmaps)
[    53.134] (==) AMDGPU(0): Default visual is TrueColor
[    53.134] (II) Applying OutputClass "AMDgpu" options to /dev/dri/card1
[    53.134] (==) AMDGPU(0): RGB weight 888
[    53.134] (II) AMDGPU(0): Using 8 bits per RGB (8 bit DAC)
[    53.134] (--) AMDGPU(0): Chipset: "AMD Radeon Vega 8 Graphics" (ChipID = 0x15dd)
[    53.134] (II) Loading sub module "fb"
[    53.134] (II) LoadModule: "fb"
[    53.134] (II) Module "fb" already built-in
[    53.134] (II) Loading sub module "dri2"
[    53.134] (II) LoadModule: "dri2"
[    53.134] (II) Module "dri2" already built-in
[    53.161] (II) Loading sub module "glamoregl"
[    53.161] (II) LoadModule: "glamoregl"
[    53.161] (II) Loading /usr/lib/xorg/modules/libglamoregl.so
[    53.165] (II) Module glamoregl: vendor="X.Org Foundation"
[    53.165] 	compiled for 1.21.1.14, module version = 1.0.1
[    53.165] 	ABI class: X.Org ANSI C Emulation, version 0.4
[    53.175] (II) AMDGPU(0): glamor X acceleration enabled on AMD Radeon Vega 8 Graphics (radeonsi, raven, LLVM 18.1.8, DRM 3.59, 6.12.1-arch1-1)
[    53.175] (II) AMDGPU(0): glamor detected, initialising EGL layer.
[    53.175] (==) AMDGPU(0): TearFree property default: auto
[    53.175] (==) AMDGPU(0): VariableRefresh: disabled
[    53.175] (==) AMDGPU(0): AsyncFlipSecondaries: disabled
[    53.175] (II) AMDGPU(0): KMS Pageflipping: enabled
[    53.178] (II) AMDGPU(0): Output HDMI-A-0 has no monitor section
[    53.178] (II) AMDGPU(0): Output DVI-D-0 has no monitor section
[    53.187] (II) AMDGPU(0): EDID for output HDMI-A-0
[    53.187] (II) AMDGPU(0): Manufacturer: SAM  Model: 7088  Serial#: 808993111
[    53.187] (II) AMDGPU(0): Year: 2023  Week: 53
[    53.187] (II) AMDGPU(0): EDID Version: 1.3
[    53.187] (II) AMDGPU(0): Digital Display Input
[    53.187] (II) AMDGPU(0): Max Image Size [cm]: horiz.: 70  vert.: 40
[    53.187] (II) AMDGPU(0): Gamma: 2.20
[    53.187] (II) AMDGPU(0): DPMS capabilities: Off
[    53.187] (II) AMDGPU(0): Supported color encodings: RGB 4:4:4 YCrCb 4:4:4 
[    53.187] (II) AMDGPU(0): First detailed timing is preferred mode
[    53.187] (II) AMDGPU(0): redX: 0.681 redY: 0.320   greenX: 0.266 greenY: 0.690
[    53.187] (II) AMDGPU(0): blueX: 0.150 blueY: 0.061   whiteX: 0.313 whiteY: 0.329
[    53.187] (II) AMDGPU(0): Supported established timings:
[    53.187] (II) AMDGPU(0): 720x400@70Hz
[    53.187] (II) AMDGPU(0): 640x480@60Hz
[    53.187] (II) AMDGPU(0): 640x480@67Hz
[    53.187] (II) AMDGPU(0): 640x480@72Hz
[    53.187] (II) AMDGPU(0): 640x480@75Hz
[    53.187] (II) AMDGPU(0): 800x600@56Hz
[    53.187] (II) AMDGPU(0): 800x600@60Hz
[    53.187] (II) AMDGPU(0): 800x600@72Hz
[    53.187] (II) AMDGPU(0): 800x600@75Hz
[    53.187] (II) AMDGPU(0): 832x624@75Hz
[    53.187] (II) AMDGPU(0): 1024x768@60Hz
[    53.187] (II) AMDGPU(0): 1024x768@70Hz
[    53.187] (II) AMDGPU(0): 1024x768@75Hz
[    53.187] (II) AMDGPU(0): 1280x1024@75Hz
[    53.187] (II) AMDGPU(0): 1152x864@75Hz
[    53.187] (II) AMDGPU(0): Manufacturer's mask: 0
[    53.187] (II) AMDGPU(0): Supported standard timings:
[    53.187] (II) AMDGPU(0): #0: hsize: 1152  vsize 864  refresh: 75  vid: 20337
[    53.187] (II) AMDGPU(0): #1: hsize: 1280  vsize 800  refresh: 60  vid: 129
[    53.187] (II) AMDGPU(0): #2: hsize: 1280  vsize 720  refresh: 60  vid: 49281
[    53.187] (II) AMDGPU(0): #3: hsize: 1280  vsize 1024  refresh: 60  vid: 32897
[    53.187] (II) AMDGPU(0): #4: hsize: 1440  vsize 900  refresh: 60  vid: 149
[    53.187] (II) AMDGPU(0): #5: hsize: 1600  vsize 900  refresh: 60  vid: 49321
[    53.187] (II) AMDGPU(0): #6: hsize: 1680  vsize 1050  refresh: 60  vid: 179
[    53.187] (II) AMDGPU(0): Supported detailed timing:
[    53.187] (II) AMDGPU(0): clock: 580.1 MHz   Image Size:  698 x 393 mm
[    53.187] (II) AMDGPU(0): h_active: 2560  h_sync: 2568  h_sync_end 2632 h_blank_end 2720 h_border: 0
[    53.187] (II) AMDGPU(0): v_active: 1440  v_sync: 1443  v_sync_end 1448 v_blanking: 1481 v_border: 0
[    53.187] (II) AMDGPU(0): Ranges: V min: 50 V max: 144 Hz, H min: 30 H max: 214 kHz, PixClock max 595 MHz
[    53.187] (II) AMDGPU(0): Monitor name: LC32G5xT
[    53.187] (II) AMDGPU(0): Serial No: HK2WC01030
[    53.187] (II) AMDGPU(0): Supported detailed timing:
[    53.187] (II) AMDGPU(0): clock: 346.5 MHz   Image Size:  698 x 393 mm
[    53.187] (II) AMDGPU(0): h_active: 1920  h_sync: 1968  h_sync_end 2000 h_blank_end 2080 h_border: 0
[    53.187] (II) AMDGPU(0): v_active: 1080  v_sync: 1083  v_sync_end 1088 v_blanking: 1157 v_border: 0
[    53.187] (II) AMDGPU(0): Supported detailed timing:
[    53.187] (II) AMDGPU(0): clock: 241.5 MHz   Image Size:  698 x 393 mm
[    53.187] (II) AMDGPU(0): h_active: 2560  h_sync: 2608  h_sync_end 2640 h_blank_end 2720 h_border: 0
[    53.187] (II) AMDGPU(0): v_active: 1440  v_sync: 1443  v_sync_end 1448 v_blanking: 1481 v_border: 0
[    53.187] (II) AMDGPU(0): Supported detailed timing:
[    53.187] (II) AMDGPU(0): clock: 497.8 MHz   Image Size:  698 x 393 mm
[    53.187] (II) AMDGPU(0): h_active: 2560  h_sync: 2608  h_sync_end 2640 h_blank_end 2720 h_border: 0
[    53.187] (II) AMDGPU(0): v_active: 1440  v_sync: 1443  v_sync_end 1448 v_blanking: 1525 v_border: 0
[    53.187] (II) AMDGPU(0): Number of EDID sections to follow: 1
[    53.187] (II) AMDGPU(0): EDID (in hex):
[    53.187] (II) AMDGPU(0): 	00ffffffffffff004c2d887057413830
[    53.187] (II) AMDGPU(0): 	35210103804628782a43a5ae5244b026
[    53.187] (II) AMDGPU(0): 	0f5054bfef80714f810081c081809500
[    53.187] (II) AMDGPU(0): 	a9c0b300010198e200a0a0a029500840
[    53.187] (II) AMDGPU(0): 	3500ba892100001a000000fd0032901e
[    53.187] (II) AMDGPU(0): 	d63b000a202020202020000000fc004c
[    53.187] (II) AMDGPU(0): 	433332473578540a20202020000000ff
[    53.187] (II) AMDGPU(0): 	00484b32574330313033300a202001ad
[    53.187] (II) AMDGPU(0): 	020337f14a903f1f041303125d606123
[    53.187] (II) AMDGPU(0): 	09070783010000e305c0006b030c0010
[    53.187] (II) AMDGPU(0): 	00b83c2000200367d85dc401788001e3
[    53.187] (II) AMDGPU(0): 	060501e30f00035a8780a070384d4030
[    53.187] (II) AMDGPU(0): 	203500ba892100001a565e00a0a0a029
[    53.187] (II) AMDGPU(0): 	5030203500ba892100001a6fc200a0a0
[    53.187] (II) AMDGPU(0): 	a0555030203500ba892100001a023a80
[    53.187] (II) AMDGPU(0): 	1871382d40582c4500ba892100001eb5
[    53.188] (--) AMDGPU(0): HDMI max TMDS frequency 300000KHz
[    53.188] (II) AMDGPU(0): Printing probed modes for output HDMI-A-0
[    53.188] (II) AMDGPU(0): Modeline "2560x1440"x144.0  580.08  2560 2568 2632 2720  1440 1443 1448 1481 +hsync -vsync (213.3 kHz eP)
[    53.188] (II) AMDGPU(0): Modeline "3840x2160"x60.0  594.00  3840 4016 4104 4400  2160 2168 2178 2250 +hsync +vsync (135.0 kHz e)
[    53.188] (II) AMDGPU(0): Modeline "3840x2160"x50.0  594.00  3840 4896 4984 5280  2160 2168 2178 2250 +hsync +vsync (112.5 kHz e)
[    53.188] (II) AMDGPU(0): Modeline "3840x2160"x59.9  593.41  3840 4016 4104 4400  2160 2168 2178 2250 +hsync +vsync (134.9 kHz e)
[    53.188] (II) AMDGPU(0): Modeline "3840x2160"x24.0  297.00  3840 5116 5204 5500  2160 2168 2178 2250 +hsync +vsync (54.0 kHz e)
[    53.188] (II) AMDGPU(0): Modeline "3840x2160"x24.0  296.70  3840 5116 5204 5500  2160 2168 2178 2250 +hsync +vsync (53.9 kHz e)
[    53.188] (II) AMDGPU(0): Modeline "2560x1440"x120.0  497.75  2560 2608 2640 2720  1440 1443 1448 1525 +hsync -vsync (183.0 kHz e)
[    53.188] (II) AMDGPU(0): Modeline "2560x1440"x60.0  241.50  2560 2608 2640 2720  1440 1443 1448 1481 +hsync -vsync (88.8 kHz e)
[    53.188] (II) AMDGPU(0): Modeline "1920x1200"x144.0  580.08  1920 2568 2632 2720  1200 1443 1448 1481 +hsync -vsync (213.3 kHz e)
[    53.188] (II) AMDGPU(0): Modeline "1920x1080"x144.0  346.50  1920 1968 2000 2080  1080 1083 1088 1157 +hsync -vsync (166.6 kHz e)
[    53.188] (II) AMDGPU(0): Modeline "1920x1080"x120.0  297.00  1920 2008 2052 2200  1080 1084 1089 1125 +hsync +vsync (135.0 kHz e)
[    53.188] (II) AMDGPU(0): Modeline "1920x1080"x119.9  296.70  1920 2008 2052 2200  1080 1084 1089 1125 +hsync +vsync (134.9 kHz e)
[    53.188] (II) AMDGPU(0): Modeline "1920x1080"x60.0  148.50  1920 2008 2052 2200  1080 1084 1089 1125 +hsync +vsync (67.5 kHz e)
[    53.188] (II) AMDGPU(0): Modeline "1920x1080"x50.0  148.50  1920 2448 2492 2640  1080 1084 1089 1125 +hsync +vsync (56.2 kHz e)
[    53.188] (II) AMDGPU(0): Modeline "1920x1080"x59.9  148.35  1920 2008 2052 2200  1080 1084 1089 1125 +hsync +vsync (67.4 kHz e)
[    53.188] (II) AMDGPU(0): Modeline "1600x1200"x144.0  580.08  1600 2568 2632 2720  1200 1443 1448 1481 +hsync -vsync (213.3 kHz e)
[    53.188] (II) AMDGPU(0): Modeline "1680x1050"x59.9  119.00  1680 1728 1760 1840  1050 1053 1059 1080 +hsync -vsync (64.7 kHz e)
[    53.188] (II) AMDGPU(0): Modeline "1600x900"x60.0  108.00  1600 1624 1704 1800  900 901 904 1000 +hsync +vsync (60.0 kHz e)
[    53.188] (II) AMDGPU(0): Modeline "1280x1024"x75.0  135.00  1280 1296 1440 1688  1024 1025 1028 1066 +hsync +vsync (80.0 kHz e)
[    53.188] (II) AMDGPU(0): Modeline "1280x1024"x60.0  108.00  1280 1328 1440 1688  1024 1025 1028 1066 +hsync +vsync (64.0 kHz e)
[    53.188] (II) AMDGPU(0): Modeline "1440x900"x59.9   88.75  1440 1488 1520 1600  900 903 909 926 +hsync -vsync (55.5 kHz e)
[    53.188] (II) AMDGPU(0): Modeline "1280x800"x59.9   71.00  1280 1328 1360 1440  800 803 809 823 +hsync -vsync (49.3 kHz e)
[    53.188] (II) AMDGPU(0): Modeline "1152x864"x75.0  108.00  1152 1216 1344 1600  864 865 868 900 +hsync +vsync (67.5 kHz e)
[    53.188] (II) AMDGPU(0): Modeline "1280x720"x60.0   74.25  1280 1390 1430 1650  720 725 730 750 +hsync +vsync (45.0 kHz e)
[    53.188] (II) AMDGPU(0): Modeline "1280x720"x50.0   74.25  1280 1720 1760 1980  720 725 730 750 +hsync +vsync (37.5 kHz e)
[    53.188] (II) AMDGPU(0): Modeline "1280x720"x59.9   74.18  1280 1390 1430 1650  720 725 730 750 +hsync +vsync (45.0 kHz e)
[    53.188] (II) AMDGPU(0): Modeline "1024x768"x75.0   78.75  1024 1040 1136 1312  768 769 772 800 +hsync +vsync (60.0 kHz e)
[    53.188] (II) AMDGPU(0): Modeline "1024x768"x70.1   75.00  1024 1048 1184 1328  768 771 777 806 -hsync -vsync (56.5 kHz e)
[    53.188] (II) AMDGPU(0): Modeline "1024x768"x60.0   65.00  1024 1048 1184 1344  768 771 777 806 -hsync -vsync (48.4 kHz e)
[    53.188] (II) AMDGPU(0): Modeline "832x624"x74.6   57.28  832 864 928 1152  624 625 628 667 -hsync -vsync (49.7 kHz e)
[    53.188] (II) AMDGPU(0): Modeline "800x600"x72.2   50.00  800 856 976 1040  600 637 643 666 +hsync +vsync (48.1 kHz e)
[    53.188] (II) AMDGPU(0): Modeline "800x600"x75.0   49.50  800 816 896 1056  600 601 604 625 +hsync +vsync (46.9 kHz e)
[    53.188] (II) AMDGPU(0): Modeline "800x600"x60.3   40.00  800 840 968 1056  600 601 605 628 +hsync +vsync (37.9 kHz e)
[    53.188] (II) AMDGPU(0): Modeline "800x600"x56.2   36.00  800 824 896 1024  600 601 603 625 +hsync +vsync (35.2 kHz e)
[    53.188] (II) AMDGPU(0): Modeline "720x576"x50.0   27.00  720 732 796 864  576 581 586 625 -hsync -vsync (31.2 kHz e)
[    53.188] (II) AMDGPU(0): Modeline "720x480"x60.0   27.03  720 736 798 858  480 489 495 525 -hsync -vsync (31.5 kHz e)
[    53.188] (II) AMDGPU(0): Modeline "720x480"x59.9   27.00  720 736 798 858  480 489 495 525 -hsync -vsync (31.5 kHz e)
[    53.188] (II) AMDGPU(0): Modeline "640x480"x75.0   31.50  640 656 720 840  480 481 484 500 -hsync -vsync (37.5 kHz e)
[    53.188] (II) AMDGPU(0): Modeline "640x480"x72.8   31.50  640 664 704 832  480 489 492 520 -hsync -vsync (37.9 kHz e)
[    53.188] (II) AMDGPU(0): Modeline "640x480"x66.7   30.24  640 704 768 864  480 483 486 525 -hsync -vsync (35.0 kHz e)
[    53.188] (II) AMDGPU(0): Modeline "640x480"x60.0   25.20  640 656 752 800  480 490 492 525 -hsync -vsync (31.5 kHz e)
[    53.188] (II) AMDGPU(0): Modeline "640x480"x59.9   25.18  640 656 752 800  480 490 492 525 -hsync -vsync (31.5 kHz e)
[    53.188] (II) AMDGPU(0): Modeline "720x400"x70.1   28.32  720 738 846 900  400 412 414 449 -hsync +vsync (31.5 kHz e)
[    53.188] (II) AMDGPU(0): EDID for output DVI-D-0
[    53.188] (II) AMDGPU(0): Output HDMI-A-0 connected
[    53.188] (II) AMDGPU(0): Output DVI-D-0 disconnected
[    53.188] (II) AMDGPU(0): Using exact sizes for initial modes
[    53.188] (II) AMDGPU(0): Output HDMI-A-0 using initial mode 2560x1440 +0+0
[    53.188] (II) AMDGPU(0): mem size init: gart size :1b25c8000 vram size: s:7d8d6000 visible:7d8d6000
[    53.188] (==) AMDGPU(0): DPI set to (96, 96)
[    53.188] (==) AMDGPU(0): Using gamma correction (1.0, 1.0, 1.0)
[    53.188] (II) Loading sub module "ramdac"
[    53.188] (II) LoadModule: "ramdac"
[    53.188] (II) Module "ramdac" already built-in
[    53.188] (II) AMDGPU(0): [DRI2] Setup complete
[    53.188] (II) AMDGPU(0): [DRI2]   DRI driver: radeonsi
[    53.188] (II) AMDGPU(0): [DRI2]   VDPAU driver: radeonsi
[    53.197] (II) AMDGPU(0): Front buffer pitch: 10240 bytes
[    53.197] (II) AMDGPU(0): SYNC extension fences enabled
[    53.197] (II) AMDGPU(0): Present extension enabled
[    53.197] (==) AMDGPU(0): DRI3 enabled
[    53.197] (==) AMDGPU(0): Backing store enabled
[    53.197] (II) AMDGPU(0): Direct rendering enabled
[    53.204] (II) AMDGPU(0): Use GLAMOR acceleration.
[    53.204] (II) AMDGPU(0): Acceleration enabled
[    53.204] (==) AMDGPU(0): DPMS enabled
[    53.204] (==) AMDGPU(0): Silken mouse enabled
[    53.204] (II) AMDGPU(0): Set up textured video (glamor)
[    53.212] (WW) AMDGPU(0): Option "HotplugDriver" is not used
[    53.212] (II) Initializing extension Generic Event Extension
[    53.212] (II) Initializing extension SHAPE
[    53.212] (II) Initializing extension MIT-SHM
[    53.213] (II) Initializing extension XInputExtension
[    53.213] (II) Initializing extension XTEST
[    53.213] (II) Initializing extension BIG-REQUESTS
[    53.213] (II) Initializing extension SYNC
[    53.213] (II) Initializing extension XKEYBOARD
[    53.213] (II) Initializing extension XC-MISC
[    53.213] (II) Initializing extension SECURITY
[    53.213] (II) Initializing extension XFIXES
[    53.213] (II) Initializing extension RENDER
[    53.213] (II) Initializing extension RANDR
[    53.213] (II) Initializing extension COMPOSITE
[    53.213] (II) Initializing extension DAMAGE
[    53.214] (II) Initializing extension MIT-SCREEN-SAVER
[    53.214] (II) Initializing extension DOUBLE-BUFFER
[    53.214] (II) Initializing extension RECORD
[    53.214] (II) Initializing extension DPMS
[    53.214] (II) Initializing extension Present
[    53.214] (II) Initializing extension DRI3
[    53.214] (II) Initializing extension X-Resource
[    53.214] (II) Initializing extension XVideo
[    53.214] (II) Initializing extension XVideo-MotionCompensation
[    53.214] (II) Initializing extension GLX
[    53.222] (II) AIGLX: Loaded and initialized radeonsi
[    53.222] (II) GLX: Initialized DRI2 GL provider for screen 0
[    53.222] (II) Initializing extension XFree86-VidModeExtension
[    53.222] (II) Initializing extension XFree86-DGA
[    53.222] (II) Initializing extension XFree86-DRI
[    53.222] (II) Initializing extension DRI2
[    53.223] (II) AMDGPU(0): Setting screen physical size to 677 x 381
[    53.364] (II) config/udev: Adding input device Power Button (/dev/input/event1)
[    53.364] (**) Power Button: Applying InputClass "libinput keyboard catchall"
[    53.364] (**) Power Button: Applying InputClass "system-keyboard"
[    53.364] (II) LoadModule: "libinput"
[    53.364] (II) Loading /usr/lib/xorg/modules/input/libinput_drv.so
[    53.365] (II) Module libinput: vendor="X.Org Foundation"
[    53.365] 	compiled for 1.21.1.13, module version = 1.5.0
[    53.365] 	Module class: X.Org XInput Driver
[    53.365] 	ABI class: X.Org XInput driver, version 24.4
[    53.365] (II) Using input driver 'libinput' for 'Power Button'
[    53.366] (II) systemd-logind: got fd for /dev/input/event1 13:65 fd 28 paused 0
[    53.366] (**) Power Button: always reports core events
[    53.366] (**) Option "Device" "/dev/input/event1"
[    53.368] (II) event1  - Power Button: is tagged by udev as: Keyboard
[    53.369] (II) event1  - Power Button: device is a keyboard
[    53.369] (II) event1  - Power Button: device removed
[    53.369] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/LNXPWRBN:00/input/input1/event1"
[    53.369] (II) XINPUT: Adding extended input device "Power Button" (type: KEYBOARD, id 6)
[    53.369] (**) Option "xkb_model" "pc105"
[    53.369] (**) Option "xkb_layout" "us,ara"
[    53.369] (**) Option "xkb_variant" ",qwerty"
[    53.369] (**) Option "xkb_options" "grp:alt_shift_toggle"
[    53.388] (II) event1  - Power Button: is tagged by udev as: Keyboard
[    53.388] (II) event1  - Power Button: device is a keyboard
[    53.389] (II) config/udev: Adding input device Video Bus (/dev/input/event2)
[    53.389] (**) Video Bus: Applying InputClass "libinput keyboard catchall"
[    53.389] (**) Video Bus: Applying InputClass "system-keyboard"
[    53.389] (II) Using input driver 'libinput' for 'Video Bus'
[    53.390] (II) systemd-logind: got fd for /dev/input/event2 13:66 fd 31 paused 0
[    53.390] (**) Video Bus: always reports core events
[    53.390] (**) Option "Device" "/dev/input/event2"
[    53.391] (II) event2  - Video Bus: is tagged by udev as: Keyboard
[    53.391] (II) event2  - Video Bus: device is a keyboard
[    53.392] (II) event2  - Video Bus: device removed
[    53.392] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:0f/LNXVIDEO:01/input/input2/event2"
[    53.392] (II) XINPUT: Adding extended input device "Video Bus" (type: KEYBOARD, id 7)
[    53.392] (**) Option "xkb_model" "pc105"
[    53.392] (**) Option "xkb_layout" "us,ara"
[    53.392] (**) Option "xkb_variant" ",qwerty"
[    53.392] (**) Option "xkb_options" "grp:alt_shift_toggle"
[    53.393] (II) event2  - Video Bus: is tagged by udev as: Keyboard
[    53.393] (II) event2  - Video Bus: device is a keyboard
[    53.394] (II) config/udev: Adding input device Power Button (/dev/input/event0)
[    53.394] (**) Power Button: Applying InputClass "libinput keyboard catchall"
[    53.394] (**) Power Button: Applying InputClass "system-keyboard"
[    53.394] (II) Using input driver 'libinput' for 'Power Button'
[    53.395] (II) systemd-logind: got fd for /dev/input/event0 13:64 fd 32 paused 0
[    53.395] (**) Power Button: always reports core events
[    53.395] (**) Option "Device" "/dev/input/event0"
[    53.396] (II) event0  - Power Button: is tagged by udev as: Keyboard
[    53.396] (II) event0  - Power Button: device is a keyboard
[    53.396] (II) event0  - Power Button: device removed
[    53.396] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input0/event0"
[    53.396] (II) XINPUT: Adding extended input device "Power Button" (type: KEYBOARD, id 8)
[    53.396] (**) Option "xkb_model" "pc105"
[    53.396] (**) Option "xkb_layout" "us,ara"
[    53.396] (**) Option "xkb_variant" ",qwerty"
[    53.396] (**) Option "xkb_options" "grp:alt_shift_toggle"
[    53.397] (II) event0  - Power Button: is tagged by udev as: Keyboard
[    53.397] (II) event0  - Power Button: device is a keyboard
[    53.398] (II) config/udev: Adding input device Razer Razer Basilisk X HyperSpeed (/dev/input/event9)
[    53.398] (**) Razer Razer Basilisk X HyperSpeed: Applying InputClass "libinput pointer catchall"
[    53.398] (II) Using input driver 'libinput' for 'Razer Razer Basilisk X HyperSpeed'
[    53.450] (II) systemd-logind: got fd for /dev/input/event9 13:73 fd 33 paused 0
[    53.450] (**) Razer Razer Basilisk X HyperSpeed: always reports core events
[    53.450] (**) Option "Device" "/dev/input/event9"
[    53.452] (II) event9  - Razer Razer Basilisk X HyperSpeed: is tagged by udev as: Mouse
[    53.452] (II) event9  - Razer Razer Basilisk X HyperSpeed: device is a pointer
[    53.452] (II) event9  - Razer Razer Basilisk X HyperSpeed: device removed
[    53.452] (II) libinput: Razer Razer Basilisk X HyperSpeed: Step value 0 was provided, libinput Fallback acceleration function is used.
[    53.452] (II) libinput: Razer Razer Basilisk X HyperSpeed: Step value 0 was provided, libinput Fallback acceleration function is used.
[    53.452] (II) libinput: Razer Razer Basilisk X HyperSpeed: Step value 0 was provided, libinput Fallback acceleration function is used.
[    53.452] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:01.2/0000:01:00.0/usb1/1-4/1-4.2/1-4.2:1.0/0003:1532:0083.0005/input/input15/event9"
[    53.452] (II) XINPUT: Adding extended input device "Razer Razer Basilisk X HyperSpeed" (type: MOUSE, id 9)
[    53.452] (**) Option "AccelerationScheme" "none"
[    53.452] (**) Razer Razer Basilisk X HyperSpeed: (accel) selected scheme none/0
[    53.453] (**) Razer Razer Basilisk X HyperSpeed: (accel) acceleration factor: 2.000
[    53.453] (**) Razer Razer Basilisk X HyperSpeed: (accel) acceleration threshold: 4
[    53.454] (II) event9  - Razer Razer Basilisk X HyperSpeed: is tagged by udev as: Mouse
[    53.454] (II) event9  - Razer Razer Basilisk X HyperSpeed: device is a pointer
[    53.455] (II) config/udev: Adding input device Razer Razer Basilisk X HyperSpeed (/dev/input/mouse1)
[    53.455] (II) No input driver specified, ignoring this device.
[    53.455] (II) This device may have been added with another device file.
[    53.456] (II) config/udev: Adding input device Razer Razer Basilisk X HyperSpeed (/dev/input/event12)
[    53.456] (**) Razer Razer Basilisk X HyperSpeed: Applying InputClass "libinput keyboard catchall"
[    53.456] (**) Razer Razer Basilisk X HyperSpeed: Applying InputClass "system-keyboard"
[    53.456] (II) Using input driver 'libinput' for 'Razer Razer Basilisk X HyperSpeed'
[    53.457] (II) systemd-logind: got fd for /dev/input/event12 13:76 fd 34 paused 0
[    53.457] (**) Razer Razer Basilisk X HyperSpeed: always reports core events
[    53.457] (**) Option "Device" "/dev/input/event12"
[    53.459] (II) event12 - Razer Razer Basilisk X HyperSpeed: is tagged by udev as: Keyboard
[    53.460] (II) event12 - Razer Razer Basilisk X HyperSpeed: device is a keyboard
[    53.460] (II) event12 - Razer Razer Basilisk X HyperSpeed: device removed
[    53.460] (II) libinput: Razer Razer Basilisk X HyperSpeed: needs a virtual subdevice
[    53.460] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:01.2/0000:01:00.0/usb1/1-4/1-4.2/1-4.2:1.1/0003:1532:0083.0006/input/input17/event12"
[    53.460] (II) XINPUT: Adding extended input device "Razer Razer Basilisk X HyperSpeed" (type: MOUSE, id 10)
[    53.460] (**) Option "AccelerationScheme" "none"
[    53.460] (**) Razer Razer Basilisk X HyperSpeed: (accel) selected scheme none/0
[    53.460] (**) Razer Razer Basilisk X HyperSpeed: (accel) acceleration factor: 2.000
[    53.460] (**) Razer Razer Basilisk X HyperSpeed: (accel) acceleration threshold: 4
[    53.462] (II) event12 - Razer Razer Basilisk X HyperSpeed: is tagged by udev as: Keyboard
[    53.462] (II) event12 - Razer Razer Basilisk X HyperSpeed: device is a keyboard
[    53.463] (II) config/udev: Adding input device Razer Razer Basilisk X HyperSpeed (/dev/input/event16)
[    53.463] (**) Razer Razer Basilisk X HyperSpeed: Applying InputClass "libinput keyboard catchall"
[    53.463] (**) Razer Razer Basilisk X HyperSpeed: Applying InputClass "system-keyboard"
[    53.463] (II) Using input driver 'libinput' for 'Razer Razer Basilisk X HyperSpeed'
[    53.463] (II) systemd-logind: got fd for /dev/input/event16 13:80 fd 35 paused 0
[    53.463] (**) Razer Razer Basilisk X HyperSpeed: always reports core events
[    53.463] (**) Option "Device" "/dev/input/event16"
[    53.464] (II) event16 - Razer Razer Basilisk X HyperSpeed: is tagged by udev as: Keyboard
[    53.464] (II) event16 - Razer Razer Basilisk X HyperSpeed: device is a keyboard
[    53.465] (II) event16 - Razer Razer Basilisk X HyperSpeed: device removed
[    53.465] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:01.2/0000:01:00.0/usb1/1-4/1-4.2/1-4.2:1.2/0003:1532:0083.0007/input/input21/event16"
[    53.465] (II) XINPUT: Adding extended input device "Razer Razer Basilisk X HyperSpeed" (type: KEYBOARD, id 11)
[    53.465] (**) Option "xkb_model" "pc105"
[    53.465] (**) Option "xkb_layout" "us,ara"
[    53.465] (**) Option "xkb_variant" ",qwerty"
[    53.465] (**) Option "xkb_options" "grp:alt_shift_toggle"
[    53.466] (II) event16 - Razer Razer Basilisk X HyperSpeed: is tagged by udev as: Keyboard
[    53.466] (II) event16 - Razer Razer Basilisk X HyperSpeed: device is a keyboard
[    53.467] (II) config/udev: Adding input device HD-Audio Generic HDMI/DP,pcm=3 (/dev/input/event13)
[    53.467] (II) No input driver specified, ignoring this device.
[    53.467] (II) This device may have been added with another device file.
[    53.467] (II) config/udev: Adding input device HD-Audio Generic HDMI/DP,pcm=7 (/dev/input/event14)
[    53.467] (II) No input driver specified, ignoring this device.
[    53.467] (II) This device may have been added with another device file.
[    53.467] (II) config/udev: Adding input device HD-Audio Generic HDMI/DP,pcm=8 (/dev/input/event15)
[    53.467] (II) No input driver specified, ignoring this device.
[    53.467] (II) This device may have been added with another device file.
[    53.468] (II) config/udev: Adding input device BY Tech Gaming Keyboard (/dev/input/event3)
[    53.468] (**) BY Tech Gaming Keyboard: Applying InputClass "libinput keyboard catchall"
[    53.468] (**) BY Tech Gaming Keyboard: Applying InputClass "system-keyboard"
[    53.468] (II) Using input driver 'libinput' for 'BY Tech Gaming Keyboard'
[    53.469] (II) systemd-logind: got fd for /dev/input/event3 13:67 fd 36 paused 0
[    53.469] (**) BY Tech Gaming Keyboard: always reports core events
[    53.469] (**) Option "Device" "/dev/input/event3"
[    53.470] (II) event3  - BY Tech Gaming Keyboard: is tagged by udev as: Keyboard
[    53.470] (II) event3  - BY Tech Gaming Keyboard: device is a keyboard
[    53.470] (II) event3  - BY Tech Gaming Keyboard: device removed
[    53.470] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:08.1/0000:06:00.3/usb3/3-2/3-2:1.0/0003:258A:0049.0001/input/input3/event3"
[    53.470] (II) XINPUT: Adding extended input device "BY Tech Gaming Keyboard" (type: KEYBOARD, id 12)
[    53.470] (**) Option "xkb_model" "pc105"
[    53.470] (**) Option "xkb_layout" "us,ara"
[    53.470] (**) Option "xkb_variant" ",qwerty"
[    53.470] (**) Option "xkb_options" "grp:alt_shift_toggle"
[    53.471] (II) event3  - BY Tech Gaming Keyboard: is tagged by udev as: Keyboard
[    53.471] (II) event3  - BY Tech Gaming Keyboard: device is a keyboard
[    53.472] (II) config/udev: Adding input device BY Tech Gaming Keyboard System Control (/dev/input/event4)
[    53.472] (**) BY Tech Gaming Keyboard System Control: Applying InputClass "libinput keyboard catchall"
[    53.472] (**) BY Tech Gaming Keyboard System Control: Applying InputClass "system-keyboard"
[    53.472] (II) Using input driver 'libinput' for 'BY Tech Gaming Keyboard System Control'
[    53.473] (II) systemd-logind: got fd for /dev/input/event4 13:68 fd 37 paused 0
[    53.473] (**) BY Tech Gaming Keyboard System Control: always reports core events
[    53.473] (**) Option "Device" "/dev/input/event4"
[    53.474] (II) event4  - BY Tech Gaming Keyboard System Control: is tagged by udev as: Keyboard
[    53.474] (II) event4  - BY Tech Gaming Keyboard System Control: device is a keyboard
[    53.474] (II) event4  - BY Tech Gaming Keyboard System Control: device removed
[    53.474] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:08.1/0000:06:00.3/usb3/3-2/3-2:1.1/0003:258A:0049.0002/input/input4/event4"
[    53.474] (II) XINPUT: Adding extended input device "BY Tech Gaming Keyboard System Control" (type: KEYBOARD, id 13)
[    53.474] (**) Option "xkb_model" "pc105"
[    53.474] (**) Option "xkb_layout" "us,ara"
[    53.474] (**) Option "xkb_variant" ",qwerty"
[    53.474] (**) Option "xkb_options" "grp:alt_shift_toggle"
[    53.475] (II) event4  - BY Tech Gaming Keyboard System Control: is tagged by udev as: Keyboard
[    53.475] (II) event4  - BY Tech Gaming Keyboard System Control: device is a keyboard
[    53.476] (II) config/udev: Adding input device BY Tech Gaming Keyboard Consumer Control (/dev/input/event5)
[    53.476] (**) BY Tech Gaming Keyboard Consumer Control: Applying InputClass "libinput keyboard catchall"
[    53.476] (**) BY Tech Gaming Keyboard Consumer Control: Applying InputClass "system-keyboard"
[    53.476] (II) Using input driver 'libinput' for 'BY Tech Gaming Keyboard Consumer Control'
[    53.477] (II) systemd-logind: got fd for /dev/input/event5 13:69 fd 38 paused 0
[    53.477] (**) BY Tech Gaming Keyboard Consumer Control: always reports core events
[    53.477] (**) Option "Device" "/dev/input/event5"
[    53.478] (II) event5  - BY Tech Gaming Keyboard Consumer Control: is tagged by udev as: Keyboard
[    53.478] (II) event5  - BY Tech Gaming Keyboard Consumer Control: device is a keyboard
[    53.478] (II) event5  - BY Tech Gaming Keyboard Consumer Control: device removed
[    53.478] (II) libinput: BY Tech Gaming Keyboard Consumer Control: needs a virtual subdevice
[    53.478] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:08.1/0000:06:00.3/usb3/3-2/3-2:1.1/0003:258A:0049.0002/input/input5/event5"
[    53.478] (II) XINPUT: Adding extended input device "BY Tech Gaming Keyboard Consumer Control" (type: MOUSE, id 14)
[    53.478] (**) Option "AccelerationScheme" "none"
[    53.478] (**) BY Tech Gaming Keyboard Consumer Control: (accel) selected scheme none/0
[    53.478] (**) BY Tech Gaming Keyboard Consumer Control: (accel) acceleration factor: 2.000
[    53.478] (**) BY Tech Gaming Keyboard Consumer Control: (accel) acceleration threshold: 4
[    53.479] (II) event5  - BY Tech Gaming Keyboard Consumer Control: is tagged by udev as: Keyboard
[    53.479] (II) event5  - BY Tech Gaming Keyboard Consumer Control: device is a keyboard
[    53.480] (II) config/udev: Adding input device BY Tech Gaming Keyboard (/dev/input/event6)
[    53.480] (**) BY Tech Gaming Keyboard: Applying InputClass "libinput keyboard catchall"
[    53.480] (**) BY Tech Gaming Keyboard: Applying InputClass "system-keyboard"
[    53.480] (II) Using input driver 'libinput' for 'BY Tech Gaming Keyboard'
[    53.480] (II) systemd-logind: got fd for /dev/input/event6 13:70 fd 39 paused 0
[    53.480] (**) BY Tech Gaming Keyboard: always reports core events
[    53.480] (**) Option "Device" "/dev/input/event6"
[    53.483] (II) event6  - BY Tech Gaming Keyboard: is tagged by udev as: Keyboard
[    53.483] (II) event6  - BY Tech Gaming Keyboard: device is a keyboard
[    53.483] (II) event6  - BY Tech Gaming Keyboard: device removed
[    53.483] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:08.1/0000:06:00.3/usb3/3-2/3-2:1.1/0003:258A:0049.0002/input/input7/event6"
[    53.483] (II) XINPUT: Adding extended input device "BY Tech Gaming Keyboard" (type: KEYBOARD, id 15)
[    53.483] (**) Option "xkb_model" "pc105"
[    53.483] (**) Option "xkb_layout" "us,ara"
[    53.483] (**) Option "xkb_variant" ",qwerty"
[    53.483] (**) Option "xkb_options" "grp:alt_shift_toggle"
[    53.484] (II) event6  - BY Tech Gaming Keyboard: is tagged by udev as: Keyboard
[    53.484] (II) event6  - BY Tech Gaming Keyboard: device is a keyboard
[    53.485] (II) config/udev: Adding input device BY Tech Gaming Keyboard Mouse (/dev/input/event7)
[    53.485] (**) BY Tech Gaming Keyboard Mouse: Applying InputClass "libinput pointer catchall"
[    53.485] (II) Using input driver 'libinput' for 'BY Tech Gaming Keyboard Mouse'
[    53.486] (II) systemd-logind: got fd for /dev/input/event7 13:71 fd 40 paused 0
[    53.486] (**) BY Tech Gaming Keyboard Mouse: always reports core events
[    53.486] (**) Option "Device" "/dev/input/event7"
[    53.487] (II) event7  - BY Tech Gaming Keyboard Mouse: is tagged by udev as: Mouse
[    53.487] (II) event7  - BY Tech Gaming Keyboard Mouse: device is a pointer
[    53.488] (II) event7  - BY Tech Gaming Keyboard Mouse: device removed
[    53.488] (II) libinput: BY Tech Gaming Keyboard Mouse: Step value 0 was provided, libinput Fallback acceleration function is used.
[    53.488] (II) libinput: BY Tech Gaming Keyboard Mouse: Step value 0 was provided, libinput Fallback acceleration function is used.
[    53.488] (II) libinput: BY Tech Gaming Keyboard Mouse: Step value 0 was provided, libinput Fallback acceleration function is used.
[    53.488] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:08.1/0000:06:00.3/usb3/3-2/3-2:1.1/0003:258A:0049.0002/input/input8/event7"
[    53.488] (II) XINPUT: Adding extended input device "BY Tech Gaming Keyboard Mouse" (type: MOUSE, id 16)
[    53.488] (**) Option "AccelerationScheme" "none"
[    53.488] (**) BY Tech Gaming Keyboard Mouse: (accel) selected scheme none/0
[    53.488] (**) BY Tech Gaming Keyboard Mouse: (accel) acceleration factor: 2.000
[    53.488] (**) BY Tech Gaming Keyboard Mouse: (accel) acceleration threshold: 4
[    53.489] (II) event7  - BY Tech Gaming Keyboard Mouse: is tagged by udev as: Mouse
[    53.489] (II) event7  - BY Tech Gaming Keyboard Mouse: device is a pointer
[    53.490] (II) config/udev: Adding input device BY Tech Gaming Keyboard Mouse (/dev/input/mouse0)
[    53.490] (II) No input driver specified, ignoring this device.
[    53.490] (II) This device may have been added with another device file.
[    53.490] (II) config/udev: Adding input device GeneralPlus USB Audio Device (/dev/input/event10)
[    53.490] (**) GeneralPlus USB Audio Device: Applying InputClass "libinput keyboard catchall"
[    53.490] (**) GeneralPlus USB Audio Device: Applying InputClass "system-keyboard"
[    53.490] (II) Using input driver 'libinput' for 'GeneralPlus USB Audio Device'
[    53.491] (II) systemd-logind: got fd for /dev/input/event10 13:74 fd 41 paused 0
[    53.491] (**) GeneralPlus USB Audio Device: always reports core events
[    53.491] (**) Option "Device" "/dev/input/event10"
[    53.492] (II) event10 - GeneralPlus USB Audio Device: is tagged by udev as: Keyboard
[    53.492] (II) event10 - GeneralPlus USB Audio Device: device is a keyboard
[    53.493] (II) event10 - GeneralPlus USB Audio Device: device removed
[    53.493] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:08.1/0000:06:00.3/usb3/3-3/3-3:1.3/0003:1B3F:2008.0004/input/input11/event10"
[    53.493] (II) XINPUT: Adding extended input device "GeneralPlus USB Audio Device" (type: KEYBOARD, id 17)
[    53.493] (**) Option "xkb_model" "pc105"
[    53.493] (**) Option "xkb_layout" "us,ara"
[    53.493] (**) Option "xkb_variant" ",qwerty"
[    53.493] (**) Option "xkb_options" "grp:alt_shift_toggle"
[    53.494] (II) event10 - GeneralPlus USB Audio Device: is tagged by udev as: Keyboard
[    53.494] (II) event10 - GeneralPlus USB Audio Device: device is a keyboard
[    53.495] (II) config/udev: Adding input device PD200X Podcast Microphone (/dev/input/event8)
[    53.495] (**) PD200X Podcast Microphone: Applying InputClass "libinput keyboard catchall"
[    53.495] (**) PD200X Podcast Microphone: Applying InputClass "system-keyboard"
[    53.495] (II) Using input driver 'libinput' for 'PD200X Podcast Microphone'
[    53.495] (II) systemd-logind: got fd for /dev/input/event8 13:72 fd 42 paused 0
[    53.495] (**) PD200X Podcast Microphone: always reports core events
[    53.495] (**) Option "Device" "/dev/input/event8"
[    53.496] (II) event8  - PD200X Podcast Microphone: is tagged by udev as: Keyboard
[    53.496] (II) event8  - PD200X Podcast Microphone: device is a keyboard
[    53.497] (II) event8  - PD200X Podcast Microphone: device removed
[    53.497] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:08.1/0000:06:00.4/usb5/5-1/5-1:1.3/0003:352F:0104.0003/input/input9/event8"
[    53.497] (II) XINPUT: Adding extended input device "PD200X Podcast Microphone" (type: KEYBOARD, id 18)
[    53.497] (**) Option "xkb_model" "pc105"
[    53.497] (**) Option "xkb_layout" "us,ara"
[    53.497] (**) Option "xkb_variant" ",qwerty"
[    53.497] (**) Option "xkb_options" "grp:alt_shift_toggle"
[    53.498] (II) event8  - PD200X Podcast Microphone: is tagged by udev as: Keyboard
[    53.498] (II) event8  - PD200X Podcast Microphone: device is a keyboard
[    53.498] (II) config/udev: Adding input device HD-Audio Generic Rear Mic (/dev/input/event17)
[    53.498] (II) No input driver specified, ignoring this device.
[    53.498] (II) This device may have been added with another device file.
[    53.498] (II) config/udev: Adding input device HD-Audio Generic Front Mic (/dev/input/event18)
[    53.498] (II) No input driver specified, ignoring this device.
[    53.498] (II) This device may have been added with another device file.
[    53.499] (II) config/udev: Adding input device HD-Audio Generic Line (/dev/input/event19)
[    53.499] (II) No input driver specified, ignoring this device.
[    53.499] (II) This device may have been added with another device file.
[    53.499] (II) config/udev: Adding input device HD-Audio Generic Line Out Front (/dev/input/event20)
[    53.499] (II) No input driver specified, ignoring this device.
[    53.499] (II) This device may have been added with another device file.
[    53.499] (II) config/udev: Adding input device HD-Audio Generic Line Out Surround (/dev/input/event21)
[    53.499] (II) No input driver specified, ignoring this device.
[    53.499] (II) This device may have been added with another device file.
[    53.499] (II) config/udev: Adding input device HD-Audio Generic Line Out CLFE (/dev/input/event22)
[    53.499] (II) No input driver specified, ignoring this device.
[    53.499] (II) This device may have been added with another device file.
[    53.500] (II) config/udev: Adding input device HD-Audio Generic Line Out Side (/dev/input/event23)
[    53.500] (II) No input driver specified, ignoring this device.
[    53.500] (II) This device may have been added with another device file.
[    53.500] (II) config/udev: Adding input device HD-Audio Generic Front Headphone (/dev/input/event24)
[    53.500] (II) No input driver specified, ignoring this device.
[    53.500] (II) This device may have been added with another device file.
[    53.500] (II) config/udev: Adding input device PC Speaker (/dev/input/event11)
[    53.500] (II) No input driver specified, ignoring this device.
[    53.500] (II) This device may have been added with another device file.
[    53.505] (**) Razer Razer Basilisk X HyperSpeed: Applying InputClass "libinput keyboard catchall"
[    53.505] (**) Razer Razer Basilisk X HyperSpeed: Applying InputClass "system-keyboard"
[    53.505] (II) Using input driver 'libinput' for 'Razer Razer Basilisk X HyperSpeed'
[    53.505] (II) systemd-logind: returning pre-existing fd for /dev/input/event12 13:76
[    53.505] (**) Razer Razer Basilisk X HyperSpeed: always reports core events
[    53.505] (**) Option "Device" "/dev/input/event12"
[    53.505] (II) libinput: Razer Razer Basilisk X HyperSpeed: is a virtual subdevice
[    53.505] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:01.2/0000:01:00.0/usb1/1-4/1-4.2/1-4.2:1.1/0003:1532:0083.0006/input/input17/event12"
[    53.505] (II) XINPUT: Adding extended input device "Razer Razer Basilisk X HyperSpeed" (type: KEYBOARD, id 19)
[    53.505] (**) Option "xkb_model" "pc105"
[    53.505] (**) Option "xkb_layout" "us,ara"
[    53.505] (**) Option "xkb_variant" ",qwerty"
[    53.505] (**) Option "xkb_options" "grp:alt_shift_toggle"
[    53.506] (**) BY Tech Gaming Keyboard Consumer Control: Applying InputClass "libinput keyboard catchall"
[    53.506] (**) BY Tech Gaming Keyboard Consumer Control: Applying InputClass "system-keyboard"
[    53.506] (II) Using input driver 'libinput' for 'BY Tech Gaming Keyboard Consumer Control'
[    53.506] (II) systemd-logind: returning pre-existing fd for /dev/input/event5 13:69
[    53.506] (**) BY Tech Gaming Keyboard Consumer Control: always reports core events
[    53.506] (**) Option "Device" "/dev/input/event5"
[    53.506] (II) libinput: BY Tech Gaming Keyboard Consumer Control: is a virtual subdevice
[    53.506] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:08.1/0000:06:00.3/usb3/3-2/3-2:1.1/0003:258A:0049.0002/input/input5/event5"
[    53.506] (II) XINPUT: Adding extended input device "BY Tech Gaming Keyboard Consumer Control" (type: KEYBOARD, id 20)
[    53.506] (**) Option "xkb_model" "pc105"
[    53.506] (**) Option "xkb_layout" "us,ara"
[    53.506] (**) Option "xkb_variant" ",qwerty"
[    53.506] (**) Option "xkb_options" "grp:alt_shift_toggle"
[    54.814] (II) AMDGPU(0): EDID vendor "SAM", prod id 28808
[    54.814] (II) AMDGPU(0): Using EDID range info for horizontal sync
[    54.814] (II) AMDGPU(0): Using EDID range info for vertical refresh
[    54.814] (II) AMDGPU(0): Printing DDC gathered Modelines:
[    54.814] (II) AMDGPU(0): Modeline "2560x1440"x0.0  580.08  2560 2568 2632 2720  1440 1443 1448 1481 +hsync -vsync (213.3 kHz eP)
[    54.814] (II) AMDGPU(0): Modeline "1920x1080"x0.0  346.50  1920 1968 2000 2080  1080 1083 1088 1157 +hsync -vsync (166.6 kHz e)
[    54.814] (II) AMDGPU(0): Modeline "2560x1440"x0.0  241.50  2560 2608 2640 2720  1440 1443 1448 1481 +hsync -vsync (88.8 kHz e)
[    54.814] (II) AMDGPU(0): Modeline "2560x1440"x0.0  497.75  2560 2608 2640 2720  1440 1443 1448 1525 +hsync -vsync (183.0 kHz e)
[    54.814] (II) AMDGPU(0): Modeline "1920x1080"x0.0  148.50  1920 2008 2052 2200  1080 1084 1089 1125 +hsync +vsync (67.5 kHz e)
[    54.814] (II) AMDGPU(0): Modeline "1920x1080"x0.0  297.00  1920 2008 2052 2200  1080 1084 1089 1125 +hsync +vsync (135.0 kHz e)
[    54.814] (II) AMDGPU(0): Modeline "1920x1080"x0.0  148.50  1920 2448 2492 2640  1080 1084 1089 1125 +hsync +vsync (56.2 kHz e)
[    54.814] (II) AMDGPU(0): Modeline "1280x720"x0.0   74.25  1280 1390 1430 1650  720 725 730 750 +hsync +vsync (45.0 kHz e)
[    54.814] (II) AMDGPU(0): Modeline "1280x720"x0.0   74.25  1280 1720 1760 1980  720 725 730 750 +hsync +vsync (37.5 kHz e)
[    54.814] (II) AMDGPU(0): Modeline "720x480"x0.0   27.00  720 736 798 858  480 489 495 525 -hsync -vsync (31.5 kHz e)
[    54.814] (II) AMDGPU(0): Modeline "720x576"x0.0   27.00  720 732 796 864  576 581 586 625 -hsync -vsync (31.2 kHz e)
[    54.814] (II) AMDGPU(0): Modeline "800x600"x0.0   40.00  800 840 968 1056  600 601 605 628 +hsync +vsync (37.9 kHz e)
[    54.814] (II) AMDGPU(0): Modeline "800x600"x0.0   36.00  800 824 896 1024  600 601 603 625 +hsync +vsync (35.2 kHz e)
[    54.814] (II) AMDGPU(0): Modeline "640x480"x0.0   31.50  640 656 720 840  480 481 484 500 -hsync -vsync (37.5 kHz e)
[    54.814] (II) AMDGPU(0): Modeline "640x480"x0.0   31.50  640 664 704 832  480 489 492 520 -hsync -vsync (37.9 kHz e)
[    54.814] (II) AMDGPU(0): Modeline "640x480"x0.0   30.24  640 704 768 864  480 483 486 525 -hsync -vsync (35.0 kHz e)
[    54.814] (II) AMDGPU(0): Modeline "640x480"x0.0   25.18  640 656 752 800  480 490 492 525 -hsync -vsync (31.5 kHz e)
[    54.814] (II) AMDGPU(0): Modeline "720x400"x0.0   28.32  720 738 846 900  400 412 414 449 -hsync +vsync (31.5 kHz e)
[    54.814] (II) AMDGPU(0): Modeline "1280x1024"x0.0  135.00  1280 1296 1440 1688  1024 1025 1028 1066 +hsync +vsync (80.0 kHz e)
[    54.814] (II) AMDGPU(0): Modeline "1024x768"x0.0   78.75  1024 1040 1136 1312  768 769 772 800 +hsync +vsync (60.0 kHz e)
[    54.814] (II) AMDGPU(0): Modeline "1024x768"x0.0   75.00  1024 1048 1184 1328  768 771 777 806 -hsync -vsync (56.5 kHz e)
[    54.814] (II) AMDGPU(0): Modeline "1024x768"x0.0   65.00  1024 1048 1184 1344  768 771 777 806 -hsync -vsync (48.4 kHz e)
[    54.814] (II) AMDGPU(0): Modeline "832x624"x0.0   57.28  832 864 928 1152  624 625 628 667 -hsync -vsync (49.7 kHz e)
[    54.814] (II) AMDGPU(0): Modeline "800x600"x0.0   49.50  800 816 896 1056  600 601 604 625 +hsync +vsync (46.9 kHz e)
[    54.814] (II) AMDGPU(0): Modeline "800x600"x0.0   50.00  800 856 976 1040  600 637 643 666 +hsync +vsync (48.1 kHz e)
[    54.814] (II) AMDGPU(0): Modeline "1152x864"x0.0  108.00  1152 1216 1344 1600  864 865 868 900 +hsync +vsync (67.5 kHz e)
[    54.814] (II) AMDGPU(0): Modeline "1280x800"x0.0   71.00  1280 1328 1360 1440  800 803 809 823 +hsync -vsync (49.3 kHz e)
[    54.814] (II) AMDGPU(0): Modeline "1280x1024"x0.0  108.00  1280 1328 1440 1688  1024 1025 1028 1066 +hsync +vsync (64.0 kHz e)
[    54.814] (II) AMDGPU(0): Modeline "1440x900"x0.0   88.75  1440 1488 1520 1600  900 903 909 926 +hsync -vsync (55.5 kHz e)
[    54.814] (II) AMDGPU(0): Modeline "1600x900"x60.0  119.00  1600 1696 1864 2128  900 901 904 932 -hsync +vsync (55.9 kHz e)
[    54.814] (II) AMDGPU(0): Modeline "1680x1050"x0.0  119.00  1680 1728 1760 1840  1050 1053 1059 1080 +hsync -vsync (64.7 kHz e)
[    54.815] (--) AMDGPU(0): HDMI max TMDS frequency 300000KHz
[    55.297] (II) AMDGPU(0): EDID vendor "SAM", prod id 28808
[    55.297] (II) AMDGPU(0): Using hsync ranges from config file
[    55.297] (II) AMDGPU(0): Using vrefresh ranges from config file
[    55.297] (II) AMDGPU(0): Printing DDC gathered Modelines:
[    55.297] (II) AMDGPU(0): Modeline "2560x1440"x0.0  580.08  2560 2568 2632 2720  1440 1443 1448 1481 +hsync -vsync (213.3 kHz eP)
[    55.297] (II) AMDGPU(0): Modeline "1920x1080"x0.0  346.50  1920 1968 2000 2080  1080 1083 1088 1157 +hsync -vsync (166.6 kHz e)
[    55.297] (II) AMDGPU(0): Modeline "2560x1440"x0.0  241.50  2560 2608 2640 2720  1440 1443 1448 1481 +hsync -vsync (88.8 kHz e)
[    55.297] (II) AMDGPU(0): Modeline "2560x1440"x0.0  497.75  2560 2608 2640 2720  1440 1443 1448 1525 +hsync -vsync (183.0 kHz e)
[    55.297] (II) AMDGPU(0): Modeline "1920x1080"x0.0  148.50  1920 2008 2052 2200  1080 1084 1089 1125 +hsync +vsync (67.5 kHz e)
[    55.297] (II) AMDGPU(0): Modeline "1920x1080"x0.0  297.00  1920 2008 2052 2200  1080 1084 1089 1125 +hsync +vsync (135.0 kHz e)
[    55.297] (II) AMDGPU(0): Modeline "1920x1080"x0.0  148.50  1920 2448 2492 2640  1080 1084 1089 1125 +hsync +vsync (56.2 kHz e)
[    55.297] (II) AMDGPU(0): Modeline "1280x720"x0.0   74.25  1280 1390 1430 1650  720 725 730 750 +hsync +vsync (45.0 kHz e)
[    55.297] (II) AMDGPU(0): Modeline "1280x720"x0.0   74.25  1280 1720 1760 1980  720 725 730 750 +hsync +vsync (37.5 kHz e)
[    55.297] (II) AMDGPU(0): Modeline "720x480"x0.0   27.00  720 736 798 858  480 489 495 525 -hsync -vsync (31.5 kHz e)
[    55.297] (II) AMDGPU(0): Modeline "720x576"x0.0   27.00  720 732 796 864  576 581 586 625 -hsync -vsync (31.2 kHz e)
[    55.297] (II) AMDGPU(0): Modeline "800x600"x0.0   40.00  800 840 968 1056  600 601 605 628 +hsync +vsync (37.9 kHz e)
[    55.297] (II) AMDGPU(0): Modeline "800x600"x0.0   36.00  800 824 896 1024  600 601 603 625 +hsync +vsync (35.2 kHz e)
[    55.297] (II) AMDGPU(0): Modeline "640x480"x0.0   31.50  640 656 720 840  480 481 484 500 -hsync -vsync (37.5 kHz e)
[    55.297] (II) AMDGPU(0): Modeline "640x480"x0.0   31.50  640 664 704 832  480 489 492 520 -hsync -vsync (37.9 kHz e)
[    55.297] (II) AMDGPU(0): Modeline "640x480"x0.0   30.24  640 704 768 864  480 483 486 525 -hsync -vsync (35.0 kHz e)
[    55.297] (II) AMDGPU(0): Modeline "640x480"x0.0   25.18  640 656 752 800  480 490 492 525 -hsync -vsync (31.5 kHz e)
[    55.297] (II) AMDGPU(0): Modeline "720x400"x0.0   28.32  720 738 846 900  400 412 414 449 -hsync +vsync (31.5 kHz e)
[    55.297] (II) AMDGPU(0): Modeline "1280x1024"x0.0  135.00  1280 1296 1440 1688  1024 1025 1028 1066 +hsync +vsync (80.0 kHz e)
[    55.297] (II) AMDGPU(0): Modeline "1024x768"x0.0   78.75  1024 1040 1136 1312  768 769 772 800 +hsync +vsync (60.0 kHz e)
[    55.298] (II) AMDGPU(0): Modeline "1024x768"x0.0   75.00  1024 1048 1184 1328  768 771 777 806 -hsync -vsync (56.5 kHz e)
[    55.298] (II) AMDGPU(0): Modeline "1024x768"x0.0   65.00  1024 1048 1184 1344  768 771 777 806 -hsync -vsync (48.4 kHz e)
[    55.298] (II) AMDGPU(0): Modeline "832x624"x0.0   57.28  832 864 928 1152  624 625 628 667 -hsync -vsync (49.7 kHz e)
[    55.298] (II) AMDGPU(0): Modeline "800x600"x0.0   49.50  800 816 896 1056  600 601 604 625 +hsync +vsync (46.9 kHz e)
[    55.298] (II) AMDGPU(0): Modeline "800x600"x0.0   50.00  800 856 976 1040  600 637 643 666 +hsync +vsync (48.1 kHz e)
[    55.298] (II) AMDGPU(0): Modeline "1152x864"x0.0  108.00  1152 1216 1344 1600  864 865 868 900 +hsync +vsync (67.5 kHz e)
[    55.298] (II) AMDGPU(0): Modeline "1280x800"x0.0   71.00  1280 1328 1360 1440  800 803 809 823 +hsync -vsync (49.3 kHz e)
[    55.298] (II) AMDGPU(0): Modeline "1280x1024"x0.0  108.00  1280 1328 1440 1688  1024 1025 1028 1066 +hsync +vsync (64.0 kHz e)
[    55.298] (II) AMDGPU(0): Modeline "1440x900"x0.0   88.75  1440 1488 1520 1600  900 903 909 926 +hsync -vsync (55.5 kHz e)
[    55.298] (II) AMDGPU(0): Modeline "1600x900"x60.0  119.00  1600 1696 1864 2128  900 901 904 932 -hsync +vsync (55.9 kHz e)
[    55.298] (II) AMDGPU(0): Modeline "1680x1050"x0.0  119.00  1680 1728 1760 1840  1050 1053 1059 1080 +hsync -vsync (64.7 kHz e)
[    55.298] (--) AMDGPU(0): HDMI max TMDS frequency 300000KHz
[    55.837] (II) AMDGPU(0): EDID vendor "SAM", prod id 28808
[    55.837] (II) AMDGPU(0): Using hsync ranges from config file
[    55.837] (II) AMDGPU(0): Using vrefresh ranges from config file
[    55.837] (II) AMDGPU(0): Printing DDC gathered Modelines:
[    55.837] (II) AMDGPU(0): Modeline "2560x1440"x0.0  580.08  2560 2568 2632 2720  1440 1443 1448 1481 +hsync -vsync (213.3 kHz eP)
[    55.837] (II) AMDGPU(0): Modeline "1920x1080"x0.0  346.50  1920 1968 2000 2080  1080 1083 1088 1157 +hsync -vsync (166.6 kHz e)
[    55.837] (II) AMDGPU(0): Modeline "2560x1440"x0.0  241.50  2560 2608 2640 2720  1440 1443 1448 1481 +hsync -vsync (88.8 kHz e)
[    55.837] (II) AMDGPU(0): Modeline "2560x1440"x0.0  497.75  2560 2608 2640 2720  1440 1443 1448 1525 +hsync -vsync (183.0 kHz e)
[    55.837] (II) AMDGPU(0): Modeline "1920x1080"x0.0  148.50  1920 2008 2052 2200  1080 1084 1089 1125 +hsync +vsync (67.5 kHz e)
[    55.837] (II) AMDGPU(0): Modeline "1920x1080"x0.0  297.00  1920 2008 2052 2200  1080 1084 1089 1125 +hsync +vsync (135.0 kHz e)
[    55.837] (II) AMDGPU(0): Modeline "1920x1080"x0.0  148.50  1920 2448 2492 2640  1080 1084 1089 1125 +hsync +vsync (56.2 kHz e)
[    55.837] (II) AMDGPU(0): Modeline "1280x720"x0.0   74.25  1280 1390 1430 1650  720 725 730 750 +hsync +vsync (45.0 kHz e)
[    55.837] (II) AMDGPU(0): Modeline "1280x720"x0.0   74.25  1280 1720 1760 1980  720 725 730 750 +hsync +vsync (37.5 kHz e)
[    55.837] (II) AMDGPU(0): Modeline "720x480"x0.0   27.00  720 736 798 858  480 489 495 525 -hsync -vsync (31.5 kHz e)
[    55.837] (II) AMDGPU(0): Modeline "720x576"x0.0   27.00  720 732 796 864  576 581 586 625 -hsync -vsync (31.2 kHz e)
[    55.837] (II) AMDGPU(0): Modeline "800x600"x0.0   40.00  800 840 968 1056  600 601 605 628 +hsync +vsync (37.9 kHz e)
[    55.837] (II) AMDGPU(0): Modeline "800x600"x0.0   36.00  800 824 896 1024  600 601 603 625 +hsync +vsync (35.2 kHz e)
[    55.837] (II) AMDGPU(0): Modeline "640x480"x0.0   31.50  640 656 720 840  480 481 484 500 -hsync -vsync (37.5 kHz e)
[    55.837] (II) AMDGPU(0): Modeline "640x480"x0.0   31.50  640 664 704 832  480 489 492 520 -hsync -vsync (37.9 kHz e)
[    55.837] (II) AMDGPU(0): Modeline "640x480"x0.0   30.24  640 704 768 864  480 483 486 525 -hsync -vsync (35.0 kHz e)
[    55.837] (II) AMDGPU(0): Modeline "640x480"x0.0   25.18  640 656 752 800  480 490 492 525 -hsync -vsync (31.5 kHz e)
[    55.837] (II) AMDGPU(0): Modeline "720x400"x0.0   28.32  720 738 846 900  400 412 414 449 -hsync +vsync (31.5 kHz e)
[    55.837] (II) AMDGPU(0): Modeline "1280x1024"x0.0  135.00  1280 1296 1440 1688  1024 1025 1028 1066 +hsync +vsync (80.0 kHz e)
[    55.837] (II) AMDGPU(0): Modeline "1024x768"x0.0   78.75  1024 1040 1136 1312  768 769 772 800 +hsync +vsync (60.0 kHz e)
[    55.837] (II) AMDGPU(0): Modeline "1024x768"x0.0   75.00  1024 1048 1184 1328  768 771 777 806 -hsync -vsync (56.5 kHz e)
[    55.837] (II) AMDGPU(0): Modeline "1024x768"x0.0   65.00  1024 1048 1184 1344  768 771 777 806 -hsync -vsync (48.4 kHz e)
[    55.837] (II) AMDGPU(0): Modeline "832x624"x0.0   57.28  832 864 928 1152  624 625 628 667 -hsync -vsync (49.7 kHz e)
[    55.837] (II) AMDGPU(0): Modeline "800x600"x0.0   49.50  800 816 896 1056  600 601 604 625 +hsync +vsync (46.9 kHz e)
[    55.837] (II) AMDGPU(0): Modeline "800x600"x0.0   50.00  800 856 976 1040  600 637 643 666 +hsync +vsync (48.1 kHz e)
[    55.837] (II) AMDGPU(0): Modeline "1152x864"x0.0  108.00  1152 1216 1344 1600  864 865 868 900 +hsync +vsync (67.5 kHz e)
[    55.837] (II) AMDGPU(0): Modeline "1280x800"x0.0   71.00  1280 1328 1360 1440  800 803 809 823 +hsync -vsync (49.3 kHz e)
[    55.837] (II) AMDGPU(0): Modeline "1280x1024"x0.0  108.00  1280 1328 1440 1688  1024 1025 1028 1066 +hsync +vsync (64.0 kHz e)
[    55.837] (II) AMDGPU(0): Modeline "1440x900"x0.0   88.75  1440 1488 1520 1600  900 903 909 926 +hsync -vsync (55.5 kHz e)
[    55.837] (II) AMDGPU(0): Modeline "1600x900"x60.0  119.00  1600 1696 1864 2128  900 901 904 932 -hsync +vsync (55.9 kHz e)
[    55.837] (II) AMDGPU(0): Modeline "1680x1050"x0.0  119.00  1680 1728 1760 1840  1050 1053 1059 1080 +hsync -vsync (64.7 kHz e)
[    55.837] (--) AMDGPU(0): HDMI max TMDS frequency 300000KHz
[    57.453] (II) config/udev: Adding input device XP-Pen Pen (/dev/input/mouse2)
[    57.453] (**) XP-Pen Pen: Applying InputClass "system-keyboard"
[    57.453] (II) No input driver specified, ignoring this device.
[    57.453] (II) This device may have been added with another device file.
[    57.461] (II) config/udev: Adding input device XP-Pen Pen (/dev/input/event25)
[    57.461] (**) XP-Pen Pen: Applying InputClass "libinput keyboard catchall"
[    57.461] (**) XP-Pen Pen: Applying InputClass "libinput tablet catchall"
[    57.461] (**) XP-Pen Pen: Applying InputClass "system-keyboard"
[    57.461] (II) Using input driver 'libinput' for 'XP-Pen Pen'
[    57.462] (II) systemd-logind: got fd for /dev/input/event25 13:89 fd 54 paused 0
[    57.463] (**) XP-Pen Pen: always reports core events
[    57.463] (**) Option "Device" "/dev/input/event25"
[    57.463] (II) event25 - XP-Pen Pen: is tagged by udev as: Keyboard Tablet
[    57.514] (II) event25 - XP-Pen Pen: device "XP-Pen Pen" (28bd:0002) is not known to libwacom
[    57.514] (II) event25 - XP-Pen Pen: device is a tablet
[    57.514] (II) event25 - XP-Pen Pen: device removed
[    57.514] (**) Option "config_info" "udev:/sys/devices/virtual/input/input30/event25"
[    57.515] (II) XINPUT: Adding extended input device "XP-Pen Pen" (type: TABLET, id 21)
[    57.517] (II) event25 - XP-Pen Pen: is tagged by udev as: Keyboard Tablet
[    57.542] (II) event25 - XP-Pen Pen: device "XP-Pen Pen" (28bd:0002) is not known to libwacom
[    57.543] (II) event25 - XP-Pen Pen: device is a tablet
[    57.546] (II) config/udev: Adding input device XP-Pen Mouse (/dev/input/mouse3)
[    57.546] (**) XP-Pen Mouse: Applying InputClass "system-keyboard"
[    57.547] (II) No input driver specified, ignoring this device.
[    57.547] (II) This device may have been added with another device file.
[    57.547] (II) config/udev: Adding input device XP-Pen Eraser (/dev/input/mouse4)
[    57.547] (II) No input driver specified, ignoring this device.
[    57.547] (II) This device may have been added with another device file.
[    57.548] (II) config/udev: Adding input device XP-Pen Eraser (/dev/input/event27)
[    57.548] (**) XP-Pen Eraser: Applying InputClass "libinput tablet catchall"
[    57.548] (II) Using input driver 'libinput' for 'XP-Pen Eraser'
[    57.550] (II) systemd-logind: got fd for /dev/input/event27 13:91 fd 56 paused 0
[    57.550] (**) XP-Pen Eraser: always reports core events
[    57.550] (**) Option "Device" "/dev/input/event27"
[    57.551] (II) event27 - XP-Pen Eraser: is tagged by udev as: Tablet
[    57.580] (II) event27 - XP-Pen Eraser: device "XP-Pen Eraser" (28bd:0002) is not known to libwacom
[    57.580] (II) event27 - XP-Pen Eraser: device is a tablet
[    57.580] (II) event27 - XP-Pen Eraser: device removed
[    57.580] (**) Option "config_info" "udev:/sys/devices/virtual/input/input32/event27"
[    57.580] (II) XINPUT: Adding extended input device "XP-Pen Eraser" (type: TABLET, id 22)
[    57.582] (II) event27 - XP-Pen Eraser: is tagged by udev as: Tablet
[    57.605] (II) event27 - XP-Pen Eraser: device "XP-Pen Eraser" (28bd:0002) is not known to libwacom
[    57.605] (II) event27 - XP-Pen Eraser: device is a tablet
[    57.605] (II) config/udev: Adding input device XP-Pen Mouse (/dev/input/event26)
[    57.605] (**) XP-Pen Mouse: Applying InputClass "libinput pointer catchall"
[    57.605] (**) XP-Pen Mouse: Applying InputClass "libinput keyboard catchall"
[    57.605] (**) XP-Pen Mouse: Applying InputClass "system-keyboard"
[    57.605] (II) Using input driver 'libinput' for 'XP-Pen Mouse'
[    57.606] (II) systemd-logind: got fd for /dev/input/event26 13:90 fd 57 paused 0
[    57.606] (**) XP-Pen Mouse: always reports core events
[    57.606] (**) Option "Device" "/dev/input/event26"
[    57.608] (II) event26 - XP-Pen Mouse: is tagged by udev as: Keyboard Mouse
[    57.608] (II) event26 - XP-Pen Mouse: device is a pointer
[    57.608] (II) event26 - XP-Pen Mouse: device is a keyboard
[    57.608] (II) event26 - XP-Pen Mouse: device removed
[    57.608] (II) libinput: XP-Pen Mouse: Step value 0 was provided, libinput Fallback acceleration function is used.
[    57.608] (II) libinput: XP-Pen Mouse: Step value 0 was provided, libinput Fallback acceleration function is used.
[    57.608] (II) libinput: XP-Pen Mouse: Step value 0 was provided, libinput Fallback acceleration function is used.
[    57.608] (II) libinput: XP-Pen Mouse: needs a virtual subdevice
[    57.608] (**) Option "config_info" "udev:/sys/devices/virtual/input/input31/event26"
[    57.608] (II) XINPUT: Adding extended input device "XP-Pen Mouse" (type: MOUSE, id 23)
[    57.608] (**) Option "AccelerationScheme" "none"
[    57.608] (**) XP-Pen Mouse: (accel) selected scheme none/0
[    57.608] (**) XP-Pen Mouse: (accel) acceleration factor: 2.000
[    57.608] (**) XP-Pen Mouse: (accel) acceleration threshold: 4
[    57.609] (II) event26 - XP-Pen Mouse: is tagged by udev as: Keyboard Mouse
[    57.609] (II) event26 - XP-Pen Mouse: device is a pointer
[    57.609] (II) event26 - XP-Pen Mouse: device is a keyboard
[    57.609] (**) XP-Pen Mouse: Applying InputClass "libinput pointer catchall"
[    57.609] (**) XP-Pen Mouse: Applying InputClass "libinput keyboard catchall"
[    57.609] (**) XP-Pen Mouse: Applying InputClass "system-keyboard"
[    57.609] (II) Using input driver 'libinput' for 'XP-Pen Mouse'
[    57.609] (II) systemd-logind: returning pre-existing fd for /dev/input/event26 13:90
[    57.609] (**) XP-Pen Mouse: always reports core events
[    57.609] (**) Option "Device" "/dev/input/event26"
[    57.609] (II) libinput: XP-Pen Mouse: is a virtual subdevice
[    57.609] (II) libinput: XP-Pen Mouse: Step value 0 was provided, libinput Fallback acceleration function is used.
[    57.609] (II) libinput: XP-Pen Mouse: Step value 0 was provided, libinput Fallback acceleration function is used.
[    57.609] (II) libinput: XP-Pen Mouse: Step value 0 was provided, libinput Fallback acceleration function is used.
[    57.609] (**) Option "config_info" "udev:/sys/devices/virtual/input/input31/event26"
[    57.609] (II) XINPUT: Adding extended input device "XP-Pen Mouse" (type: KEYBOARD, id 24)
[    57.609] (**) Option "xkb_model" "pc105"
[    57.609] (**) Option "xkb_layout" "us,ara"
[    57.609] (**) Option "xkb_variant" ",qwerty"
[    57.609] (**) Option "xkb_options" "grp:alt_shift_toggle"
[    58.416] (WW) AMDGPU(0): flip queue failed: Invalid argument
[    58.416] (WW) AMDGPU(0): Page flip failed: Invalid argument
[    58.416] (EE) AMDGPU(0): present flip failed
[    58.421] (WW) AMDGPU(0): flip queue failed: Invalid argument
[    58.421] (WW) AMDGPU(0): Page flip failed: Invalid argument
[    58.421] (EE) AMDGPU(0): present flip failed
[    58.456] (WW) AMDGPU(0): flip queue failed: Invalid argument
[    58.456] (WW) AMDGPU(0): Page flip failed: Invalid argument
[    58.456] (EE) AMDGPU(0): present flip failed
[    59.631] (WW) AMDGPU(0): flip queue failed: Invalid argument
[    59.631] (WW) AMDGPU(0): Page flip failed: Invalid argument
[    59.631] (EE) AMDGPU(0): present flip failed
[    59.635] (WW) AMDGPU(0): flip queue failed: Invalid argument
[    59.635] (WW) AMDGPU(0): Page flip failed: Invalid argument
[    59.635] (EE) AMDGPU(0): present flip failed
[    59.637] (WW) AMDGPU(0): flip queue failed: Invalid argument
[    59.637] (WW) AMDGPU(0): Page flip failed: Invalid argument
[    59.637] (EE) AMDGPU(0): present flip failed
[    59.649] (WW) AMDGPU(0): flip queue failed: Invalid argument
[    59.649] (WW) AMDGPU(0): Page flip failed: Invalid argument
[    59.649] (EE) AMDGPU(0): present flip failed
[    59.650] (WW) AMDGPU(0): flip queue failed: Invalid argument
[    59.650] (WW) AMDGPU(0): Page flip failed: Invalid argument
[    59.650] (EE) AMDGPU(0): present flip failed
[    59.651] (WW) AMDGPU(0): flip queue failed: Invalid argument
[    59.651] (WW) AMDGPU(0): Page flip failed: Invalid argument
[    59.651] (EE) AMDGPU(0): present flip failed
[    59.654] (WW) AMDGPU(0): flip queue failed: Invalid argument
[    59.654] (WW) AMDGPU(0): Page flip failed: Invalid argument
[    59.654] (EE) AMDGPU(0): present flip failed
[    59.654] (WW) AMDGPU(0): flip queue failed: Invalid argument
[    59.654] (WW) AMDGPU(0): Page flip failed: Invalid argument
[    59.654] (EE) AMDGPU(0): present flip failed
[    59.655] (WW) AMDGPU(0): flip queue failed: Invalid argument
[    59.655] (WW) AMDGPU(0): Page flip failed: Invalid argument
[    59.655] (EE) AMDGPU(0): present flip failed
[    62.151] (WW) AMDGPU(0): flip queue failed: Invalid argument
[    62.151] (WW) AMDGPU(0): Page flip failed: Invalid argument
[    62.151] (EE) AMDGPU(0): present flip failed
[    62.155] (WW) AMDGPU(0): flip queue failed: Invalid argument
[    62.155] (WW) AMDGPU(0): Page flip failed: Invalid argument
[    62.155] (EE) AMDGPU(0): present flip failed
[    62.156] (WW) AMDGPU(0): flip queue failed: Invalid argument
[    62.156] (WW) AMDGPU(0): Page flip failed: Invalid argument
[    62.156] (EE) AMDGPU(0): present flip failed
[    62.157] (WW) AMDGPU(0): flip queue failed: Invalid argument
[    62.157] (WW) AMDGPU(0): Page flip failed: Invalid argument
[    62.157] (EE) AMDGPU(0): present flip failed
[    62.158] (WW) AMDGPU(0): flip queue failed: Invalid argument
[    62.158] (WW) AMDGPU(0): Page flip failed: Invalid argument
[    62.158] (EE) AMDGPU(0): present flip failed
[    62.159] (WW) AMDGPU(0): flip queue failed: Invalid argument
[    62.159] (WW) AMDGPU(0): Page flip failed: Invalid argument
[    62.159] (EE) AMDGPU(0): present flip failed
[    62.160] (WW) AMDGPU(0): flip queue failed: Invalid argument
[    62.160] (WW) AMDGPU(0): Page flip failed: Invalid argument
[    62.160] (EE) AMDGPU(0): present flip failed
[    62.162] (WW) AMDGPU(0): flip queue failed: Invalid argument
[    62.162] (WW) AMDGPU(0): Page flip failed: Invalid argument
[    62.162] (EE) AMDGPU(0): present flip failed
[    62.162] (WW) AMDGPU(0): flip queue failed: Invalid argument
[    62.162] (WW) AMDGPU(0): Page flip failed: Invalid argument
[    62.162] (EE) AMDGPU(0): present flip failed
[    62.164] (WW) AMDGPU(0): flip queue failed: Invalid argument
[    62.164] (WW) AMDGPU(0): Page flip failed: Invalid argument
[    62.164] (EE) AMDGPU(0): present flip failed
[    62.165] (WW) AMDGPU(0): flip queue failed: Invalid argument
[    62.165] (WW) AMDGPU(0): Page flip failed: Invalid argument
[    62.165] (EE) AMDGPU(0): present flip failed
[    62.166] (WW) AMDGPU(0): flip queue failed: Invalid argument
[    62.166] (WW) AMDGPU(0): Page flip failed: Invalid argument
[    62.166] (EE) AMDGPU(0): present flip failed
[    62.167] (WW) AMDGPU(0): flip queue failed: Invalid argument
[    62.167] (WW) AMDGPU(0): Page flip failed: Invalid argument
[    62.167] (EE) AMDGPU(0): present flip failed
[    62.168] (WW) AMDGPU(0): flip queue failed: Invalid argument
[    62.168] (WW) AMDGPU(0): Page flip failed: Invalid argument
[    62.168] (EE) AMDGPU(0): present flip failed
[    62.169] (WW) AMDGPU(0): flip queue failed: Invalid argument
[    62.169] (WW) AMDGPU(0): Page flip failed: Invalid argument
[    62.169] (EE) AMDGPU(0): present flip failed
[    62.170] (WW) AMDGPU(0): flip queue failed: Invalid argument
[    62.170] (WW) AMDGPU(0): Page flip failed: Invalid argument
[    62.170] (EE) AMDGPU(0): present flip failed
[    62.171] (WW) AMDGPU(0): flip queue failed: Invalid argument
[    62.171] (WW) AMDGPU(0): Page flip failed: Invalid argument
[    62.171] (EE) AMDGPU(0): present flip failed
[    62.172] (WW) AMDGPU(0): flip queue failed: Invalid argument
[    62.172] (WW) AMDGPU(0): Page flip failed: Invalid argument
[    62.172] (EE) AMDGPU(0): present flip failed
[    62.173] (WW) AMDGPU(0): flip queue failed: Invalid argument
[    62.173] (WW) AMDGPU(0): Page flip failed: Invalid argument
[    62.173] (EE) AMDGPU(0): present flip failed
[    62.174] (WW) AMDGPU(0): flip queue failed: Invalid argument
[    62.174] (WW) AMDGPU(0): Page flip failed: Invalid argument
[    62.174] (EE) AMDGPU(0): present flip failed
[    62.175] (WW) AMDGPU(0): flip queue failed: Invalid argument
[    62.175] (WW) AMDGPU(0): Page flip failed: Invalid argument
[    62.175] (EE) AMDGPU(0): present flip failed
[    62.176] (WW) AMDGPU(0): flip queue failed: Invalid argument
[    62.176] (WW) AMDGPU(0): Page flip failed: Invalid argument
[    62.176] (EE) AMDGPU(0): present flip failed
[    62.177] (WW) AMDGPU(0): flip queue failed: Invalid argument
[    62.177] (WW) AMDGPU(0): Page flip failed: Invalid argument
[    62.177] (EE) AMDGPU(0): present flip failed
[    62.178] (WW) AMDGPU(0): flip queue failed: Invalid argument
[    62.178] (WW) AMDGPU(0): Page flip failed: Invalid argument
[    62.178] (EE) AMDGPU(0): present flip failed
[    62.179] (WW) AMDGPU(0): flip queue failed: Invalid argument
[    62.179] (WW) AMDGPU(0): Page flip failed: Invalid argument
[    62.179] (EE) AMDGPU(0): present flip failed
[    62.180] (WW) AMDGPU(0): flip queue failed: Invalid argument
[    62.180] (WW) AMDGPU(0): Page flip failed: Invalid argument
[    62.180] (EE) AMDGPU(0): present flip failed
[    62.181] (WW) AMDGPU(0): flip queue failed: Invalid argument
[    62.181] (WW) AMDGPU(0): Page flip failed: Invalid argument
[    62.181] (EE) AMDGPU(0): present flip failed
[    62.182] (WW) AMDGPU(0): flip queue failed: Invalid argument
[    62.182] (WW) AMDGPU(0): Page flip failed: Invalid argument
[    62.182] (EE) AMDGPU(0): present flip failed
[    62.183] (WW) AMDGPU(0): flip queue failed: Invalid argument
[    62.183] (WW) AMDGPU(0): Page flip failed: Invalid argument
[    62.183] (EE) AMDGPU(0): present flip failed
[    62.184] (WW) AMDGPU(0): flip queue failed: Invalid argument
[    62.184] (WW) AMDGPU(0): Page flip failed: Invalid argument
[    62.184] (EE) AMDGPU(0): present flip failed
[    62.185] (WW) AMDGPU(0): flip queue failed: Invalid argument
[    62.185] (WW) AMDGPU(0): Page flip failed: Invalid argument
[    62.185] (EE) AMDGPU(0): present flip failed
[    62.186] (WW) AMDGPU(0): flip queue failed: Invalid argument
[    62.186] (WW) AMDGPU(0): Page flip failed: Invalid argument
[    62.186] (EE) AMDGPU(0): present flip failed
[    62.187] (WW) AMDGPU(0): flip queue failed: Invalid argument
[    62.187] (WW) AMDGPU(0): Page flip failed: Invalid argument
[    62.187] (EE) AMDGPU(0): present flip failed
[    62.188] (WW) AMDGPU(0): flip queue failed: Invalid argument
[    62.188] (WW) AMDGPU(0): Page flip failed: Invalid argument
[    62.188] (EE) AMDGPU(0): present flip failed
[    62.189] (WW) AMDGPU(0): flip queue failed: Invalid argument
[    62.189] (WW) AMDGPU(0): Page flip failed: Invalid argument
[    62.189] (EE) AMDGPU(0): present flip failed
[    62.190] (WW) AMDGPU(0): flip queue failed: Invalid argument
[    62.190] (WW) AMDGPU(0): Page flip failed: Invalid argument
[    62.190] (EE) AMDGPU(0): present flip failed
[    62.191] (WW) AMDGPU(0): flip queue failed: Invalid argument
[    62.191] (WW) AMDGPU(0): Page flip failed: Invalid argument
[    62.191] (EE) AMDGPU(0): present flip failed
[    62.192] (WW) AMDGPU(0): flip queue failed: Invalid argument
[    62.192] (WW) AMDGPU(0): Page flip failed: Invalid argument
[    62.192] (EE) AMDGPU(0): present flip failed
[    62.193] (WW) AMDGPU(0): flip queue failed: Invalid argument
[    62.193] (WW) AMDGPU(0): Page flip failed: Invalid argument
[    62.193] (EE) AMDGPU(0): present flip failed
[    62.194] (WW) AMDGPU(0): flip queue failed: Invalid argument
[    62.194] (WW) AMDGPU(0): Page flip failed: Invalid argument
[    62.194] (EE) AMDGPU(0): present flip failed
[    62.195] (WW) AMDGPU(0): flip queue failed: Invalid argument
[    62.195] (WW) AMDGPU(0): Page flip failed: Invalid argument
[    62.195] (EE) AMDGPU(0): present flip failed
[    62.196] (WW) AMDGPU(0): flip queue failed: Invalid argument
[    62.196] (WW) AMDGPU(0): Page flip failed: Invalid argument
[    62.196] (EE) AMDGPU(0): present flip failed
[    62.197] (WW) AMDGPU(0): flip queue failed: Invalid argument
[    62.197] (WW) AMDGPU(0): Page flip failed: Invalid argument
[    62.197] (EE) AMDGPU(0): present flip failed
[    62.198] (WW) AMDGPU(0): flip queue failed: Invalid argument
[    62.198] (WW) AMDGPU(0): Page flip failed: Invalid argument
[    62.198] (EE) AMDGPU(0): present flip failed
[    62.199] (WW) AMDGPU(0): flip queue failed: Invalid argument
[    62.199] (WW) AMDGPU(0): Page flip failed: Invalid argument
[    62.199] (EE) AMDGPU(0): present flip failed
[    62.200] (WW) AMDGPU(0): flip queue failed: Invalid argument
[    62.200] (WW) AMDGPU(0): Page flip failed: Invalid argument
[    62.200] (EE) AMDGPU(0): present flip failed
[    62.201] (WW) AMDGPU(0): flip queue failed: Invalid argument
[    62.201] (WW) AMDGPU(0): Page flip failed: Invalid argument
[    62.201] (EE) AMDGPU(0): present flip failed
[    62.202] (WW) AMDGPU(0): flip queue failed: Invalid argument
[    62.202] (WW) AMDGPU(0): Page flip failed: Invalid argument
[    62.202] (EE) AMDGPU(0): present flip failed
[    62.203] (WW) AMDGPU(0): flip queue failed: Invalid argument
[    62.203] (WW) AMDGPU(0): Page flip failed: Invalid argument
[    62.203] (EE) AMDGPU(0): present flip failed
[    62.204] (WW) AMDGPU(0): flip queue failed: Invalid argument
[    62.204] (WW) AMDGPU(0): Page flip failed: Invalid argument
[    62.204] (EE) AMDGPU(0): present flip failed
[    62.205] (WW) AMDGPU(0): flip queue failed: Invalid argument
[    62.205] (WW) AMDGPU(0): Page flip failed: Invalid argument
[    62.205] (EE) AMDGPU(0): present flip failed
[    62.206] (WW) AMDGPU(0): flip queue failed: Invalid argument
[    62.206] (WW) AMDGPU(0): Page flip failed: Invalid argument
[    62.206] (EE) AMDGPU(0): present flip failed
[    62.207] (WW) AMDGPU(0): flip queue failed: Invalid argument
[    62.207] (WW) AMDGPU(0): Page flip failed: Invalid argument
[    62.207] (EE) AMDGPU(0): present flip failed
[    62.208] (WW) AMDGPU(0): flip queue failed: Invalid argument
[    62.208] (WW) AMDGPU(0): Page flip failed: Invalid argument
[    62.208] (EE) AMDGPU(0): present flip failed
[    62.209] (WW) AMDGPU(0): flip queue failed: Invalid argument
[    62.209] (WW) AMDGPU(0): Page flip failed: Invalid argument
[    62.209] (EE) AMDGPU(0): present flip failed
[    62.210] (WW) AMDGPU(0): flip queue failed: Invalid argument
[    62.210] (WW) AMDGPU(0): Page flip failed: Invalid argument
[    62.210] (EE) AMDGPU(0): present flip failed
[    62.211] (WW) AMDGPU(0): flip queue failed: Invalid argument
[    62.211] (WW) AMDGPU(0): Page flip failed: Invalid argument
[    62.211] (EE) AMDGPU(0): present flip failed
[    62.211] (WW) AMDGPU(0): flip queue failed: Invalid argument
[    62.211] (WW) AMDGPU(0): Page flip failed: Invalid argument
[    62.211] (EE) AMDGPU(0): present flip failed
[    62.212] (WW) AMDGPU(0): flip queue failed: Invalid argument
[    62.212] (WW) AMDGPU(0): Page flip failed: Invalid argument
[    62.212] (EE) AMDGPU(0): present flip failed
[    62.213] (WW) AMDGPU(0): flip queue failed: Invalid argument
[    62.213] (WW) AMDGPU(0): Page flip failed: Invalid argument
[    62.213] (EE) AMDGPU(0): present flip failed
[    62.214] (WW) AMDGPU(0): flip queue failed: Invalid argument
[    62.214] (WW) AMDGPU(0): Page flip failed: Invalid argument
[    62.214] (EE) AMDGPU(0): present flip failed
[    62.215] (WW) AMDGPU(0): flip queue failed: Invalid argument
[    62.215] (WW) AMDGPU(0): Page flip failed: Invalid argument
[    62.215] (EE) AMDGPU(0): present flip failed
[    62.216] (WW) AMDGPU(0): flip queue failed: Invalid argument
[    62.216] (WW) AMDGPU(0): Page flip failed: Invalid argument
[    62.216] (EE) AMDGPU(0): present flip failed
[    62.217] (WW) AMDGPU(0): flip queue failed: Invalid argument
[    62.217] (WW) AMDGPU(0): Page flip failed: Invalid argument
[    62.217] (EE) AMDGPU(0): present flip failed
[    62.218] (WW) AMDGPU(0): flip queue failed: Invalid argument
[    62.218] (WW) AMDGPU(0): Page flip failed: Invalid argument
[    62.218] (EE) AMDGPU(0): present flip failed
[    62.219] (WW) AMDGPU(0): flip queue failed: Invalid argument
[    62.219] (WW) AMDGPU(0): Page flip failed: Invalid argument
[    62.219] (EE) AMDGPU(0): present flip failed
[    62.220] (WW) AMDGPU(0): flip queue failed: Invalid argument
[    62.220] (WW) AMDGPU(0): Page flip failed: Invalid argument
[    62.220] (EE) AMDGPU(0): present flip failed
[    62.221] (WW) AMDGPU(0): flip queue failed: Invalid argument
[    62.221] (WW) AMDGPU(0): Page flip failed: Invalid argument
[    62.221] (EE) AMDGPU(0): present flip failed
[    62.221] (WW) AMDGPU(0): flip queue failed: Invalid argument
[    62.222] (WW) AMDGPU(0): Page flip failed: Invalid argument
[    62.222] (EE) AMDGPU(0): present flip failed
[    62.222] (WW) AMDGPU(0): flip queue failed: Invalid argument
[    62.222] (WW) AMDGPU(0): Page flip failed: Invalid argument
[    62.222] (EE) AMDGPU(0): present flip failed
[    62.223] (WW) AMDGPU(0): flip queue failed: Invalid argument
[    62.223] (WW) AMDGPU(0): Page flip failed: Invalid argument
[    62.223] (EE) AMDGPU(0): present flip failed
[    62.224] (WW) AMDGPU(0): flip queue failed: Invalid argument
[    62.224] (WW) AMDGPU(0): Page flip failed: Invalid argument
[    62.224] (EE) AMDGPU(0): present flip failed
[    62.225] (WW) AMDGPU(0): flip queue failed: Invalid argument
[    62.225] (WW) AMDGPU(0): Page flip failed: Invalid argument
[    62.225] (EE) AMDGPU(0): present flip failed
[    62.226] (WW) AMDGPU(0): flip queue failed: Invalid argument
[    62.226] (WW) AMDGPU(0): Page flip failed: Invalid argument
[    62.226] (EE) AMDGPU(0): present flip failed
[    62.227] (WW) AMDGPU(0): flip queue failed: Invalid argument
[    62.227] (WW) AMDGPU(0): Page flip failed: Invalid argument
[    62.227] (EE) AMDGPU(0): present flip failed
[    62.228] (WW) AMDGPU(0): flip queue failed: Invalid argument
[    62.228] (WW) AMDGPU(0): Page flip failed: Invalid argument
[    62.228] (EE) AMDGPU(0): present flip failed
[    62.229] (WW) AMDGPU(0): flip queue failed: Invalid argument
[    62.229] (WW) AMDGPU(0): Page flip failed: Invalid argument
[    62.229] (EE) AMDGPU(0): present flip failed
[    62.230] (WW) AMDGPU(0): flip queue failed: Invalid argument
[    62.230] (WW) AMDGPU(0): Page flip failed: Invalid argument
[    62.230] (EE) AMDGPU(0): present flip failed
[    62.231] (WW) AMDGPU(0): flip queue failed: Invalid argument
[    62.231] (WW) AMDGPU(0): Page flip failed: Invalid argument
[    62.231] (EE) AMDGPU(0): present flip failed
[    62.232] (WW) AMDGPU(0): flip queue failed: Invalid argument
[    62.232] (WW) AMDGPU(0): Page flip failed: Invalid argument
[    62.232] (EE) AMDGPU(0): present flip failed
[    62.232] (WW) AMDGPU(0): flip queue failed: Invalid argument
[    62.232] (WW) AMDGPU(0): Page flip failed: Invalid argument
[    62.232] (EE) AMDGPU(0): present flip failed
[    62.233] (WW) AMDGPU(0): flip queue failed: Invalid argument
[    62.233] (WW) AMDGPU(0): Page flip failed: Invalid argument
[    62.233] (EE) AMDGPU(0): present flip failed
[    62.234] (WW) AMDGPU(0): flip queue failed: Invalid argument
[    62.234] (WW) AMDGPU(0): Page flip failed: Invalid argument
[    62.234] (EE) AMDGPU(0): present flip failed
[    62.235] (WW) AMDGPU(0): flip queue failed: Invalid argument
[    62.235] (WW) AMDGPU(0): Page flip failed: Invalid argument
[    62.235] (EE) AMDGPU(0): present flip failed
[    62.236] (WW) AMDGPU(0): flip queue failed: Invalid argument
[    62.236] (WW) AMDGPU(0): Page flip failed: Invalid argument
[    62.236] (EE) AMDGPU(0): present flip failed
[    62.237] (WW) AMDGPU(0): flip queue failed: Invalid argument
[    62.237] (WW) AMDGPU(0): Page flip failed: Invalid argument
[    62.237] (EE) AMDGPU(0): present flip failed
[    62.238] (WW) AMDGPU(0): flip queue failed: Invalid argument
[    62.238] (WW) AMDGPU(0): Page flip failed: Invalid argument
[    62.238] (EE) AMDGPU(0): present flip failed
[    62.239] (WW) AMDGPU(0): flip queue failed: Invalid argument
[    62.239] (WW) AMDGPU(0): Page flip failed: Invalid argument
[    62.239] (EE) AMDGPU(0): present flip failed
[    62.240] (WW) AMDGPU(0): flip queue failed: Invalid argument
[    62.240] (WW) AMDGPU(0): Page flip failed: Invalid argument
[    62.240] (EE) AMDGPU(0): present flip failed
[    62.241] (WW) AMDGPU(0): flip queue failed: Invalid argument
[    62.241] (WW) AMDGPU(0): Page flip failed: Invalid argument
[    62.241] (EE) AMDGPU(0): present flip failed
[    62.242] (WW) AMDGPU(0): flip queue failed: Invalid argument
[    62.242] (WW) AMDGPU(0): Page flip failed: Invalid argument
[    62.242] (EE) AMDGPU(0): present flip failed
[    62.242] (WW) AMDGPU(0): flip queue failed: Invalid argument
[    62.243] (WW) AMDGPU(0): Page flip failed: Invalid argument
[    62.243] (EE) AMDGPU(0): present flip failed
[    62.243] (WW) AMDGPU(0): flip queue failed: Invalid argument
[    62.243] (WW) AMDGPU(0): Page flip failed: Invalid argument
[    62.243] (EE) AMDGPU(0): present flip failed
[    62.244] (WW) AMDGPU(0): flip queue failed: Invalid argument
[    62.244] (WW) AMDGPU(0): Page flip failed: Invalid argument
[    62.244] (EE) AMDGPU(0): present flip failed
[    62.245] (WW) AMDGPU(0): flip queue failed: Invalid argument
[    62.245] (WW) AMDGPU(0): Page flip failed: Invalid argument
[    62.245] (EE) AMDGPU(0): present flip failed
[    62.246] (WW) AMDGPU(0): flip queue failed: Invalid argument
[    62.246] (WW) AMDGPU(0): Page flip failed: Invalid argument
[    62.246] (EE) AMDGPU(0): present flip failed
[    62.247] (WW) AMDGPU(0): flip queue failed: Invalid argument
[    62.247] (WW) AMDGPU(0): Page flip failed: Invalid argument
[    62.247] (EE) AMDGPU(0): present flip failed
[    62.248] (WW) AMDGPU(0): flip queue failed: Invalid argument
[    62.248] (WW) AMDGPU(0): Page flip failed: Invalid argument
[    62.248] (EE) AMDGPU(0): present flip failed
[    62.249] (WW) AMDGPU(0): flip queue failed: Invalid argument
[    62.249] (WW) AMDGPU(0): Page flip failed: Invalid argument
[    62.249] (EE) AMDGPU(0): present flip failed
[    62.250] (WW) AMDGPU(0): flip queue failed: Invalid argument
[    62.250] (WW) AMDGPU(0): Page flip failed: Invalid argument
[    62.250] (EE) AMDGPU(0): present flip failed
[    62.251] (WW) AMDGPU(0): flip queue failed: Invalid argument
[    62.251] (WW) AMDGPU(0): Page flip failed: Invalid argument
[    62.251] (EE) AMDGPU(0): present flip failed
[    62.252] (WW) AMDGPU(0): flip queue failed: Invalid argument
[    62.252] (WW) AMDGPU(0): Page flip failed: Invalid argument
[    62.252] (EE) AMDGPU(0): present flip failed
[    62.252] (WW) AMDGPU(0): flip queue failed: Invalid argument
[    62.252] (WW) AMDGPU(0): Page flip failed: Invalid argument
[    62.252] (EE) AMDGPU(0): present flip failed
[    62.253] (WW) AMDGPU(0): flip queue failed: Invalid argument
[    62.253] (WW) AMDGPU(0): Page flip failed: Invalid argument
[    62.253] (EE) AMDGPU(0): present flip failed
[    62.254] (WW) AMDGPU(0): flip queue failed: Invalid argument
[    62.254] (WW) AMDGPU(0): Page flip failed: Invalid argument
[    62.254] (EE) AMDGPU(0): present flip failed
[    62.255] (WW) AMDGPU(0): flip queue failed: Invalid argument
[    62.255] (WW) AMDGPU(0): Page flip failed: Invalid argument
[    62.255] (EE) AMDGPU(0): present flip failed
[    62.256] (WW) AMDGPU(0): flip queue failed: Invalid argument
[    62.256] (WW) AMDGPU(0): Page flip failed: Invalid argument
[    62.256] (EE) AMDGPU(0): present flip failed
[    62.257] (WW) AMDGPU(0): flip queue failed: Invalid argument
[    62.257] (WW) AMDGPU(0): Page flip failed: Invalid argument
[    62.257] (EE) AMDGPU(0): present flip failed
[    62.258] (WW) AMDGPU(0): flip queue failed: Invalid argument
[    62.258] (WW) AMDGPU(0): Page flip failed: Invalid argument
[    62.258] (EE) AMDGPU(0): present flip failed
[    62.259] (WW) AMDGPU(0): flip queue failed: Invalid argument
[    62.259] (WW) AMDGPU(0): Page flip failed: Invalid argument
[    62.259] (EE) AMDGPU(0): present flip failed
[    62.260] (WW) AMDGPU(0): flip queue failed: Invalid argument
[    62.260] (WW) AMDGPU(0): Page flip failed: Invalid argument
[    62.260] (EE) AMDGPU(0): present flip failed
[    62.261] (WW) AMDGPU(0): flip queue failed: Invalid argument
[    62.261] (WW) AMDGPU(0): Page flip failed: Invalid argument
[    62.261] (EE) AMDGPU(0): present flip failed
[    62.262] (WW) AMDGPU(0): flip queue failed: Invalid argument
[    62.262] (WW) AMDGPU(0): Page flip failed: Invalid argument
[    62.262] (EE) AMDGPU(0): present flip failed
[    62.263] (WW) AMDGPU(0): flip queue failed: Invalid argument
[    62.263] (WW) AMDGPU(0): Page flip failed: Invalid argument
[    62.263] (EE) AMDGPU(0): present flip failed
[    62.263] (WW) AMDGPU(0): flip queue failed: Invalid argument
[    62.263] (WW) AMDGPU(0): Page flip failed: Invalid argument
[    62.263] (EE) AMDGPU(0): present flip failed
[    62.264] (WW) AMDGPU(0): flip queue failed: Invalid argument
[    62.264] (WW) AMDGPU(0): Page flip failed: Invalid argument
[    62.264] (EE) AMDGPU(0): present flip failed
[    62.265] (WW) AMDGPU(0): flip queue failed: Invalid argument
[    62.265] (WW) AMDGPU(0): Page flip failed: Invalid argument
[    62.265] (EE) AMDGPU(0): present flip failed
[    62.266] (WW) AMDGPU(0): flip queue failed: Invalid argument
[    62.266] (WW) AMDGPU(0): Page flip failed: Invalid argument
[    62.266] (EE) AMDGPU(0): present flip failed
[    62.267] (WW) AMDGPU(0): flip queue failed: Invalid argument
[    62.267] (WW) AMDGPU(0): Page flip failed: Invalid argument
[    62.267] (EE) AMDGPU(0): present flip failed
[    62.268] (WW) AMDGPU(0): flip queue failed: Invalid argument
[    62.268] (WW) AMDGPU(0): Page flip failed: Invalid argument
[    62.268] (EE) AMDGPU(0): present flip failed
[    62.269] (WW) AMDGPU(0): flip queue failed: Invalid argument
[    62.269] (WW) AMDGPU(0): Page flip failed: Invalid argument
[    62.269] (EE) AMDGPU(0): present flip failed
[    62.270] (WW) AMDGPU(0): flip queue failed: Invalid argument
[    62.270] (WW) AMDGPU(0): Page flip failed: Invalid argument
[    62.270] (EE) AMDGPU(0): present flip failed
[    62.271] (WW) AMDGPU(0): flip queue failed: Invalid argument
[    62.271] (WW) AMDGPU(0): Page flip failed: Invalid argument
[    62.271] (EE) AMDGPU(0): present flip failed
[    62.272] (WW) AMDGPU(0): flip queue failed: Invalid argument
[    62.272] (WW) AMDGPU(0): Page flip failed: Invalid argument
[    62.272] (EE) AMDGPU(0): present flip failed
[    62.273] (WW) AMDGPU(0): flip queue failed: Invalid argument
[    62.273] (WW) AMDGPU(0): Page flip failed: Invalid argument
[    62.273] (EE) AMDGPU(0): present flip failed
[    62.274] (WW) AMDGPU(0): flip queue failed: Invalid argument
[    62.274] (WW) AMDGPU(0): Page flip failed: Invalid argument
[    62.274] (EE) AMDGPU(0): present flip failed
[    62.275] (WW) AMDGPU(0): flip queue failed: Invalid argument
[    62.275] (WW) AMDGPU(0): Page flip failed: Invalid argument
[    62.275] (EE) AMDGPU(0): present flip failed
[    62.275] (WW) AMDGPU(0): flip queue failed: Invalid argument
[    62.275] (WW) AMDGPU(0): Page flip failed: Invalid argument
[    62.275] (EE) AMDGPU(0): present flip failed
[    62.276] (WW) AMDGPU(0): flip queue failed: Invalid argument
[    62.276] (WW) AMDGPU(0): Page flip failed: Invalid argument
[    62.276] (EE) AMDGPU(0): present flip failed
[    62.277] (WW) AMDGPU(0): flip queue failed: Invalid argument
[    62.277] (WW) AMDGPU(0): Page flip failed: Invalid argument
[    62.277] (EE) AMDGPU(0): present flip failed
[    62.278] (WW) AMDGPU(0): flip queue failed: Invalid argument
[    62.278] (WW) AMDGPU(0): Page flip failed: Invalid argument
[    62.278] (EE) AMDGPU(0): present flip failed
[    62.279] (WW) AMDGPU(0): flip queue failed: Invalid argument
[    62.279] (WW) AMDGPU(0): Page flip failed: Invalid argument
[    62.279] (EE) AMDGPU(0): present flip failed
[    62.280] (WW) AMDGPU(0): flip queue failed: Invalid argument
[    62.280] (WW) AMDGPU(0): Page flip failed: Invalid argument
[    62.280] (EE) AMDGPU(0): present flip failed
[    62.281] (WW) AMDGPU(0): flip queue failed: Invalid argument
[    62.281] (WW) AMDGPU(0): Page flip failed: Invalid argument
[    62.281] (EE) AMDGPU(0): present flip failed
[    62.282] (WW) AMDGPU(0): flip queue failed: Invalid argument
[    62.282] (WW) AMDGPU(0): Page flip failed: Invalid argument
[    62.282] (EE) AMDGPU(0): present flip failed
[    62.283] (WW) AMDGPU(0): flip queue failed: Invalid argument
[    62.283] (WW) AMDGPU(0): Page flip failed: Invalid argument
[    62.283] (EE) AMDGPU(0): present flip failed
[    62.284] (WW) AMDGPU(0): flip queue failed: Invalid argument
[    62.284] (WW) AMDGPU(0): Page flip failed: Invalid argument
[    62.284] (EE) AMDGPU(0): present flip failed
[    62.285] (WW) AMDGPU(0): flip queue failed: Invalid argument
[    62.285] (WW) AMDGPU(0): Page flip failed: Invalid argument
[    62.285] (EE) AMDGPU(0): present flip failed
[    62.286] (WW) AMDGPU(0): flip queue failed: Invalid argument
[    62.286] (WW) AMDGPU(0): Page flip failed: Invalid argument
[    62.286] (EE) AMDGPU(0): present flip failed
[    62.287] (WW) AMDGPU(0): flip queue failed: Invalid argument
[    62.287] (WW) AMDGPU(0): Page flip failed: Invalid argument
[    62.287] (EE) AMDGPU(0): present flip failed
[    62.288] (WW) AMDGPU(0): flip queue failed: Invalid argument
[    62.288] (WW) AMDGPU(0): Page flip failed: Invalid argument
[    62.288] (EE) AMDGPU(0): present flip failed
[    62.289] (WW) AMDGPU(0): flip queue failed: Invalid argument
[    62.289] (WW) AMDGPU(0): Page flip failed: Invalid argument
[    62.289] (EE) AMDGPU(0): present flip failed
[    62.290] (WW) AMDGPU(0): flip queue failed: Invalid argument
[    62.290] (WW) AMDGPU(0): Page flip failed: Invalid argument
[    62.290] (EE) AMDGPU(0): present flip failed
[    62.290] (WW) AMDGPU(0): flip queue failed: Invalid argument
[    62.290] (WW) AMDGPU(0): Page flip failed: Invalid argument
[    62.290] (EE) AMDGPU(0): present flip failed
[    62.291] (WW) AMDGPU(0): flip queue failed: Invalid argument
[    62.291] (WW) AMDGPU(0): Page flip failed: Invalid argument
[    62.291] (EE) AMDGPU(0): present flip failed
[    62.292] (WW) AMDGPU(0): flip queue failed: Invalid argument
[    62.292] (WW) AMDGPU(0): Page flip failed: Invalid argument
[    62.292] (EE) AMDGPU(0): present flip failed
[    62.293] (WW) AMDGPU(0): flip queue failed: Invalid argument
[    62.293] (WW) AMDGPU(0): Page flip failed: Invalid argument
[    62.293] (EE) AMDGPU(0): present flip failed
[    62.294] (WW) AMDGPU(0): flip queue failed: Invalid argument
[    62.294] (WW) AMDGPU(0): Page flip failed: Invalid argument
[    62.294] (EE) AMDGPU(0): present flip failed
[    62.295] (WW) AMDGPU(0): flip queue failed: Invalid argument
[    62.295] (WW) AMDGPU(0): Page flip failed: Invalid argument
[    62.295] (EE) AMDGPU(0): present flip failed
[    62.296] (WW) AMDGPU(0): flip queue failed: Invalid argument
[    62.296] (WW) AMDGPU(0): Page flip failed: Invalid argument
[    62.296] (EE) AMDGPU(0): present flip failed
[    62.297] (WW) AMDGPU(0): flip queue failed: Invalid argument
[    62.297] (WW) AMDGPU(0): Page flip failed: Invalid argument
[    62.297] (EE) AMDGPU(0): present flip failed
[    62.298] (WW) AMDGPU(0): flip queue failed: Invalid argument
[    62.298] (WW) AMDGPU(0): Page flip failed: Invalid argument
[    62.298] (EE) AMDGPU(0): present flip failed
[    62.299] (WW) AMDGPU(0): flip queue failed: Invalid argument
[    62.299] (WW) AMDGPU(0): Page flip failed: Invalid argument
[    62.299] (EE) AMDGPU(0): present flip failed
[    62.300] (WW) AMDGPU(0): flip queue failed: Invalid argument
[    62.300] (WW) AMDGPU(0): Page flip failed: Invalid argument
[    62.300] (EE) AMDGPU(0): present flip failed
[    62.300] (WW) AMDGPU(0): flip queue failed: Invalid argument
[    62.300] (WW) AMDGPU(0): Page flip failed: Invalid argument
[    62.300] (EE) AMDGPU(0): present flip failed
[    62.301] (WW) AMDGPU(0): flip queue failed: Invalid argument
[    62.301] (WW) AMDGPU(0): Page flip failed: Invalid argument
[    62.301] (EE) AMDGPU(0): present flip failed
[    62.302] (WW) AMDGPU(0): flip queue failed: Invalid argument
[    62.302] (WW) AMDGPU(0): Page flip failed: Invalid argument
[    62.302] (EE) AMDGPU(0): present flip failed
[    62.303] (WW) AMDGPU(0): flip queue failed: Invalid argument
[    62.303] (WW) AMDGPU(0): Page flip failed: Invalid argument
[    62.303] (EE) AMDGPU(0): present flip failed
[    62.304] (WW) AMDGPU(0): flip queue failed: Invalid argument
[    62.304] (WW) AMDGPU(0): Page flip failed: Invalid argument
[    62.304] (EE) AMDGPU(0): present flip failed
[    62.305] (WW) AMDGPU(0): flip queue failed: Invalid argument
[    62.305] (WW) AMDGPU(0): Page flip failed: Invalid argument
[    62.305] (EE) AMDGPU(0): present flip failed
[    62.306] (WW) AMDGPU(0): flip queue failed: Invalid argument
[    62.306] (WW) AMDGPU(0): Page flip failed: Invalid argument
[    62.306] (EE) AMDGPU(0): present flip failed
[    62.307] (WW) AMDGPU(0): flip queue failed: Invalid argument
[    62.307] (WW) AMDGPU(0): Page flip failed: Invalid argument
[    62.307] (EE) AMDGPU(0): present flip failed
[    62.307] (WW) AMDGPU(0): flip queue failed: Invalid argument
[    62.307] (WW) AMDGPU(0): Page flip failed: Invalid argument
[    62.307] (EE) AMDGPU(0): present flip failed
[    62.308] (WW) AMDGPU(0): flip queue failed: Invalid argument
[    62.308] (WW) AMDGPU(0): Page flip failed: Invalid argument
[    62.308] (EE) AMDGPU(0): present flip failed
[    62.309] (WW) AMDGPU(0): flip queue failed: Invalid argument
[    62.309] (WW) AMDGPU(0): Page flip failed: Invalid argument
[    62.309] (EE) AMDGPU(0): present flip failed
[    62.310] (WW) AMDGPU(0): flip queue failed: Invalid argument
[    62.310] (WW) AMDGPU(0): Page flip failed: Invalid argument
[    62.310] (EE) AMDGPU(0): present flip failed
[    62.311] (WW) AMDGPU(0): flip queue failed: Invalid argument
[    62.311] (WW) AMDGPU(0): Page flip failed: Invalid argument
[    62.311] (EE) AMDGPU(0): present flip failed
[    62.312] (WW) AMDGPU(0): flip queue failed: Invalid argument
[    62.312] (WW) AMDGPU(0): Page flip failed: Invalid argument
[    62.312] (EE) AMDGPU(0): present flip failed
[    62.313] (WW) AMDGPU(0): flip queue failed: Invalid argument
[    62.313] (WW) AMDGPU(0): Page flip failed: Invalid argument
[    62.313] (EE) AMDGPU(0): present flip failed
[    62.314] (WW) AMDGPU(0): flip queue failed: Invalid argument
[    62.314] (WW) AMDGPU(0): Page flip failed: Invalid argument
[    62.314] (EE) AMDGPU(0): present flip failed
[    62.315] (WW) AMDGPU(0): flip queue failed: Invalid argument
[    62.315] (WW) AMDGPU(0): Page flip failed: Invalid argument
[    62.315] (EE) AMDGPU(0): present flip failed
[    62.315] (WW) AMDGPU(0): flip queue failed: Invalid argument
[    62.315] (WW) AMDGPU(0): Page flip failed: Invalid argument
[    62.315] (EE) AMDGPU(0): present flip failed
[    62.316] (WW) AMDGPU(0): flip queue failed: Invalid argument
[    62.316] (WW) AMDGPU(0): Page flip failed: Invalid argument
[    62.316] (EE) AMDGPU(0): present flip failed
[    62.317] (WW) AMDGPU(0): flip queue failed: Invalid argument
[    62.317] (WW) AMDGPU(0): Page flip failed: Invalid argument
[    62.317] (EE) AMDGPU(0): present flip failed
[    62.318] (WW) AMDGPU(0): flip queue failed: Invalid argument
[    62.318] (WW) AMDGPU(0): Page flip failed: Invalid argument
[    62.318] (EE) AMDGPU(0): present flip failed
[    75.781] (**) Option "fd" "28"
[    75.781] (II) event1  - Power Button: device removed
[    75.781] (**) Option "fd" "31"
[    75.781] (II) event2  - Video Bus: device removed
[    75.781] (**) Option "fd" "32"
[    75.781] (II) event0  - Power Button: device removed
[    75.781] (**) Option "fd" "33"
[    75.781] (II) event9  - Razer Razer Basilisk X HyperSpeed: device removed
[    75.782] (**) Option "fd" "34"
[    75.782] (**) Option "fd" "35"
[    75.782] (II) event16 - Razer Razer Basilisk X HyperSpeed: device removed
[    75.782] (**) Option "fd" "36"
[    75.782] (II) event3  - BY Tech Gaming Keyboard: device removed
[    75.782] (**) Option "fd" "37"
[    75.782] (II) event4  - BY Tech Gaming Keyboard System Control: device removed
[    75.782] (**) Option "fd" "38"
[    75.782] (**) Option "fd" "39"
[    75.782] (II) event6  - BY Tech Gaming Keyboard: device removed
[    75.782] (**) Option "fd" "40"
[    75.782] (II) event7  - BY Tech Gaming Keyboard Mouse: device removed
[    75.783] (**) Option "fd" "41"
[    75.783] (II) event10 - GeneralPlus USB Audio Device: device removed
[    75.783] (**) Option "fd" "42"
[    75.783] (II) event8  - PD200X Podcast Microphone: device removed
[    75.783] (**) Option "fd" "34"
[    75.783] (II) event12 - Razer Razer Basilisk X HyperSpeed: device removed
[    75.783] (**) Option "fd" "38"
[    75.783] (II) event5  - BY Tech Gaming Keyboard Consumer Control: device removed
[    75.783] (**) Option "fd" "54"
[    75.783] (II) event25 - XP-Pen Pen: device removed
[    75.783] (**) Option "fd" "56"
[    75.783] (II) event27 - XP-Pen Eraser: device removed
[    75.783] (**) Option "fd" "57"
[    75.783] (**) Option "fd" "57"
[    75.783] (II) event26 - XP-Pen Mouse: device removed
[    75.784] (II) AIGLX: Suspending AIGLX clients for VT switch
[    75.822] (II) systemd-logind: got pause for 13:68
[    75.822] (II) systemd-logind: got pause for 13:89
[    75.822] (II) systemd-logind: got pause for 13:91
[    75.822] (II) systemd-logind: got pause for 13:73
[    75.822] (II) systemd-logind: got pause for 13:72
[    75.822] (II) systemd-logind: got pause for 13:70
[    75.822] (II) systemd-logind: got pause for 13:90
[    75.822] (II) systemd-logind: got pause for 13:74
[    75.822] (II) systemd-logind: got pause for 13:66
[    75.822] (II) systemd-logind: got pause for 13:71
[    75.822] (II) systemd-logind: got pause for 13:69
[    75.822] (II) systemd-logind: got pause for 13:65
[    75.822] (II) systemd-logind: got pause for 13:76
[    75.822] (II) systemd-logind: got pause for 13:67
[    75.822] (II) systemd-logind: got pause for 13:80
[    75.822] (II) systemd-logind: got pause for 13:64
[    83.070] (II) UnloadModule: "libinput"
[    83.070] (II) systemd-logind: not releasing fd for 13:90, still in use
[    83.070] (II) UnloadModule: "libinput"
[    83.070] (II) systemd-logind: releasing fd for 13:90
[    83.217] (II) UnloadModule: "libinput"
[    83.217] (II) systemd-logind: releasing fd for 13:91
[    83.266] (II) UnloadModule: "libinput"
[    83.267] (II) systemd-logind: releasing fd for 13:89
[    83.267] (EE) systemd-logind: failed to release device: Device not taken
[    83.267] (II) UnloadModule: "libinput"
[    83.267] (II) systemd-logind: not releasing fd for 13:69, still in use
[    83.267] (II) UnloadModule: "libinput"
[    83.267] (II) systemd-logind: not releasing fd for 13:76, still in use
[    83.267] (II) UnloadModule: "libinput"
[    83.267] (II) systemd-logind: releasing fd for 13:72
[    83.293] (II) UnloadModule: "libinput"
[    83.293] (II) systemd-logind: releasing fd for 13:74
[    83.317] (II) UnloadModule: "libinput"
[    83.317] (II) systemd-logind: releasing fd for 13:71
[    83.337] (II) UnloadModule: "libinput"
[    83.337] (II) systemd-logind: releasing fd for 13:70
[    83.350] (II) UnloadModule: "libinput"
[    83.350] (II) systemd-logind: releasing fd for 13:69
[    83.380] (II) UnloadModule: "libinput"
[    83.380] (II) systemd-logind: releasing fd for 13:68
[    83.397] (II) UnloadModule: "libinput"
[    83.397] (II) systemd-logind: releasing fd for 13:67
[    83.403] (II) UnloadModule: "libinput"
[    83.403] (II) systemd-logind: releasing fd for 13:80
[    83.437] (II) UnloadModule: "libinput"
[    83.437] (II) systemd-logind: releasing fd for 13:76
[    83.456] (II) UnloadModule: "libinput"
[    83.457] (II) systemd-logind: releasing fd for 13:73
[    83.500] (II) UnloadModule: "libinput"
[    83.500] (II) systemd-logind: releasing fd for 13:64
[    83.530] (II) UnloadModule: "libinput"
[    83.530] (II) systemd-logind: releasing fd for 13:66
[    83.585] (II) UnloadModule: "libinput"
[    83.585] (II) systemd-logind: releasing fd for 13:65
[    83.639] (WW) xf86CloseConsole: KDSETMODE failed: Input/output error
[    83.639] (WW) xf86CloseConsole: VT_GETMODE failed: Input/output error
[    83.641] (II) Server terminated successfully (0). Closing log file.

Last edited by who sam (2024-12-03 05:27:34)

Offline

#2 2024-12-01 19:33:44

seth
Member
Registered: 2012-09-03
Posts: 59,882

Re: [SOLVED] any xorg related wm not working

[    53.126] (==) Log file: "/home/hossam/.local/share/xorg/Xorg.0.log", Time: Sun Dec  1 18:13:33 2024
…
[    58.416] (WW) AMDGPU(0): flip queue failed: Invalid argument
[    58.416] (WW) AMDGPU(0): Page flip failed: Invalid argument

1. probably remove xf86-video-amdgpu
2. https://bbs.archlinux.org/viewtopic.php … 4#p2210504

Offline

#3 2024-12-01 20:46:43

who sam
Member
Registered: 2024-12-01
Posts: 8

Re: [SOLVED] any xorg related wm not working

seth wrote:

1. probably remove xf86-video-amdgpu

should i delete or comment the 10-amdgpu.conf file and uncomment the 10-modesetting.conf
too or it wouldn't affect ?

Last edited by who sam (2024-12-01 20:48:29)

Offline

#4 2024-12-01 21:03:02

seth
Member
Registered: 2012-09-03
Posts: 59,882

Re: [SOLVED] any xorg related wm not working

Yes. Actually that's probably sufficient to switch the driver but first try to disable PSR.

Offline

#5 2024-12-01 21:49:49

who sam
Member
Registered: 2024-12-01
Posts: 8

Re: [SOLVED] any xorg related wm not working

i have
- removed the xf86-video-amdgpu package
- updated the 10-modesetting.conf content to

Section "Device"
    Identifier "modesetting"
    Driver "modesetting"
EndSection

- updated the content of 10-amdgpu.conf to :

# Section "Device"
#     Identifier "AMD"
#     Driver "amdgpu"
#     BusID "PCI:6:0:0"  # Replace with your correct BusID from lspci
#     # Option "PrimaryGPU" "true"
# EndSection

nothing happened
when i try to login into qtile or gnome sessionsit send me back to the login manager


when i startx in a tty sesion
i get

X.Org X Server 1.21.1.14
X Protocol Version 11, Revision 0
Current Operating System: Linux arch 6.12.1-arch1-1 #1 SMP PREEMPT_DYNAMIC Fri, 22 Nov 2024 16:04:27 +0000 x86_64
Kernel command line: BOOT_IMAGE=/boot/vmlinuz-linux root=UUID=610dcefc-3605-4aee-b9a6-dff658b1a422 rw loglevel=3 quiet
 
Current version of pixman: 0.44.0
	Before reporting problems, check http://wiki.x.org
	to make sure that you have the latest version.
Markers: (--) probed, (**) from config file, (==) default setting,
	(++) from command line, (!!) notice, (II) informational,
	(WW) warning, (EE) error, (NI) not implemented, (??) unknown.
(==) Log file: "/home/hossam/.local/share/xorg/Xorg.1.log", Time: Sun Dec  1 23:31:23 2024
(==) Using config directory: "/etc/X11/xorg.conf.d"
(==) Using system config directory "/usr/share/X11/xorg.conf.d"
xinit: connection to X server lost

waiting for X server to shut down (II) Server terminated successfully (0). Closing log file.

------------------------

-> cat ~/.local/share/xorg/Xorg.0.log | grep -E "(EE|WW|Fatal)"


[    24.810] Current Operating System: Linux arch 6.12.1-arch1-1 #1 SMP PREEMPT_DYNAMIC Fri, 22 Nov 2024 16:04:27 +0000 x86_64
	(WW) warning, (EE) error, (NI) not implemented, (??) unknown.
[    24.826] (WW) VGA arbiter: cannot open kernel arbiter, no multi-card support
[    25.096] (II) Initializing extension MIT-SCREEN-SAVER

Offline

#6 2024-12-01 21:51:21

seth
Member
Registered: 2012-09-03
Posts: 59,882

Re: [SOLVED] any xorg related wm not working

seth wrote:

first try to disable PSR.

Offline

#7 2024-12-01 21:53:48

who sam
Member
Registered: 2024-12-01
Posts: 8

Re: [SOLVED] any xorg related wm not working

seth wrote:

first try to disable PSR.

i added this line to /etc/default/grub

GRUB_CMDLINE_LINUX_DEFAULT="quiet splash amdgpu.dc=0"

will it do the job ?

Offline

#8 2024-12-01 21:59:58

seth
Member
Registered: 2012-09-03
Posts: 59,882

Re: [SOLVED] any xorg related wm not working

No.

The thread linked in #2 wrote:

"amdgpu.dcdebugmask=0x10"

Edit: and editing /etc/default/grub does nothing in and by itself, you still need to run grub-mkconfig to apply it, but you can also just test teh parameter w/ the interactive commandline editor in the grub menu (select the entry and press "e")

Last edited by seth (2024-12-01 22:01:08)

Offline

#9 2024-12-01 22:12:26

who sam
Member
Registered: 2024-12-01
Posts: 8

Re: [SOLVED] any xorg related wm not working

i have updated the content of /etc/default/grub

# GRUB boot loader configuration

GRUB_DEFAULT=0
GRUB_TIMEOUT=5
GRUB_DISTRIBUTOR="Arch"
GRUB_CMDLINE_LINUX_DEFAULT="loglevel=3 quiet"
GRUB_CMDLINE_LINUX=""
GRUB_PRELOAD_MODULES="part_gpt part_msdos memtest86+"
GRUB_TIMEOUT_STYLE=menu
GRUB_TERMINAL_INPUT=console
GRUB_GFXMODE=auto
GRUB_GFXPAYLOAD_LINUX=keep
GRUB_DISABLE_RECOVERY=true
GRUB_CMDLINE_LINUX_DEFAULT="quiet splash amdgpu.dcdebugmask=0x10"

then "sudo grub-mkconfig -o /boot/grub/grub.cfg"
then rebooted

still the same behavior

Offline

#10 2024-12-01 22:18:58

seth
Member
Registered: 2012-09-03
Posts: 59,882

Re: [SOLVED] any xorg related wm not working

You've two GRUB_CMDLINE_LINUX_DEFAULT lines in there…

cat /proc/cmdline

Offline

#11 2024-12-01 22:23:57

who sam
Member
Registered: 2024-12-01
Posts: 8

Re: [SOLVED] any xorg related wm not working

seth wrote:

You've two GRUB_CMDLINE_LINUX_DEFAULT lines in there…

cat /proc/cmdline
-> cat /proc/cmdline

BOOT_IMAGE=/boot/vmlinuz-linux root=UUID=610dcefc-3605-4aee-b9a6-dff658b1a422 rw quiet splash amdgpu.dcdebugmask=0x10

Offline

#12 2024-12-01 22:28:45

seth
Member
Registered: 2012-09-03
Posts: 59,882

Re: [SOLVED] any xorg related wm not working

Ok, parameter is there.
Please post an updated Xorg log, https://wiki.archlinux.org/title/Xorg#General and your complete system journal for the boot:

sudo journalctl -b | curl -F 'file=@-' 0x0.st

Offline

#13 2024-12-01 22:35:17

who sam
Member
Registered: 2024-12-01
Posts: 8

Re: [SOLVED] any xorg related wm not working

seth wrote:
sudo journalctl -b | curl -F 'file=@-' 0x0.st

fist time to see this command ,very nice smile

https://0x0.st/X7s0.txt

Offline

#14 2024-12-01 22:48:40

seth
Member
Registered: 2012-09-03
Posts: 59,882

Re: [SOLVED] any xorg related wm not working

So you're not using xinitrc, but start using GDM and qtile flat out crashes:

Dec 02 00:05:34 arch systemd-coredump[1431]: Process 1368 (qtile) of user 1000 dumped core.
                                             
                                             Stack trace of thread 1368:
                                             #0  0x00007786ccebc2bb n/a (libc.so.6 + 0xad2bb)
                                             #1  0x00007786cce99c6d _IO_file_fopen (libc.so.6 + 0x8ac6d)
                                             #2  0x00007786cce8dea8 n/a (libc.so.6 + 0x7eea8)
                                             #3  0x00007786cb99b559 n/a (libxcb-cursor.so.0 + 0x2559)
                                             #4  0x00007786cb99b82a n/a (libxcb-cursor.so.0 + 0x282a)
                                             #5  0x00007786cb99b975 n/a (libxcb-cursor.so.0 + 0x2975)
                                             #6  0x00007786cb99b975 n/a (libxcb-cursor.so.0 + 0x2975)
                                             #7  0x00007786cb99b975 n/a (libxcb-cursor.so.0 + 0x2975)
                                             #8  0x00007786cb99b975 n/a (libxcb-cursor.so.0 + 0x2975)
                                             #9  0x00007786cb99b975 n/a (libxcb-cursor.so.0 + 0x2975)
                                             #10 0x00007786cb99b975 n/a (libxcb-cursor.so.0 + 0x2975)
                                             #11 0x00007786cb99b975 n/a (libxcb-cursor.so.0 + 0x2975)
                                             #12 0x00007786cb99b975 n/a (libxcb-cursor.so.0 + 0x2975)

and from the recursive backtrace I blame the cursor theme - b/c of GDM most likela Adwaita.
=> Switch to one of https://archlinux.org/packages/?q=dmz (they're Adwaita, just not deliberately broken)
https://wiki.archlinux.org/title/Cursor_themes

You should be able to fix other themes using https://bbs.archlinux.org/viewtopic.php … 1#p2082761

Offline

#15 2024-12-03 04:26:01

who sam
Member
Registered: 2024-12-01
Posts: 8

Re: [SOLVED] any xorg related wm not working

seth wrote:

and from the recursive backtrace I blame the cursor theme

i don't know what to say , thak u very much
it worked
when i changed the cursor to dmz q tile opened normally



seth wrote:

So you're not using xinitrc, but start using GDM and qtile flat out crashes

would this be a problem or cuz trouble for me ?

Offline

#16 2024-12-03 04:50:16

seth
Member
Registered: 2012-09-03
Posts: 59,882

Re: [SOLVED] any xorg related wm not working

would this be a problem or cuz trouble for me ?

It would just mean that your xinitrc is irrelevant unless you're maybe using https://wiki.archlinux.org/title/Displa … _a_session

Please always remember to mark resolved threads by editing your initial posts subject - so others will know that there's no task left, but maybe a solution to find.
Thanks.

Offline

Board footer

Powered by FluxBB