You are not logged in.
Hey, I'm trying to figure it out how to properly configure xorg.conf (/etc/X11/xorg.conf) but I'm having issues with position of monitors: the lelft monitor behaves like the right monitor == to go to the left monitor I have to go with the mouse to the right and vice-versa ...
I created the default xorg.conf with
nvidia-xconfig and start adding things to try to resolve the issue, but so far nothing.
Note: I can resolve the issue with
xrandr --output DP-0 --primary --auto --output HDMI-0 --auto --left-of DP-0 but I'm trying to fix the issue in xorg.conf.
Can someone please help me out? Some output for more info:
Note : Relative positions (LeftOf) was what I first tried, but didn't work.
/etc/X11/xorg.conf :
# nvidia-xconfig: X configuration file generated by nvidia-xconfig
# nvidia-xconfig: version 470.63.01
Section "Files"
EndSection
Section "InputDevice"
# generated from default
Identifier "Keyboard0"
Driver "kbd"
Option "XkbLayout" "pt"
EndSection
Section "Device"
Identifier "Device0"
Driver "nvidia"
BusID "PCI:6:0:0"
VendorName "NVIDIA Corporation"
EndSection
Section "Monitor"
Identifier "DVI-D-0"
Option "Ignore" "true"
EndSection
Section "Monitor"
Identifier "DP-1"
Option "Ignore" "true"
EndSection
Section "Monitor"
Identifier "HDMI-0"
VendorName "LG"
ModelName "Unknown"
Option "DPMS"
Option "PreferredMode" "1920x1080"
Option "Position" "0 0"
EndSection
Section "Monitor"
Identifier "DP-0"
VendorName "Asus"
ModelName "Unknown"
Option "DPMS"
Option "Primary" "true"
Option "PreferredMode" "1920x1080"
Option "Position" "1920 0"
EndSection
Section "Screen"
Identifier "Screen0"
Device "Device0"
Monitor "DP-0"
DefaultDepth 24
SubSection "Display"
Depth 24
Virtual 3840 1080
EndSubSection
EndSection
Section "ServerLayout"
Identifier "Layout0"
Screen 0 "Screen0"
InputDevice "Keyboard0" "CoreKeyboard"
InputDevice "Mouse0" "CorePointer"
EndSection xrandr -q :
HDMI-0 connected 1920x1080+1920+0 (normal left inverted right x axis y axis) 480mm x 270mm
1920x1080 60.00*+ 74.97 59.94 50.00
1680x1050 59.95
1600x900 60.00
1440x900 59.89
1400x1050 59.98
1280x1024 75.02 60.02
1280x800 59.81
1280x720 60.00 59.94 50.00
1152x864 75.00
1024x768 75.03 60.00
800x600 75.00 60.32
720x576 50.00
720x480 59.94
640x480 75.00 59.94 59.93
DP-0 connected primary 1920x1080+0+0 (normal left inverted right x axis y axis) 531mm x 299mm
1920x1080 119.98*+ 164.92 144.00 99.93 84.90 60.00 59.94 50.00
1680x1050 59.95
1440x900 59.89
1280x1024 75.02 60.02
1280x960 60.00
1280x800 59.81
1280x720 60.00 59.94 50.00
1152x864 75.00
1024x768 75.03 70.07 60.00
800x600 75.00 72.19 60.32 56.25
720x576 50.00
720x480 59.94
640x480 75.00 59.94 59.93 result of xrandr -q after I do the xrandr command to fix it :
HDMI-0 connected 1920x1080+0+0 (normal left inverted right x axis y axis) 480mm x 270mm
1920x1080 60.00*+ 74.97 59.94 50.00
1680x1050 59.95
1600x900 60.00
1440x900 59.89
1400x1050 59.98
1280x1024 75.02 60.02
1280x800 59.81
1280x720 60.00 59.94 50.00
1152x864 75.00
1024x768 75.03 60.00
800x600 75.00 60.32
720x576 50.00
720x480 59.94
640x480 75.00 59.94 59.93
DP-0 connected primary 1920x1080+1920+0 (normal left inverted right x axis y axis) 531mm x 299mm
1920x1080 119.98*+ 164.92 144.00 99.93 84.90 60.00 59.94 50.00
1680x1050 59.95
1440x900 59.89
1280x1024 75.02 60.02
1280x960 60.00
1280x800 59.81
1280x720 60.00 59.94 50.00
1152x864 75.00
1024x768 75.03 70.07 60.00
800x600 75.00 72.19 60.32 56.25
720x576 50.00
720x480 59.94
640x480 75.00 59.94 59.93 If someone needs more info, please let me now. Thanks.
Last edited by DF32 (2021-09-12 23:16:17)
Offline
I created the default xorg.conf with
Remove that again - the better approach is to use a configlet like in https://wiki.archlinux.org/title/Multih … _xorg.conf
That being said, the config still should™ work so chances are that the configuration is killed by your DM or desktop session… which are what specifically?
Online
Remove that again - the better approach is to use a configlet
I removed xorg.conf and added this files to xorg.conf.d but it still didn't work:
10-monitor.conf
Section "Monitor"
Identifier "DVI-D-0"
Option "Ignore" "true"
EndSection
Section "Monitor"
Identifier "DP-1"
Option "Ignore" "true"
EndSection
Section "Monitor"
Identifier "HDMI-0"
VendorName "Unknown"
ModelName "Unknown"
Option "DPMS"
Option "PreferredMode" "1920x1080"
#Option "Position" "0 0"
Option "LeftOf" "DP-0"
EndSection
Section "Monitor"
Identifier "DP-0"
VendorName "Unknown"
ModelName "Unknown"
Option "DPMS"
Option "Primary" "true"
Option "PreferredMode" "1920x1080"
#Option "Position" "1920 0"
Option "RightOf" "HDMI-0"
EndSection
Section "Screen"
Identifier "Screen0"
Device "nvidia"
Monitor "DP-0"
DefaultDepth 24
SubSection "Display"
Depth 24
Virtual 3840 1080
EndSubSection
EndSection 20-nvidia.conf
Section "Device"
Identifier "nvidia"
Driver "nvidia"
BusID "PCI:6:0:0"
VendorName "NVIDIA Corporation"
EndSection That being said, the config still should™ work so chances are that the configuration is killed by your DM or desktop session… which are what specifically?
I'm using i3. No login manager or DE
Offline
You still got an entire screen definition w/ explicit output reference going on there.
You only need
Section "Monitor"
Identifier "HDMI-0"
Option "LeftOf" "DP-0"
EndSection
Section "Monitor"
Identifier "DP-0"
Option "Primary" "true"
Option "RightOf" "HDMI-0"
EndSection(and even the "HDMI-0" monitor isn't strictly required)
Do you use startx/xinit?
Please post your xinitrc and your xorg log.
Online
Not working still:
10-monitor.conf:
Section "Monitor"
Identifier "HDMI-0"
Option "LeftOf" "DP-0"
EndSection
Section "Monitor"
Identifier "DP-0"
Option "Primary" "true"
Option "RightOf" "HDMI-0"
EndSection
Section "Screen"
Identifier "Screen0"
Device "nvidia"
Monitor "DP-0"
DefaultDepth 24
SubSection "Display"
Depth 24
Virtual 3840 1080
EndSubSection
EndSection 20-nvidia.conf.conf:
Section "Device"
Identifier "nvidia"
Driver "nvidia"
BusID "PCI:6:0:0"
VendorName "NVIDIA Corporation"
EndSection Xorg log:
[ 12.381] (WW) Failed to open protocol names file lib/xorg/protocol.txt
[ 12.381]
X.Org X Server 1.20.13
X Protocol Version 11, Revision 0
[ 12.381] Build Operating System: Linux Archlinux
[ 12.381] Current Operating System: Linux Head0nArch 5.14.2-arch1-2 #1 SMP PREEMPT Thu, 09 Sep 2021 09:42:35 +0000 x86_64
[ 12.381] Kernel command line: BOOT_IMAGE=/boot/vmlinuz-linux root=UUID=f9af81f0-a961-4189-9e62-a759182cc746 rw loglevel=3 quiet
[ 12.381] Build Date: 04 August 2021 08:13:54AM
[ 12.381]
[ 12.381] Current version of pixman: 0.40.0
[ 12.381] Before reporting problems, check http://wiki.x.org
to make sure that you have the latest version.
[ 12.381] Markers: (--) probed, (**) from config file, (==) default setting,
(++) from command line, (!!) notice, (II) informational,
(WW) warning, (EE) error, (NI) not implemented, (??) unknown.
[ 12.381] (==) Log file: "/var/log/Xorg.0.log", Time: Sat Sep 11 22:28:50 2021
[ 12.383] (==) Using config directory: "/etc/X11/xorg.conf.d"
[ 12.383] (==) Using system config directory "/usr/share/X11/xorg.conf.d"
[ 12.383] (==) No Layout section. Using the first Screen section.
[ 12.383] (**) |-->Screen "Screen0" (0)
[ 12.383] (**) | |-->Monitor "DP-0"
[ 12.383] (**) | |-->Device "nvidia"
[ 12.383] (==) Automatically adding devices
[ 12.383] (==) Automatically enabling devices
[ 12.383] (==) Automatically adding GPU devices
[ 12.383] (==) Automatically binding GPU devices
[ 12.383] (==) Max clients allowed: 256, resource mask: 0x1fffff
[ 12.383] (WW) The directory "/usr/share/fonts/misc" does not exist.
[ 12.383] Entry deleted from font path.
[ 12.383] (WW) The directory "/usr/share/fonts/TTF" does not exist.
[ 12.383] Entry deleted from font path.
[ 12.383] (WW) The directory "/usr/share/fonts/OTF" does not exist.
[ 12.383] Entry deleted from font path.
[ 12.383] (WW) The directory "/usr/share/fonts/Type1" does not exist.
[ 12.383] Entry deleted from font path.
[ 12.385] (==) FontPath set to:
/usr/share/fonts/100dpi,
/usr/share/fonts/75dpi
[ 12.385] (==) ModulePath set to "/usr/lib/xorg/modules"
[ 12.385] (II) The server relies on udev to provide the list of input devices.
If no devices become available, reconfigure udev or disable AutoAddDevices.
[ 12.385] (II) Module ABI versions:
[ 12.385] X.Org ANSI C Emulation: 0.4
[ 12.385] X.Org Video Driver: 24.1
[ 12.385] X.Org XInput driver : 24.1
[ 12.385] X.Org Server Extension : 10.0
[ 12.385] (++) using VT number 1
[ 12.385] (II) systemd-logind: took control of session /org/freedesktop/login1/session/_31
[ 12.385] (II) xfree86: Adding drm device (/dev/dri/card0)
[ 12.385] (II) systemd-logind: got fd for /dev/dri/card0 226:0 fd 10 paused 0
[ 12.386] (**) OutputClass "nvidia" ModulePath extended to "/usr/lib/nvidia/xorg,/usr/lib/xorg/modules,/usr/lib/xorg/modules"
[ 12.387] (--) PCI:*(6@0:0:0) 10de:2184:1043:86bb rev 161, Mem @ 0xfb000000/16777216, 0xd0000000/268435456, 0xe0000000/33554432, I/O @ 0x0000f000/128, BIOS @ 0x????????/524288
[ 12.387] (WW) Open ACPI failed (/var/run/acpid.socket) (No such file or directory)
[ 12.387] (II) LoadModule: "glx"
[ 12.388] (II) Loading /usr/lib/xorg/modules/extensions/libglx.so
[ 12.391] (II) Module glx: vendor="X.Org Foundation"
[ 12.391] compiled for 1.20.13, module version = 1.0.0
[ 12.391] ABI class: X.Org Server Extension, version 10.0
[ 12.391] (II) LoadModule: "nvidia"
[ 12.391] (II) Loading /usr/lib/xorg/modules/drivers/nvidia_drv.so
[ 12.393] (II) Module nvidia: vendor="NVIDIA Corporation"
[ 12.393] compiled for 1.6.99.901, module version = 1.0.0
[ 12.393] Module class: X.Org Video Driver
[ 12.393] (II) NVIDIA dlloader X Driver 470.63.01 Tue Aug 3 20:37:27 UTC 2021
[ 12.393] (II) NVIDIA Unified Driver for all Supported NVIDIA GPUs
[ 12.393] (II) systemd-logind: releasing fd for 226:0
[ 12.394] (II) Loading sub module "fb"
[ 12.394] (II) LoadModule: "fb"
[ 12.394] (II) Loading /usr/lib/xorg/modules/libfb.so
[ 12.394] (II) Module fb: vendor="X.Org Foundation"
[ 12.394] compiled for 1.20.13, module version = 1.0.0
[ 12.394] ABI class: X.Org ANSI C Emulation, version 0.4
[ 12.394] (II) Loading sub module "wfb"
[ 12.394] (II) LoadModule: "wfb"
[ 12.394] (II) Loading /usr/lib/xorg/modules/libwfb.so
[ 12.395] (II) Module wfb: vendor="X.Org Foundation"
[ 12.395] compiled for 1.20.13, module version = 1.0.0
[ 12.395] ABI class: X.Org ANSI C Emulation, version 0.4
[ 12.395] (II) Loading sub module "ramdac"
[ 12.395] (II) LoadModule: "ramdac"
[ 12.395] (II) Module "ramdac" already built-in
[ 12.396] (**) NVIDIA(0): Depth 24, (--) framebuffer bpp 32
[ 12.396] (==) NVIDIA(0): RGB weight 888
[ 12.396] (==) NVIDIA(0): Default visual is TrueColor
[ 12.396] (==) NVIDIA(0): Using gamma correction (1.0, 1.0, 1.0)
[ 12.396] (II) Applying OutputClass "nvidia" options to /dev/dri/card0
[ 12.396] (**) NVIDIA(0): Option "AllowEmptyInitialConfiguration"
[ 12.396] (**) NVIDIA(0): Enabling 2D acceleration
[ 12.396] (II) Loading sub module "glxserver_nvidia"
[ 12.396] (II) LoadModule: "glxserver_nvidia"
[ 12.396] (II) Loading /usr/lib/nvidia/xorg/libglxserver_nvidia.so
[ 12.414] (II) Module glxserver_nvidia: vendor="NVIDIA Corporation"
[ 12.414] compiled for 1.6.99.901, module version = 1.0.0
[ 12.414] Module class: X.Org Server Extension
[ 12.414] (II) NVIDIA GLX Module 470.63.01 Tue Aug 3 20:35:52 UTC 2021
[ 12.415] (II) NVIDIA: The X server supports PRIME Render Offload.
[ 13.262] (--) NVIDIA(0): Valid display device(s) on GPU-0 at PCI:6:0:0
[ 13.262] (--) NVIDIA(0): DFP-0
[ 13.262] (--) NVIDIA(0): DFP-1
[ 13.262] (--) NVIDIA(0): DFP-2 (boot)
[ 13.262] (--) NVIDIA(0): DFP-3
[ 13.262] (II) NVIDIA(0): NVIDIA GPU NVIDIA GeForce GTX 1660 (TU116-A) at PCI:6:0:0
[ 13.262] (II) NVIDIA(0): (GPU-0)
[ 13.262] (--) NVIDIA(0): Memory: 6291456 kBytes
[ 13.262] (--) NVIDIA(0): VideoBIOS: 90.16.25.00.7a
[ 13.262] (II) NVIDIA(0): Detected PCI Express Link width: 16X
[ 13.262] (--) NVIDIA(GPU-0): DFP-0: disconnected
[ 13.262] (--) NVIDIA(GPU-0): DFP-0: Internal TMDS
[ 13.262] (--) NVIDIA(GPU-0): DFP-0: 330.0 MHz maximum pixel clock
[ 13.262] (--) NVIDIA(GPU-0):
[ 13.306] (--) NVIDIA(GPU-0): LG Electronics BL650 (DFP-1): connected
[ 13.306] (--) NVIDIA(GPU-0): LG Electronics BL650 (DFP-1): Internal TMDS
[ 13.306] (--) NVIDIA(GPU-0): LG Electronics BL650 (DFP-1): 600.0 MHz maximum pixel clock
[ 13.306] (--) NVIDIA(GPU-0):
[ 13.306] (--) NVIDIA(GPU-0): AUS VG248 (DFP-2): connected
[ 13.306] (--) NVIDIA(GPU-0): AUS VG248 (DFP-2): Internal DisplayPort
[ 13.306] (--) NVIDIA(GPU-0): AUS VG248 (DFP-2): 2660.0 MHz maximum pixel clock
[ 13.306] (--) NVIDIA(GPU-0):
[ 13.309] (--) NVIDIA(GPU-0): DFP-3: disconnected
[ 13.309] (--) NVIDIA(GPU-0): DFP-3: Internal TMDS
[ 13.309] (--) NVIDIA(GPU-0): DFP-3: 165.0 MHz maximum pixel clock
[ 13.309] (--) NVIDIA(GPU-0):
[ 13.309] (**) NVIDIA(0): Option "Primary" "true"
[ 13.401] (==) NVIDIA(0):
[ 13.401] (==) NVIDIA(0): No modes were requested; the default mode "nvidia-auto-select"
[ 13.401] (==) NVIDIA(0): will be used as the requested mode.
[ 13.401] (==) NVIDIA(0):
[ 13.402] (II) NVIDIA(0): Validated MetaModes:
[ 13.402] (II) NVIDIA(0): "DFP-2:nvidia-auto-select,DFP-1:nvidia-auto-select"
[ 13.402] (**) NVIDIA(0): Virtual screen size configured to be 3840 x 1080
[ 13.453] (--) NVIDIA(0): DPI set to (92, 91); computed from "UseEdidDpi" X config
[ 13.453] (--) NVIDIA(0): option
[ 13.454] (II) NVIDIA: Reserving 24576.00 MB of virtual memory for indirect memory
[ 13.454] (II) NVIDIA: access.
[ 13.456] (II) NVIDIA(0): ACPI: failed to connect to the ACPI event daemon; the daemon
[ 13.456] (II) NVIDIA(0): may not be running or the "AcpidSocketPath" X
[ 13.456] (II) NVIDIA(0): configuration option may not be set correctly. When the
[ 13.456] (II) NVIDIA(0): ACPI event daemon is available, the NVIDIA X driver will
[ 13.456] (II) NVIDIA(0): try to use it to receive ACPI event notifications. For
[ 13.456] (II) NVIDIA(0): details, please see the "ConnectToAcpid" and
[ 13.456] (II) NVIDIA(0): "AcpidSocketPath" X configuration options in Appendix B: X
[ 13.456] (II) NVIDIA(0): Config Options in the README.
[ 13.469] (II) NVIDIA(0): Setting mode "DFP-2:nvidia-auto-select,DFP-1:nvidia-auto-select"
[ 13.566] (==) NVIDIA(0): Disabling shared memory pixmaps
[ 13.566] (==) NVIDIA(0): Backing store enabled
[ 13.566] (==) NVIDIA(0): Silken mouse disabled
[ 13.566] (==) NVIDIA(0): DPMS enabled
[ 13.566] (WW) NVIDIA(0): Option "Primary" is not used
[ 13.566] (WW) NVIDIA(0): Option "RightOf" is not used
[ 13.566] (II) Loading sub module "dri2"
[ 13.566] (II) LoadModule: "dri2"
[ 13.566] (II) Module "dri2" already built-in
[ 13.566] (II) NVIDIA(0): [DRI2] Setup complete
[ 13.566] (II) NVIDIA(0): [DRI2] VDPAU driver: nvidia
[ 13.567] (II) Initializing extension Generic Event Extension
[ 13.567] (II) Initializing extension SHAPE
[ 13.567] (II) Initializing extension MIT-SHM
[ 13.567] (II) Initializing extension XInputExtension
[ 13.567] (II) Initializing extension XTEST
[ 13.567] (II) Initializing extension BIG-REQUESTS
[ 13.567] (II) Initializing extension SYNC
[ 13.567] (II) Initializing extension XKEYBOARD
[ 13.567] (II) Initializing extension XC-MISC
[ 13.567] (II) Initializing extension SECURITY
[ 13.567] (II) Initializing extension XFIXES
[ 13.567] (II) Initializing extension RENDER
[ 13.567] (II) Initializing extension RANDR
[ 13.567] (II) Initializing extension COMPOSITE
[ 13.567] (II) Initializing extension DAMAGE
[ 13.567] (II) Initializing extension MIT-SCREEN-SAVER
[ 13.567] (II) Initializing extension DOUBLE-BUFFER
[ 13.567] (II) Initializing extension RECORD
[ 13.567] (II) Initializing extension DPMS
[ 13.567] (II) Initializing extension Present
[ 13.567] (II) Initializing extension DRI3
[ 13.567] (II) Initializing extension X-Resource
[ 13.567] (II) Initializing extension XVideo
[ 13.567] (II) Initializing extension XVideo-MotionCompensation
[ 13.567] (II) Initializing extension GLX
[ 13.567] (II) Initializing extension GLX
[ 13.567] (II) Indirect GLX disabled.
[ 13.567] (II) GLX: Another vendor is already registered for screen 0
[ 13.567] (II) Initializing extension XFree86-VidModeExtension
[ 13.567] (II) Initializing extension XFree86-DGA
[ 13.567] (II) Initializing extension XFree86-DRI
[ 13.567] (II) Initializing extension DRI2
[ 13.567] (II) Initializing extension NV-GLX
[ 13.567] (II) Initializing extension NV-CONTROL
[ 13.567] (II) Initializing extension XINERAMA
[ 13.608] (II) config/udev: Adding input device Power Button (/dev/input/event1)
[ 13.608] (**) Power Button: Applying InputClass "libinput keyboard catchall"
[ 13.608] (**) Power Button: Applying InputClass "system-keyboard"
[ 13.608] (II) LoadModule: "libinput"
[ 13.608] (II) Loading /usr/lib/xorg/modules/input/libinput_drv.so
[ 13.610] (II) Module libinput: vendor="X.Org Foundation"
[ 13.610] compiled for 1.20.11, module version = 1.1.0
[ 13.610] Module class: X.Org XInput Driver
[ 13.610] ABI class: X.Org XInput driver, version 24.1
[ 13.610] (II) Using input driver 'libinput' for 'Power Button'
[ 13.610] (II) systemd-logind: got fd for /dev/input/event1 13:65 fd 33 paused 0
[ 13.610] (**) Power Button: always reports core events
[ 13.610] (**) Option "Device" "/dev/input/event1"
[ 13.610] (**) Option "_source" "server/udev"
[ 13.612] (II) event1 - Power Button: is tagged by udev as: Keyboard
[ 13.612] (II) event1 - Power Button: device is a keyboard
[ 13.613] (II) event1 - Power Button: device removed
[ 13.613] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/LNXPWRBN:00/input/input1/event1"
[ 13.613] (II) XINPUT: Adding extended input device "Power Button" (type: KEYBOARD, id 6)
[ 13.613] (**) Option "xkb_layout" "pt"
[ 13.620] (II) event1 - Power Button: is tagged by udev as: Keyboard
[ 13.620] (II) event1 - Power Button: device is a keyboard
[ 13.620] (II) config/udev: Adding input device Power Button (/dev/input/event0)
[ 13.620] (**) Power Button: Applying InputClass "libinput keyboard catchall"
[ 13.620] (**) Power Button: Applying InputClass "system-keyboard"
[ 13.620] (II) Using input driver 'libinput' for 'Power Button'
[ 13.621] (II) systemd-logind: got fd for /dev/input/event0 13:64 fd 36 paused 0
[ 13.621] (**) Power Button: always reports core events
[ 13.621] (**) Option "Device" "/dev/input/event0"
[ 13.621] (**) Option "_source" "server/udev"
[ 13.621] (II) event0 - Power Button: is tagged by udev as: Keyboard
[ 13.621] (II) event0 - Power Button: device is a keyboard
[ 13.621] (II) event0 - Power Button: device removed
[ 13.621] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input0/event0"
[ 13.621] (II) XINPUT: Adding extended input device "Power Button" (type: KEYBOARD, id 7)
[ 13.621] (**) Option "xkb_layout" "pt"
[ 13.621] (II) event0 - Power Button: is tagged by udev as: Keyboard
[ 13.621] (II) event0 - Power Button: device is a keyboard
[ 13.622] (II) config/udev: Adding input device Razer Razer Basilisk (/dev/input/event19)
[ 13.622] (**) Razer Razer Basilisk: Applying InputClass "libinput pointer catchall"
[ 13.622] (II) Using input driver 'libinput' for 'Razer Razer Basilisk'
[ 13.677] (II) systemd-logind: got fd for /dev/input/event19 13:83 fd 37 paused 0
[ 13.677] (**) Razer Razer Basilisk: always reports core events
[ 13.677] (**) Option "Device" "/dev/input/event19"
[ 13.677] (**) Option "_source" "server/udev"
[ 13.678] (II) event19 - Razer Razer Basilisk: is tagged by udev as: Mouse
[ 13.678] (II) event19 - Razer Razer Basilisk: device is a pointer
[ 13.678] (II) event19 - Razer Razer Basilisk: device removed
[ 13.678] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:01.2/0000:02:00.0/usb1/1-4/1-4:1.0/0003:1532:0064.0003/input/input21/event19"
[ 13.678] (II) XINPUT: Adding extended input device "Razer Razer Basilisk" (type: MOUSE, id 8)
[ 13.678] (**) Option "AccelerationScheme" "none"
[ 13.678] (**) Razer Razer Basilisk: (accel) selected scheme none/0
[ 13.678] (**) Razer Razer Basilisk: (accel) acceleration factor: 2.000
[ 13.678] (**) Razer Razer Basilisk: (accel) acceleration threshold: 4
[ 13.679] (II) event19 - Razer Razer Basilisk: is tagged by udev as: Mouse
[ 13.679] (II) event19 - Razer Razer Basilisk: device is a pointer
[ 13.679] (II) config/udev: Adding input device Razer Razer Basilisk (/dev/input/mouse0)
[ 13.679] (II) No input driver specified, ignoring this device.
[ 13.679] (II) This device may have been added with another device file.
[ 13.680] (II) config/udev: Adding input device Razer Razer Basilisk Keyboard (/dev/input/event20)
[ 13.680] (**) Razer Razer Basilisk Keyboard: Applying InputClass "libinput keyboard catchall"
[ 13.680] (**) Razer Razer Basilisk Keyboard: Applying InputClass "system-keyboard"
[ 13.680] (II) Using input driver 'libinput' for 'Razer Razer Basilisk Keyboard'
[ 13.680] (II) systemd-logind: got fd for /dev/input/event20 13:84 fd 38 paused 0
[ 13.680] (**) Razer Razer Basilisk Keyboard: always reports core events
[ 13.680] (**) Option "Device" "/dev/input/event20"
[ 13.680] (**) Option "_source" "server/udev"
[ 13.681] (II) event20 - Razer Razer Basilisk Keyboard: is tagged by udev as: Keyboard
[ 13.681] (II) event20 - Razer Razer Basilisk Keyboard: device is a keyboard
[ 13.681] (II) event20 - Razer Razer Basilisk Keyboard: device removed
[ 13.681] (II) libinput: Razer Razer Basilisk Keyboard: needs a virtual subdevice
[ 13.681] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:01.2/0000:02:00.0/usb1/1-4/1-4:1.1/0003:1532:0064.0004/input/input22/event20"
[ 13.681] (II) XINPUT: Adding extended input device "Razer Razer Basilisk Keyboard" (type: MOUSE, id 9)
[ 13.681] (**) Option "AccelerationScheme" "none"
[ 13.681] (**) Razer Razer Basilisk Keyboard: (accel) selected scheme none/0
[ 13.681] (**) Razer Razer Basilisk Keyboard: (accel) acceleration factor: 2.000
[ 13.681] (**) Razer Razer Basilisk Keyboard: (accel) acceleration threshold: 4
[ 13.682] (II) event20 - Razer Razer Basilisk Keyboard: is tagged by udev as: Keyboard
[ 13.682] (II) event20 - Razer Razer Basilisk Keyboard: device is a keyboard
[ 13.682] (II) config/udev: Adding input device Razer Razer Basilisk (/dev/input/event21)
[ 13.682] (II) No input driver specified, ignoring this device.
[ 13.682] (II) This device may have been added with another device file.
[ 13.682] (II) config/udev: Adding input device Razer Razer Basilisk (/dev/input/event22)
[ 13.682] (**) Razer Razer Basilisk: Applying InputClass "libinput keyboard catchall"
[ 13.682] (**) Razer Razer Basilisk: Applying InputClass "system-keyboard"
[ 13.682] (II) Using input driver 'libinput' for 'Razer Razer Basilisk'
[ 13.683] (II) systemd-logind: got fd for /dev/input/event22 13:86 fd 39 paused 0
[ 13.683] (**) Razer Razer Basilisk: always reports core events
[ 13.683] (**) Option "Device" "/dev/input/event22"
[ 13.683] (**) Option "_source" "server/udev"
[ 13.683] (II) event22 - Razer Razer Basilisk: is tagged by udev as: Keyboard
[ 13.683] (II) event22 - Razer Razer Basilisk: device is a keyboard
[ 13.684] (II) event22 - Razer Razer Basilisk: device removed
[ 13.684] (II) XINPUT: Adding extended input device "Razer Razer Basilisk" (type: KEYBOARD, id 10)
[ 13.684] (**) Option "xkb_layout" "pt"
[ 13.684] (II) event22 - Razer Razer Basilisk: is tagged by udev as: Keyboard
[ 13.684] (II) event22 - Razer Razer Basilisk: device is a keyboard
[ 13.685] (II) config/udev: Adding input device HDA NVidia HDMI/DP,pcm=11 (/dev/input/event14)
[ 13.685] (II) No input driver specified, ignoring this device.
[ 13.685] (II) This device may have been added with another device file.
[ 13.685] (II) config/udev: Adding input device HDA NVidia HDMI/DP,pcm=3 (/dev/input/event5)
[ 13.685] (II) No input driver specified, ignoring this device.
[ 13.685] (II) This device may have been added with another device file.
[ 13.685] (II) config/udev: Adding input device HDA NVidia HDMI/DP,pcm=7 (/dev/input/event6)
[ 13.685] (II) No input driver specified, ignoring this device.
[ 13.685] (II) This device may have been added with another device file.
[ 13.685] (II) config/udev: Adding input device HDA NVidia HDMI/DP,pcm=8 (/dev/input/event9)
[ 13.686] (II) No input driver specified, ignoring this device.
[ 13.686] (II) This device may have been added with another device file.
[ 13.686] (II) config/udev: Adding input device HDA NVidia HDMI/DP,pcm=9 (/dev/input/event10)
[ 13.686] (II) No input driver specified, ignoring this device.
[ 13.686] (II) This device may have been added with another device file.
[ 13.686] (II) config/udev: Adding input device HDA NVidia HDMI/DP,pcm=10 (/dev/input/event13)
[ 13.686] (II) No input driver specified, ignoring this device.
[ 13.686] (II) This device may have been added with another device file.
[ 13.686] (II) config/udev: Adding input device Logitech G512 RGB MECHANICAL GAMING KEYBOARD (/dev/input/event4)
[ 13.686] (**) Logitech G512 RGB MECHANICAL GAMING KEYBOARD: Applying InputClass "libinput keyboard catchall"
[ 13.686] (**) Logitech G512 RGB MECHANICAL GAMING KEYBOARD: Applying InputClass "system-keyboard"
[ 13.686] (II) Using input driver 'libinput' for 'Logitech G512 RGB MECHANICAL GAMING KEYBOARD'
[ 13.687] (II) systemd-logind: got fd for /dev/input/event4 13:68 fd 40 paused 0
[ 13.687] (**) Logitech G512 RGB MECHANICAL GAMING KEYBOARD: always reports core events
[ 13.687] (**) Option "Device" "/dev/input/event4"
[ 13.687] (**) Option "_source" "server/udev"
[ 13.687] (II) event4 - Logitech G512 RGB MECHANICAL GAMING KEYBOARD: is tagged by udev as: Keyboard
[ 13.688] (II) event4 - Logitech G512 RGB MECHANICAL GAMING KEYBOARD: device is a keyboard
[ 13.688] (II) event4 - Logitech G512 RGB MECHANICAL GAMING KEYBOARD: device removed
[ 13.688] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:08.1/0000:08:00.3/usb5/5-3/5-3:1.0/0003:046D:C33C.0001/input/input4/event4"
[ 13.688] (II) XINPUT: Adding extended input device "Logitech G512 RGB MECHANICAL GAMING KEYBOARD" (type: KEYBOARD, id 11)
[ 13.688] (**) Option "xkb_layout" "pt"
[ 13.689] (II) event4 - Logitech G512 RGB MECHANICAL GAMING KEYBOARD: is tagged by udev as: Keyboard
[ 13.689] (II) event4 - Logitech G512 RGB MECHANICAL GAMING KEYBOARD: device is a keyboard
[ 13.689] (II) config/udev: Adding input device Logitech G512 RGB MECHANICAL GAMING KEYBOARD Keyboard (/dev/input/event18)
[ 13.689] (**) Logitech G512 RGB MECHANICAL GAMING KEYBOARD Keyboard: Applying InputClass "libinput keyboard catchall"
[ 13.689] (**) Logitech G512 RGB MECHANICAL GAMING KEYBOARD Keyboard: Applying InputClass "system-keyboard"
[ 13.689] (II) Using input driver 'libinput' for 'Logitech G512 RGB MECHANICAL GAMING KEYBOARD Keyboard'
[ 13.690] (II) systemd-logind: got fd for /dev/input/event18 13:82 fd 41 paused 0
[ 13.690] (**) Logitech G512 RGB MECHANICAL GAMING KEYBOARD Keyboard: always reports core events
[ 13.690] (**) Option "Device" "/dev/input/event18"
[ 13.690] (**) Option "_source" "server/udev"
[ 13.690] (II) event18 - Logitech G512 RGB MECHANICAL GAMING KEYBOARD Keyboard: is tagged by udev as: Keyboard
[ 13.690] (II) event18 - Logitech G512 RGB MECHANICAL GAMING KEYBOARD Keyboard: device is a keyboard
[ 13.691] (II) event18 - Logitech G512 RGB MECHANICAL GAMING KEYBOARD Keyboard: device removed
[ 13.691] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:08.1/0000:08:00.3/usb5/5-3/5-3:1.1/0003:046D:C33C.0002/input/input18/event18"
[ 13.691] (II) XINPUT: Adding extended input device "Logitech G512 RGB MECHANICAL GAMING KEYBOARD Keyboard" (type: KEYBOARD, id 12)
[ 13.691] (**) Option "xkb_layout" "pt"
[ 13.692] (II) event18 - Logitech G512 RGB MECHANICAL GAMING KEYBOARD Keyboard: is tagged by udev as: Keyboard
[ 13.692] (II) event18 - Logitech G512 RGB MECHANICAL GAMING KEYBOARD Keyboard: device is a keyboard
[ 13.692] (II) config/udev: Adding input device HD-Audio Generic Front Mic (/dev/input/event7)
[ 13.692] (II) No input driver specified, ignoring this device.
[ 13.692] (II) This device may have been added with another device file.
[ 13.692] (II) config/udev: Adding input device HD-Audio Generic Rear Mic (/dev/input/event8)
[ 13.692] (II) No input driver specified, ignoring this device.
[ 13.692] (II) This device may have been added with another device file.
[ 13.692] (II) config/udev: Adding input device HD-Audio Generic Line (/dev/input/event11)
[ 13.692] (II) No input driver specified, ignoring this device.
[ 13.692] (II) This device may have been added with another device file.
[ 13.693] (II) config/udev: Adding input device HD-Audio Generic Line Out Front (/dev/input/event12)
[ 13.693] (II) No input driver specified, ignoring this device.
[ 13.693] (II) This device may have been added with another device file.
[ 13.693] (II) config/udev: Adding input device HD-Audio Generic Line Out Surround (/dev/input/event15)
[ 13.693] (II) No input driver specified, ignoring this device.
[ 13.693] (II) This device may have been added with another device file.
[ 13.693] (II) config/udev: Adding input device HD-Audio Generic Line Out CLFE (/dev/input/event16)
[ 13.693] (II) No input driver specified, ignoring this device.
[ 13.693] (II) This device may have been added with another device file.
[ 13.693] (II) config/udev: Adding input device HD-Audio Generic Front Headphone (/dev/input/event17)
[ 13.693] (II) No input driver specified, ignoring this device.
[ 13.693] (II) This device may have been added with another device file.
[ 13.693] (II) config/udev: Adding input device Eee PC WMI hotkeys (/dev/input/event3)
[ 13.693] (**) Eee PC WMI hotkeys: Applying InputClass "libinput keyboard catchall"
[ 13.693] (**) Eee PC WMI hotkeys: Applying InputClass "system-keyboard"
[ 13.693] (II) Using input driver 'libinput' for 'Eee PC WMI hotkeys'
[ 13.694] (II) systemd-logind: got fd for /dev/input/event3 13:67 fd 42 paused 0
[ 13.694] (**) Eee PC WMI hotkeys: always reports core events
[ 13.694] (**) Option "Device" "/dev/input/event3"
[ 13.694] (**) Option "_source" "server/udev"
[ 13.694] (II) event3 - Eee PC WMI hotkeys: is tagged by udev as: Keyboard
[ 13.694] (II) event3 - Eee PC WMI hotkeys: device is a keyboard
[ 13.694] (II) event3 - Eee PC WMI hotkeys: device removed
[ 13.694] (**) Option "config_info" "udev:/sys/devices/platform/eeepc-wmi/input/input3/event
[ 13.694] (II) XINPUT: Adding extended input device "Eee PC WMI hotkeys" (type: KEYBOARD, id 13)
[ 13.694] (**) Option "xkb_layout" "pt"
[ 13.695] (II) event3 - Eee PC WMI hotkeys: is tagged by udev as: Keyboard
[ 13.695] (II) event3 - Eee PC WMI hotkeys: device is a keyboard
[ 13.695] (II) config/udev: Adding input device PC Speaker (/dev/input/event2)
[ 13.695] (II) No input driver specified, ignoring this device.
[ 13.695] (II) This device may have been added with another device file.
[ 13.698] (**) Razer Razer Basilisk Keyboard: Applying InputClass "libinput keyboard catchall"
[ 13.698] (**) Razer Razer Basilisk Keyboard: Applying InputClass "system-keyboard"
[ 13.698] (II) Using input driver 'libinput' for 'Razer Razer Basilisk Keyboard'
[ 13.698] (II) systemd-logind: returning pre-existing fd for /dev/input/event20 13:84
[ 13.698] (**) Razer Razer Basilisk Keyboard: always reports core events
[ 13.698] (**) Option "Device" "/dev/input/event20"
[ 13.698] (**) Option "_source" "_driver/libinput"
[ 13.698] (II) libinput: Razer Razer Basilisk Keyboard: is a virtual subdevice
[ 13.698] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:01.2/0000:02:00.0/usb1/1-4/1-4:1.1/0003:1532:0064.0004/input/input22/event20"
[ 13.698] (II) XINPUT: Adding extended input device "Razer Razer Basilisk Keyboard" (type: KEYBOARD, id 14)
[ 13.698] (**) Option "xkb_layout" "pt"
[ 13.699] (--) NVIDIA(GPU-0): AUS VG248 (DFP-2): connected
[ 13.699] (--) NVIDIA(GPU-0): AUS VG248 (DFP-2): Internal DisplayPort
[ 13.699] (--) NVIDIA(GPU-0): AUS VG248 (DFP-2): 2660.0 MHz maximum pixel clock
[ 13.699] (--) NVIDIA(GPU-0):
[ 97.254] (EE) event4 - Logitech G512 RGB MECHANICAL GAMING KEYBOARD: client bug: event processing lagging behind by 24ms, your system is too slow
[ 135.816] (EE) event4 - Logitech G512 RGB MECHANICAL GAMING KEYBOARD: client bug: event processing lagging behind by 12ms, your system is too slow
[ 156.896] (--) NVIDIA(GPU-0): DFP-0: disconnected
[ 156.896] (--) NVIDIA(GPU-0): DFP-0: Internal TMDS
[ 156.896] (--) NVIDIA(GPU-0): DFP-0: 330.0 MHz maximum pixel clock
[ 156.896] (--) NVIDIA(GPU-0):
[ 156.940] (--) NVIDIA(GPU-0): LG Electronics BL650 (DFP-1): connected
[ 156.940] (--) NVIDIA(GPU-0): LG Electronics BL650 (DFP-1): Internal TMDS
[ 156.940] (--) NVIDIA(GPU-0): LG Electronics BL650 (DFP-1): 600.0 MHz maximum pixel clock
[ 156.940] (--) NVIDIA(GPU-0):
[ 156.941] (--) NVIDIA(GPU-0): AUS VG248 (DFP-2): connected
[ 156.941] (--) NVIDIA(GPU-0): AUS VG248 (DFP-2): Internal DisplayPort
[ 156.941] (--) NVIDIA(GPU-0): AUS VG248 (DFP-2): 2660.0 MHz maximum pixel clock
[ 156.941] (--) NVIDIA(GPU-0):
[ 156.943] (--) NVIDIA(GPU-0): DFP-3: disconnected
[ 156.943] (--) NVIDIA(GPU-0): DFP-3: Internal TMDS
[ 156.943] (--) NVIDIA(GPU-0): DFP-3: 165.0 MHz maximum pixel clock
[ 156.943] (--) NVIDIA(GPU-0):
[ 243.440] (EE) event4 - Logitech G512 RGB MECHANICAL GAMING KEYBOARD: client bug: event processing lagging behind by 16ms, your system is too slow
[ 286.649] (EE) event4 - Logitech G512 RGB MECHANICAL GAMING KEYBOARD: client bug: event processing lagging behind by 22ms, your system is too slow
[ 294.912] (EE) event4 - Logitech G512 RGB MECHANICAL GAMING KEYBOARD: client bug: event processing lagging behind by 35ms, your system is too slow
[ 294.912] (EE) event4 - Logitech G512 RGB MECHANICAL GAMING KEYBOARD: WARNING: log rate limit exceeded (5 msgs per 60min). Discarding future messages.
[ 440.879] (EE) event19 - Razer Razer Basilisk: client bug: event processing lagging behind by 13ms, your system is too slow
[ 1340.851] (EE) event19 - Razer Razer Basilisk: client bug: event processing lagging behind by 15ms, your system is too slow xinitrc:
Note: I left there the default code, don't know if I should do that or not. My changes start in "nitrogen"
#!/bin/sh
userresources=$HOME/.Xresources
usermodmap=$HOME/.Xmodmap
sysresources=/etc/X11/xinit/.Xresources
sysmodmap=/etc/X11/xinit/.Xmodmap
# merge in defaults 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
# start some nice programs
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
nitrogen --restore &
copyq &
picom &
exec i3Last edited by DF32 (2021-09-11 22:00:05)
Offline
I meant without the "Screen" Section as well.
This is why it doesn't work:
[ 13.566] (WW) NVIDIA(0): Option "Primary" is not used
[ 13.566] (WW) NVIDIA(0): Option "RightOf" is not usedOnline
I meant without the "Screen" Section as well.
Tried without Screen section, didn't work.
Also tried like this:
Section "Monitor"
Identifier "HDMI-0"
Option "Position" "0 0"
EndSection
Section "Monitor"
Identifier "DP-0"
Option "Position" "1920 0"
EndSection I don't get it why these options are not being used, searched but didn't find anything usefull. And why aren't the absolute positions being recognized, even tho when I use xrandr to fix the problem these are the absolute positions that are displayed with xrandr -q...
Offline
Do you still get those lines in the xorg log?
In doubt you'll have to use the metamode (nvidia-settings should™ generate that) but this seems like a bug in the driver.
Online
Do you still get those lines in the xorg log?
Nope, these warnings didn't show up.
In doubt you'll have to use the metamode (nvidia-settings should™ generate that) but this seems like a bug in the driver.
I used nvidia-settings to generate the xorg.conf and it seems it's working fine. I still don't get it why my config didn't work and the generated config did work... But well, the problem is solved I guess. Thanks for the help!
xorg.conf generated:
# nvidia-settings: X configuration file generated by nvidia-settings
# nvidia-settings: version 470.63.01
Section "ServerLayout"
Identifier "Layout0"
Screen 0 "Screen0" 0 0
InputDevice "Keyboard0" "CoreKeyboard"
InputDevice "Mouse0" "CorePointer"
Option "Xinerama" "0"
EndSection
Section "Files"
EndSection
Section "Module"
Load "dbe"
Load "extmod"
Load "type1"
Load "freetype"
Load "glx"
EndSection
Section "InputDevice"
# generated from default
Identifier "Mouse0"
Driver "mouse"
Option "Protocol" "auto"
Option "Device" "/dev/psaux"
Option "Emulate3Buttons" "no"
Option "ZAxisMapping" "4 5"
EndSection
Section "InputDevice"
# generated from default
Identifier "Keyboard0"
Driver "kbd"
EndSection
Section "Monitor"
# HorizSync source: edid, VertRefresh source: edid
Identifier "Monitor0"
VendorName "Unknown"
ModelName "AUS VG248"
HorizSync 193.0 - 193.0
VertRefresh 48.0 - 165.0 Option "DPMS"
EndSection
Section "Device"
Identifier "Device0"
Driver "nvidia"
VendorName "NVIDIA Corporation"
BoardName "NVIDIA GeForce GTX 1660"
EndSection
Section "Screen"
Identifier "Screen0"
Device "Device0"
Monitor "Monitor0"
DefaultDepth 24
Option "Stereo" "0"
Option "nvidiaXineramaInfoOrder" "DFP-2"
Option "metamodes" "DP-0: 1920x1080 +1920+0, HDMI-0: nvidia-auto-select +0+0"
Option "SLI" "Off"
Option "MultiGPU" "Off"
Option "BaseMosaic" "off"
SubSection "Display"
Depth 24
EndSubSection
EndSectionOffline
Try whether you get away with
Section "Device"
Identifier "Device0"
Driver "nvidia"
VendorName "NVIDIA Corporation"
BoardName "NVIDIA GeForce GTX 1660"
Option "nvidiaXineramaInfoOrder" "DFP-2"
Option "metamodes" "DP-0: 1920x1080 +1920+0, HDMI-0: nvidia-auto-select +0+0"
EndSectionBlatantly ignoring the positional options in the monitor config despite not having a (contradicting) MetaModes entry seems like a bug in the driver.
Online
Try whether you get away with
Section "Device"
Identifier "Device0"
Driver "nvidia"
VendorName "NVIDIA Corporation"
BoardName "NVIDIA GeForce GTX 1660"
Option "nvidiaXineramaInfoOrder" "DFP-2"
Option "metamodes" "DP-0: 1920x1080 +1920+0, HDMI-0: nvidia-auto-select +0+0"
EndSection
Sorry, do you mean remove everything in the file and try only with that Section you provide?
Offline
Yup - it's the only thing that should™ be relevant.
Online
Nope, it didn't work. Same result as before...
Offline
Do you have xorg logs for that and the working config?
Online
Do you have xorg logs for that and the working config?
Xorg log with generated config:
[ 12.795] (WW) Failed to open protocol names file lib/xorg/protocol.txt
[ 12.796]
X.Org X Server 1.20.13
X Protocol Version 11, Revision 0
[ 12.796] Build Operating System: Linux Archlinux
[ 12.796] Current Operating System: Linux Head0nArch 5.14.2-arch1-2 #1 SMP PREEMPT Thu, 09 Sep 2021 09:42:35 +0000 x86_64
[ 12.796] Kernel command line: BOOT_IMAGE=/boot/vmlinuz-linux root=UUID=f9af81f0-a961-4189-9e62-a759182cc746 rw loglevel=3 quiet
[ 12.796] Build Date: 04 August 2021 08:13:54AM
[ 12.796]
[ 12.796] Current version of pixman: 0.40.0
[ 12.796] Before reporting problems, check http://wiki.x.org
to make sure that you have the latest version.
[ 12.796] Markers: (--) probed, (**) from config file, (==) default setting,
(++) from command line, (!!) notice, (II) informational,
(WW) warning, (EE) error, (NI) not implemented, (??) unknown.
[ 12.796] (==) Log file: "/var/log/Xorg.0.log", Time: Tue Sep 14 13:23:54 2021
[ 12.797] (==) Using config file: "/etc/X11/xorg.conf"
[ 12.797] (==) Using config directory: "/etc/X11/xorg.conf.d"
[ 12.797] (==) Using system config directory "/usr/share/X11/xorg.conf.d"
[ 12.798] (==) ServerLayout "Layout0"
[ 12.798] (**) |-->Screen "Screen0" (0)
[ 12.798] (**) | |-->Monitor "Monitor0"
[ 12.798] (**) | |-->Device "Device0"
[ 12.798] (**) | |-->GPUDevice "Device0"
[ 12.798] (**) |-->Input Device "Keyboard0"
[ 12.798] (**) |-->Input Device "Mouse0"
[ 12.798] (**) Option "Xinerama" "0"
[ 12.798] (==) Automatically adding devices
[ 12.798] (==) Automatically enabling devices
[ 12.798] (==) Automatically adding GPU devices
[ 12.798] (==) Automatically binding GPU devices
[ 12.798] (==) Max clients allowed: 256, resource mask: 0x1fffff
[ 12.799] (WW) The directory "/usr/share/fonts/OTF" does not exist.
[ 12.799] Entry deleted from font path.
[ 12.799] (WW) The directory "/usr/share/fonts/Type1" does not exist.
[ 12.799] Entry deleted from font path.
[ 12.801] (==) FontPath set to:
/usr/share/fonts/misc,
/usr/share/fonts/TTF,
/usr/share/fonts/100dpi,
/usr/share/fonts/75dpi
[ 12.801] (==) ModulePath set to "/usr/lib/xorg/modules"
[ 12.801] (WW) Hotplugging is on, devices using drivers 'kbd', 'mouse' or 'vmmouse' will be disabled.
[ 12.801] (WW) Disabling Keyboard0
[ 12.801] (WW) Disabling Mouse0
[ 12.801] (II) Module ABI versions:
[ 12.801] X.Org ANSI C Emulation: 0.4
[ 12.801] X.Org Video Driver: 24.1
[ 12.801] X.Org XInput driver : 24.1
[ 12.801] X.Org Server Extension : 10.0
[ 12.801] (++) using VT number 1
[ 12.801] (II) systemd-logind: took control of session /org/freedesktop/login1/session/_31
[ 12.802] (II) xfree86: Adding drm device (/dev/dri/card0)
[ 12.802] (II) systemd-logind: got fd for /dev/dri/card0 226:0 fd 10 paused 0
[ 12.803] (**) OutputClass "nvidia" ModulePath extended to "/usr/lib/nvidia/xorg,/usr/lib/xorg/modules,/usr/lib/xorg/modules"
[ 12.804] (--) PCI:*(6@0:0:0) 10de:2184:1043:86bb rev 161, Mem @ 0xfb000000/16777216, 0xd0000000/268435456, 0xe0000000/33554432, I/O @ 0x0000f000/128, BIOS @ 0x????????/524288
[ 12.804] (WW) Open ACPI failed (/var/run/acpid.socket) (No such file or directory)
[ 12.804] (II) "glx" will be loaded. This was enabled by default and also specified in the config file.
[ 12.804] (II) LoadModule: "dbe"
[ 12.804] (II) Module "dbe" already built-in
[ 12.804] (II) LoadModule: "extmod"
[ 12.804] (II) Module "extmod" already built-in
[ 12.804] (II) LoadModule: "glx"
[ 12.806] (II) Loading /usr/lib/xorg/modules/extensions/libglx.so
[ 12.810] (II) Module glx: vendor="X.Org Foundation"
[ 12.810] compiled for 1.20.13, module version = 1.0.0
[ 12.810] ABI class: X.Org Server Extension, version 10.0
[ 12.810] (II) LoadModule: "nvidia"
[ 12.810] (II) Loading /usr/lib/xorg/modules/drivers/nvidia_drv.so
[ 12.812] (II) Module nvidia: vendor="NVIDIA Corporation"
[ 12.812] compiled for 1.6.99.901, module version = 1.0.0
[ 12.812] Module class: X.Org Video Driver
[ 12.812] (II) NVIDIA dlloader X Driver 470.63.01 Tue Aug 3 20:37:27 UTC 2021
[ 12.812] (II) NVIDIA Unified Driver for all Supported NVIDIA GPUs
[ 12.812] (II) systemd-logind: releasing fd for 226:0
[ 12.813] (II) Loading sub module "fb"
[ 12.813] (II) LoadModule: "fb"
[ 12.813] (II) Loading /usr/lib/xorg/modules/libfb.so
[ 12.814] (II) Module fb: vendor="X.Org Foundation"
[ 12.814] compiled for 1.20.13, module version = 1.0.0
[ 12.814] ABI class: X.Org ANSI C Emulation, version 0.4
[ 12.814] (II) Loading sub module "wfb"
[ 12.814] (II) LoadModule: "wfb"
[ 12.814] (II) Loading /usr/lib/xorg/modules/libwfb.so
[ 12.814] (II) Module wfb: vendor="X.Org Foundation"
[ 12.814] compiled for 1.20.13, module version = 1.0.0
[ 12.814] ABI class: X.Org ANSI C Emulation, version 0.4
[ 12.814] (II) Loading sub module "ramdac"
[ 12.814] (II) LoadModule: "ramdac"
[ 12.814] (II) Module "ramdac" already built-in
[ 12.815] (**) NVIDIA(0): Depth 24, (--) framebuffer bpp 32
[ 12.815] (==) NVIDIA(0): RGB weight 888
[ 12.815] (==) NVIDIA(0): Default visual is TrueColor
[ 12.815] (==) NVIDIA(0): Using gamma correction (1.0, 1.0, 1.0)
[ 12.815] (II) Applying OutputClass "nvidia" options to /dev/dri/card0
[ 12.815] (**) NVIDIA(0): Option "Stereo" "0"
[ 12.815] (**) NVIDIA(0): Option "nvidiaXineramaInfoOrder" "DFP-2"
[ 12.815] (**) NVIDIA(0): Option "SLI" "Off"
[ 12.815] (**) NVIDIA(0): Option "MultiGPU" "Off"
[ 12.815] (**) NVIDIA(0): Option "BaseMosaic" "off"
[ 12.815] (**) NVIDIA(0): Option "AllowEmptyInitialConfiguration"
[ 12.815] (**) NVIDIA(0): Stereo disabled by request
[ 12.815] (**) NVIDIA(0): NVIDIA SLI disabled.
[ 12.815] (**) NVIDIA(0): NVIDIA Multi-GPU disabled.
[ 12.815] (**) NVIDIA(0): Option "MetaModes" "DP-0: 1920x1080 +1920+0, HDMI-0: nvidia-auto-select +0+0"
[ 12.815] (**) NVIDIA(0): Enabling 2D acceleration
[ 12.815] (II) Loading sub module "glxserver_nvidia"
[ 12.815] (II) LoadModule: "glxserver_nvidia"
[ 12.815] (II) Loading /usr/lib/nvidia/xorg/libglxserver_nvidia.so
[ 12.834] (II) Module glxserver_nvidia: vendor="NVIDIA Corporation"
[ 12.834] compiled for 1.6.99.901, module version = 1.0.0
[ 12.834] Module class: X.Org Server Extension
[ 12.834] (II) NVIDIA GLX Module 470.63.01 Tue Aug 3 20:35:52 UTC 2021
[ 12.835] (II) NVIDIA: The X server supports PRIME Render Offload.
[ 13.689] (--) NVIDIA(0): Valid display device(s) on GPU-0 at PCI:6:0:0
[ 13.689] (--) NVIDIA(0): DFP-0
[ 13.689] (--) NVIDIA(0): DFP-1
[ 13.689] (--) NVIDIA(0): DFP-2 (boot)
[ 13.689] (--) NVIDIA(0): DFP-3
[ 13.690] (II) NVIDIA(0): NVIDIA GPU NVIDIA GeForce GTX 1660 (TU116-A) at PCI:6:0:0
[ 13.690] (II) NVIDIA(0): (GPU-0)
[ 13.690] (--) NVIDIA(0): Memory: 6291456 kBytes
[ 13.690] (--) NVIDIA(0): VideoBIOS: 90.16.25.00.7a
[ 13.690] (II) NVIDIA(0): Detected PCI Express Link width: 16X
[ 13.690] (--) NVIDIA(GPU-0): DFP-0: disconnected
[ 13.690] (--) NVIDIA(GPU-0): DFP-0: Internal TMDS
[ 13.690] (--) NVIDIA(GPU-0): DFP-0: 330.0 MHz maximum pixel clock
[ 13.690] (--) NVIDIA(GPU-0):
[ 13.733] (--) NVIDIA(GPU-0): LG Electronics BL650 (DFP-1): connected
[ 13.733] (--) NVIDIA(GPU-0): LG Electronics BL650 (DFP-1): Internal TMDS
[ 13.733] (--) NVIDIA(GPU-0): LG Electronics BL650 (DFP-1): 600.0 MHz maximum pixel clock
[ 13.733] (--) NVIDIA(GPU-0):
[ 13.734] (--) NVIDIA(GPU-0): AUS VG248 (DFP-2): connected
[ 13.734] (--) NVIDIA(GPU-0): AUS VG248 (DFP-2): Internal DisplayPort
[ 13.734] (--) NVIDIA(GPU-0): AUS VG248 (DFP-2): 2660.0 MHz maximum pixel clock
[ 13.734] (--) NVIDIA(GPU-0):
[ 13.736] (--) NVIDIA(GPU-0): DFP-3: disconnected
[ 13.736] (--) NVIDIA(GPU-0): DFP-3: Internal TMDS
[ 13.736] (--) NVIDIA(GPU-0): DFP-3: 165.0 MHz maximum pixel clock
[ 13.736] (--) NVIDIA(GPU-0):
[ 13.832] (II) NVIDIA(0): Validated MetaModes:
[ 13.832] (II) NVIDIA(0): "DP-0:1920x1080+1920+0,HDMI-0:nvidia-auto-select+0+0"
[ 13.832] (II) NVIDIA(0): Virtual screen size determined to be 3840 x 1080
[ 13.878] (--) NVIDIA(0): DPI set to (81, 80); computed from "UseEdidDpi" X config
[ 13.878] (--) NVIDIA(0): option
[ 13.879] (II) NVIDIA: Reserving 24576.00 MB of virtual memory for indirect memory
[ 13.879] (II) NVIDIA: access.
[ 13.881] (II) NVIDIA(0): ACPI: failed to connect to the ACPI event daemon; the daemon
[ 13.881] (II) NVIDIA(0): may not be running or the "AcpidSocketPath" X
[ 13.881] (II) NVIDIA(0): configuration option may not be set correctly. When the
[ 13.881] (II) NVIDIA(0): ACPI event daemon is available, the NVIDIA X driver will
[ 13.881] (II) NVIDIA(0): try to use it to receive ACPI event notifications. For
[ 13.881] (II) NVIDIA(0): details, please see the "ConnectToAcpid" and
[ 13.881] (II) NVIDIA(0): "AcpidSocketPath" X configuration options in Appendix B: X
[ 13.881] (II) NVIDIA(0): Config Options in the README.
[ 13.894] (II) NVIDIA(0): Setting mode "DP-0:1920x1080+1920+0,HDMI-0:nvidia-auto-select+0+0"
[ 13.988] (==) NVIDIA(0): Disabling shared memory pixmaps
[ 13.988] (==) NVIDIA(0): Backing store enabled
[ 13.988] (==) NVIDIA(0): Silken mouse disabled
[ 13.988] (**) NVIDIA(0): DPMS enabled
[ 13.988] (II) Loading sub module "dri2"
[ 13.988] (II) LoadModule: "dri2"
[ 13.988] (II) Module "dri2" already built-in
[ 13.988] (II) NVIDIA(0): [DRI2] Setup complete
[ 13.988] (II) NVIDIA(0): [DRI2] VDPAU driver: nvidia
[ 13.988] (II) Initializing extension Generic Event Extension
[ 13.988] (II) Initializing extension SHAPE
[ 13.988] (II) Initializing extension MIT-SHM
[ 13.988] (II) Initializing extension XInputExtension
[ 13.989] (II) Initializing extension XTEST
[ 13.989] (II) Initializing extension BIG-REQUESTS
[ 13.989] (II) Initializing extension SYNC
[ 13.989] (II) Initializing extension XKEYBOARD
[ 13.989] (II) Initializing extension XC-MISC
[ 13.989] (II) Initializing extension SECURITY
[ 13.989] (II) Initializing extension XFIXES
[ 13.989] (II) Initializing extension RENDER
[ 13.989] (II) Initializing extension RANDR
[ 13.989] (II) Initializing extension COMPOSITE
[ 13.989] (II) Initializing extension DAMAGE
[ 13.989] (II) Initializing extension MIT-SCREEN-SAVER
[ 13.989] (II) Initializing extension DOUBLE-BUFFER
[ 13.989] (II) Initializing extension RECORD
[ 13.989] (II) Initializing extension DPMS
[ 13.989] (II) Initializing extension Present
[ 13.989] (II) Initializing extension DRI3
[ 13.989] (II) Initializing extension X-Resource
[ 13.989] (II) Initializing extension XVideo
[ 13.989] (II) Initializing extension XVideo-MotionCompensation
[ 13.989] (II) Initializing extension GLX
[ 13.989] (II) Initializing extension GLX
[ 13.989] (II) Indirect GLX disabled.
[ 13.989] (II) GLX: Another vendor is already registered for screen 0
[ 13.989] (II) Initializing extension XFree86-VidModeExtension
[ 13.989] (II) Initializing extension XFree86-DGA
[ 13.989] (II) Initializing extension XFree86-DRI
[ 13.989] (II) Initializing extension DRI2
[ 13.989] (II) Initializing extension NV-GLX
[ 13.989] (II) Initializing extension NV-CONTROL
[ 13.989] (II) Initializing extension XINERAMA
[ 14.033] (II) config/udev: Adding input device Power Button (/dev/input/event1)
[ 14.033] (**) Power Button: Applying InputClass "libinput keyboard catchall"
[ 14.033] (**) Power Button: Applying InputClass "system-keyboard"
[ 14.033] (II) LoadModule: "libinput"
[ 14.033] (II) Loading /usr/lib/xorg/modules/input/libinput_drv.so
[ 14.035] (II) Module libinput: vendor="X.Org Foundation"
[ 14.035] compiled for 1.20.11, module version = 1.1.0
[ 14.035] Module class: X.Org XInput Driver
[ 14.035] ABI class: X.Org XInput driver, version 24.1
[ 14.035] (II) Using input driver 'libinput' for 'Power Button'
[ 14.035] (II) systemd-logind: got fd for /dev/input/event1 13:65 fd 33 paused 0
[ 14.035] (**) Power Button: always reports core events
[ 14.035] (**) Option "Device" "/dev/input/event1"
[ 14.036] (**) Option "_source" "server/udev"
[ 14.038] (II) event1 - Power Button: is tagged by udev as: Keyboard
[ 14.038] (II) event1 - Power Button: device is a keyboard
[ 14.038] (II) event1 - Power Button: device removed
[ 14.038] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/LNXPWRBN:00/input/input1/event1"
[ 14.038] (II) XINPUT: Adding extended input device "Power Button" (type: KEYBOARD, id 6)
[ 14.038] (**) Option "xkb_layout" "pt"
[ 14.046] (II) event1 - Power Button: is tagged by udev as: Keyboard
[ 14.046] (II) event1 - Power Button: device is a keyboard
[ 14.046] (II) config/udev: Adding input device Power Button (/dev/input/event0)
[ 14.046] (**) Power Button: Applying InputClass "libinput keyboard catchall"
[ 14.046] (**) Power Button: Applying InputClass "system-keyboard"
[ 14.046] (II) Using input driver 'libinput' for 'Power Button'
[ 14.046] (II) systemd-logind: got fd for /dev/input/event0 13:64 fd 36 paused 0
[ 14.046] (**) Power Button: always reports core events
[ 14.046] (**) Option "Device" "/dev/input/event0"
[ 14.046] (**) Option "_source" "server/udev"
[ 14.047] (II) event0 - Power Button: is tagged by udev as: Keyboard
[ 14.047] (II) event0 - Power Button: device is a keyboard
[ 14.047] (II) event0 - Power Button: device removed
[ 14.047] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input0/event0"
[ 14.047] (II) XINPUT: Adding extended input device "Power Button" (type: KEYBOARD, id 7)
[ 14.047] (**) Option "xkb_layout" "pt"
[ 14.047] (II) event0 - Power Button: is tagged by udev as: Keyboard
[ 14.047] (II) event0 - Power Button: device is a keyboard
[ 14.047] (II) config/udev: Adding input device Razer Razer Basilisk (/dev/input/event19)
[ 14.047] (**) Razer Razer Basilisk: Applying InputClass "libinput pointer catchall"
[ 14.047] (II) Using input driver 'libinput' for 'Razer Razer Basilisk'
[ 14.104] (II) systemd-logind: got fd for /dev/input/event19 13:83 fd 37 paused 0
[ 14.104] (**) Razer Razer Basilisk: always reports core events
[ 14.104] (**) Option "Device" "/dev/input/event19"
[ 14.104] (**) Option "_source" "server/udev"
[ 14.104] (II) event19 - Razer Razer Basilisk: is tagged by udev as: Mouse
[ 14.105] (II) event19 - Razer Razer Basilisk: device is a pointer
[ 14.105] (II) event19 - Razer Razer Basilisk: device removed
[ 14.105] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:01.2/0000:02:00.0/usb1/1-4/1-4:1.0/0003:1532:0064.0003/input/input21/event19"
[ 14.105] (II) XINPUT: Adding extended input device "Razer Razer Basilisk" (type: MOUSE, id 8)
[ 14.105] (**) Option "AccelerationScheme" "none"
[ 14.105] (**) Razer Razer Basilisk: (accel) selected scheme none/0
[ 14.105] (**) Razer Razer Basilisk: (accel) acceleration factor: 2.000
[ 14.105] (**) Razer Razer Basilisk: (accel) acceleration threshold: 4
[ 14.106] (II) event19 - Razer Razer Basilisk: is tagged by udev as: Mouse
[ 14.106] (II) event19 - Razer Razer Basilisk: device is a pointer
[ 14.106] (II) config/udev: Adding input device Razer Razer Basilisk (/dev/input/mouse0)
[ 14.106] (II) No input driver specified, ignoring this device.
[ 14.106] (II) This device may have been added with another device file.
[ 14.107] (II) config/udev: Adding input device Razer Razer Basilisk Keyboard (/dev/input/event20)
[ 14.107] (**) Razer Razer Basilisk Keyboard: Applying InputClass "libinput keyboard catchall"
[ 14.107] (**) Razer Razer Basilisk Keyboard: Applying InputClass "system-keyboard"
[ 14.107] (II) Using input driver 'libinput' for 'Razer Razer Basilisk Keyboard'
[ 14.107] (II) systemd-logind: got fd for /dev/input/event20 13:84 fd 38 paused 0
[ 14.107] (**) Razer Razer Basilisk Keyboard: always reports core events
[ 14.107] (**) Option "Device" "/dev/input/event20"
[ 14.107] (**) Option "_source" "server/udev"
[ 14.108] (II) event20 - Razer Razer Basilisk Keyboard: is tagged by udev as: Keyboard
[ 14.108] (II) event20 - Razer Razer Basilisk Keyboard: device is a keyboard
[ 14.108] (II) event20 - Razer Razer Basilisk Keyboard: device removed
[ 14.108] (II) libinput: Razer Razer Basilisk Keyboard: needs a virtual subdevice
[ 14.108] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:01.2/0000:02:00.0/usb1/1-4/1-4:1.1/0003:1532:0064.0004/input/input22/event20"
[ 14.108] (II) XINPUT: Adding extended input device "Razer Razer Basilisk Keyboard" (type: MOUSE, id 9)
[ 14.108] (**) Option "AccelerationScheme" "none"
[ 14.108] (**) Razer Razer Basilisk Keyboard: (accel) selected scheme none/0
[ 14.108] (**) Razer Razer Basilisk Keyboard: (accel) acceleration factor: 2.000
[ 14.108] (**) Razer Razer Basilisk Keyboard: (accel) acceleration threshold: 4
[ 14.109] (II) event20 - Razer Razer Basilisk Keyboard: is tagged by udev as: Keyboard
[ 14.109] (II) event20 - Razer Razer Basilisk Keyboard: device is a keyboard
[ 14.110] (II) config/udev: Adding input device Razer Razer Basilisk (/dev/input/event21)
[ 14.110] (II) No input driver specified, ignoring this device.
[ 14.110] (II) This device may have been added with another device file.
[ 14.110] (II) config/udev: Adding input device Razer Razer Basilisk (/dev/input/event22)
[ 14.110] (**) Razer Razer Basilisk: Applying InputClass "libinput keyboard catchall"
[ 14.110] (**) Razer Razer Basilisk: Applying InputClass "system-keyboard"
[ 14.110] (II) Using input driver 'libinput' for 'Razer Razer Basilisk'
[ 14.111] (II) systemd-logind: got fd for /dev/input/event22 13:86 fd 39 paused 0
[ 14.111] (**) Razer Razer Basilisk: always reports core events
[ 14.111] (**) Option "Device" "/dev/input/event22"
[ 14.111] (**) Option "_source" "server/udev"
[ 14.111] (II) event22 - Razer Razer Basilisk: is tagged by udev as: Keyboard
[ 14.111] (II) event22 - Razer Razer Basilisk: device is a keyboard
[ 14.111] (II) event22 - Razer Razer Basilisk: device removed
[ 14.111] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:01.2/0000:02:00.0/usb1/1-4/1-4:1.2/0003:1532:0064.0005/input/input24/event22"
[ 14.111] (II) XINPUT: Adding extended input device "Razer Razer Basilisk" (type: KEYBOARD, id 10)
[ 14.111] (**) Option "xkb_layout" "pt"
[ 14.112] (II) event22 - Razer Razer Basilisk: is tagged by udev as: Keyboard
[ 14.112] (II) event22 - Razer Razer Basilisk: device is a keyboard
[ 14.112] (II) config/udev: Adding input device HDA NVidia HDMI/DP,pcm=3 (/dev/input/event3)
[ 14.112] (II) No input driver specified, ignoring this device.
[ 14.112] (II) This device may have been added with another device file.
[ 14.113] (II) config/udev: Adding input device HDA NVidia HDMI/DP,pcm=7 (/dev/input/event4)
[ 14.113] (II) No input driver specified, ignoring this device.
[ 14.113] (II) This device may have been added with another device file.
[ 14.113] (II) config/udev: Adding input device HDA NVidia HDMI/DP,pcm=8 (/dev/input/event5)
[ 14.113] (II) No input driver specified, ignoring this device.
[ 14.113] (II) This device may have been added with another device file.
[ 14.113] (II) config/udev: Adding input device HDA NVidia HDMI/DP,pcm=9 (/dev/input/event6)
[ 14.113] (II) No input driver specified, ignoring this device.
[ 14.113] (II) This device may have been added with another device file.
[ 14.113] (II) config/udev: Adding input device HDA NVidia HDMI/DP,pcm=10 (/dev/input/event7)
[ 14.113] (II) No input driver specified, ignoring this device.
[ 14.113] (II) This device may have been added with another device file.
[ 14.113] (II) config/udev: Adding input device HDA NVidia HDMI/DP,pcm=11 (/dev/input/event8)
[ 14.113] (II) No input driver specified, ignoring this device.
[ 14.113] (II) This device may have been added with another device file.
[ 14.113] (II) config/udev: Adding input device Logitech G512 RGB MECHANICAL GAMING KEYBOARD (/dev/input/event10)
[ 14.113] (**) Logitech G512 RGB MECHANICAL GAMING KEYBOARD: Applying InputClass "libinput keyboard catchall"
[ 14.113] (**) Logitech G512 RGB MECHANICAL GAMING KEYBOARD: Applying InputClass "system-keyboard"
[ 14.113] (II) Using input driver 'libinput' for 'Logitech G512 RGB MECHANICAL GAMING KEYBOARD'
[ 14.114] (II) systemd-logind: got fd for /dev/input/event10 13:74 fd 40 paused 0
[ 14.114] (**) Logitech G512 RGB MECHANICAL GAMING KEYBOARD: always reports core events
[ 14.114] (**) Option "Device" "/dev/input/event10"
[ 14.114] (**) Option "_source" "server/udev"
[ 14.114] (II) event10 - Logitech G512 RGB MECHANICAL GAMING KEYBOARD: is tagged by udev as: Keyboard
[ 14.115] (II) event10 - Logitech G512 RGB MECHANICAL GAMING KEYBOARD: device is a keyboard
[ 14.115] (II) event10 - Logitech G512 RGB MECHANICAL GAMING KEYBOARD: device removed
[ 14.115] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:08.1/0000:08:00.3/usb5/5-3/5-3:1.0/0003:046D:C33C.0001/input/input10/event10"
[ 14.115] (II) XINPUT: Adding extended input device "Logitech G512 RGB MECHANICAL GAMING KEYBOARD" (type: KEYBOARD, id 11)
[ 14.115] (**) Option "xkb_layout" "pt"
[ 14.116] (II) event10 - Logitech G512 RGB MECHANICAL GAMING KEYBOARD: is tagged by udev as: Keyboard
[ 14.116] (II) event10 - Logitech G512 RGB MECHANICAL GAMING KEYBOARD: device is a keyboard
[ 14.116] (II) config/udev: Adding input device Logitech G512 RGB MECHANICAL GAMING KEYBOARD Keyboard (/dev/input/event18)
[ 14.116] (**) Logitech G512 RGB MECHANICAL GAMING KEYBOARD Keyboard: Applying InputClass "libinput keyboard catchall"
[ 14.116] (**) Logitech G512 RGB MECHANICAL GAMING KEYBOARD Keyboard: Applying InputClass "system-keyboard"
[ 14.116] (II) Using input driver 'libinput' for 'Logitech G512 RGB MECHANICAL GAMING KEYBOARD Keyboard'
[ 14.117] (II) systemd-logind: got fd for /dev/input/event18 13:82 fd 41 paused 0
[ 14.117] (**) Logitech G512 RGB MECHANICAL GAMING KEYBOARD Keyboard: always reports core events
[ 14.117] (**) Option "Device" "/dev/input/event18"
[ 14.117] (**) Option "_source" "server/udev"
[ 14.118] (II) event18 - Logitech G512 RGB MECHANICAL GAMING KEYBOARD Keyboard: is tagged by udev as: Keyboard
[ 14.118] (II) event18 - Logitech G512 RGB MECHANICAL GAMING KEYBOARD Keyboard: device is a keyboard
[ 14.118] (II) event18 - Logitech G512 RGB MECHANICAL GAMING KEYBOARD Keyboard: device removed
[ 14.118] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:08.1/0000:08:00.3/usb5/5-3/5-3:1.1/0003:046D:C33C.0002/input/input18/event18"
[ 14.118] (II) XINPUT: Adding extended input device "Logitech G512 RGB MECHANICAL GAMING KEYBOARD Keyboard" (type: KEYBOARD, id 12)
[ 14.118] (**) Option "xkb_layout" "pt"
[ 14.119] (II) event18 - Logitech G512 RGB MECHANICAL GAMING KEYBOARD Keyboard: is tagged by udev as: Keyboard
[ 14.119] (II) event18 - Logitech G512 RGB MECHANICAL GAMING KEYBOARD Keyboard: device is a keyboard
[ 14.119] (II) config/udev: Adding input device HD-Audio Generic Front Mic (/dev/input/event11)
[ 14.119] (II) No input driver specified, ignoring this device.
[ 14.119] (II) This device may have been added with another device file.
[ 14.119] (II) config/udev: Adding input device HD-Audio Generic Rear Mic (/dev/input/event12)
[ 14.119] (II) No input driver specified, ignoring this device.
[ 14.119] (II) This device may have been added with another device file.
[ 14.120] (II) config/udev: Adding input device HD-Audio Generic Line (/dev/input/event13)
[ 14.120] (II) No input driver specified, ignoring this device.
[ 14.120] (II) This device may have been added with another device file.
[ 14.120] (II) config/udev: Adding input device HD-Audio Generic Line Out Front (/dev/input/event14)
[ 14.120] (II) No input driver specified, ignoring this device.
[ 14.120] (II) This device may have been added with another device file.
[ 14.120] (II) config/udev: Adding input device HD-Audio Generic Line Out Surround (/dev/input/event15)
[ 14.120] (II) No input driver specified, ignoring this device.
[ 14.120] (II) This device may have been added with another device file.
[ 14.120] (II) config/udev: Adding input device HD-Audio Generic Line Out CLFE (/dev/input/event16)
[ 14.120] (II) No input driver specified, ignoring this device.
[ 14.120] (II) This device may have been added with another device file.
[ 14.121] (II) config/udev: Adding input device HD-Audio Generic Front Headphone (/dev/input/event17)
[ 14.121] (II) No input driver specified, ignoring this device.
[ 14.121] (II) This device may have been added with another device file.
[ 14.121] (II) config/udev: Adding input device Eee PC WMI hotkeys (/dev/input/event9)
[ 14.121] (**) Eee PC WMI hotkeys: Applying InputClass "libinput keyboard catchall"
[ 14.121] (**) Eee PC WMI hotkeys: Applying InputClass "system-keyboard"
[ 14.121] (II) Using input driver 'libinput' for 'Eee PC WMI hotkeys'
[ 14.121] (II) systemd-logind: got fd for /dev/input/event9 13:73 fd 42 paused 0
[ 14.121] (**) Eee PC WMI hotkeys: always reports core events
[ 14.121] (**) Option "Device" "/dev/input/event9"
[ 14.121] (**) Option "_source" "server/udev"
[ 14.122] (II) event9 - Eee PC WMI hotkeys: is tagged by udev as: Keyboard
[ 14.122] (II) event9 - Eee PC WMI hotkeys: device is a keyboard
[ 14.122] (II) event9 - Eee PC WMI hotkeys: device removed
[ 14.122] (**) Option "config_info" "udev:/sys/devices/platform/eeepc-wmi/input/input9/event9"
[ 14.122] (II) XINPUT: Adding extended input device "Eee PC WMI hotkeys" (type: KEYBOARD, id 13)
[ 14.122] (**) Option "xkb_layout" "pt"
[ 14.122] (II) event9 - Eee PC WMI hotkeys: is tagged by udev as: Keyboard
[ 14.122] (II) event9 - Eee PC WMI hotkeys: device is a keyboard
[ 14.123] (II) config/udev: Adding input device PC Speaker (/dev/input/event2)
[ 14.123] (II) No input driver specified, ignoring this device.
[ 14.123] (II) This device may have been added with another device file.
[ 14.126] (**) Razer Razer Basilisk Keyboard: Applying InputClass "libinput keyboard catchall"
[ 14.126] (**) Razer Razer Basilisk Keyboard: Applying InputClass "system-keyboard"
[ 14.126] (II) Using input driver 'libinput' for 'Razer Razer Basilisk Keyboard'
[ 14.126] (II) systemd-logind: returning pre-existing fd for /dev/input/event20 13:84
[ 14.126] (**) Razer Razer Basilisk Keyboard: always reports core events
[ 14.126] (**) Option "Device" "/dev/input/event20"
[ 14.126] (**) Option "_source" "_driver/libinput"
[ 14.126] (II) libinput: Razer Razer Basilisk Keyboard: is a virtual subdevice
[ 14.126] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:01.2/0000:02:00.0/usb1/1-4/1-4:1.1/0003:1532:0064.0004/input/input22/event20"
[ 14.126] (II) XINPUT: Adding extended input device "Razer Razer Basilisk Keyboard" (type: KEYBOARD, id 14)
[ 14.126] (**) Option "xkb_layout" "pt"
[ 14.126] (--) NVIDIA(GPU-0): AUS VG248 (DFP-2): connected
[ 14.126] (--) NVIDIA(GPU-0): AUS VG248 (DFP-2): Internal DisplayPort
[ 14.126] (--) NVIDIA(GPU-0): AUS VG248 (DFP-2): 2660.0 MHz maximum pixel clock
[ 14.126] (--) NVIDIA(GPU-0):
[ 25.426] (EE) event10 - Logitech G512 RGB MECHANICAL GAMING KEYBOARD: client bug: event processing lagging behind by 15ms, your system is too slow
[ 291.723] (EE) event10 - Logitech G512 RGB MECHANICAL GAMING KEYBOARD: client bug: event processing lagging behind by 28ms, your system is too slowXorg log with section provided by you:
[ 11.481] (WW) Failed to open protocol names file lib/xorg/protocol.txt
[ 11.481]
X.Org X Server 1.20.13
X Protocol Version 11, Revision 0
[ 11.481] Build Operating System: Linux Archlinux
[ 11.481] Current Operating System: Linux Head0nArch 5.14.2-arch1-2 #1 SMP PREEMPT Thu, 09 Sep 2021 09:42:35 +0000 x86_64
[ 11.481] Kernel command line: BOOT_IMAGE=/boot/vmlinuz-linux root=UUID=f9af81f0-a961-4189-9e62-a759182cc746 rw loglevel=3 quiet
[ 11.481] Build Date: 04 August 2021 08:13:54AM
[ 11.481]
[ 11.481] Current version of pixman: 0.40.0
[ 11.481] Before reporting problems, check http://wiki.x.org
to make sure that you have the latest version.
[ 11.481] Markers: (--) probed, (**) from config file, (==) default setting,
(++) from command line, (!!) notice, (II) informational,
(WW) warning, (EE) error, (NI) not implemented, (??) unknown.
[ 11.482] (==) Log file: "/var/log/Xorg.0.log", Time: Tue Sep 14 13:32:31 2021
[ 11.483] (==) Using config file: "/etc/X11/xorg.conf"
[ 11.483] (==) Using config directory: "/etc/X11/xorg.conf.d"
[ 11.483] (==) Using system config directory "/usr/share/X11/xorg.conf.d"
[ 11.484] (==) No Layout section. Using the first Screen section.
[ 11.484] (==) No screen section available. Using defaults.
[ 11.484] (**) |-->Screen "Default Screen Section" (0)
[ 11.484] (**) | |-->Monitor "<default monitor>"
[ 11.484] (==) No device specified for screen "Default Screen Section".
Using the first device section listed.
[ 11.484] (**) | |-->Device "nvidia"
[ 11.484] (**) | |-->GPUDevice "Device0"
[ 11.484] (==) No monitor specified for screen "Default Screen Section".
Using a default monitor configuration.
[ 11.484] (==) Automatically adding devices
[ 11.484] (==) Automatically enabling devices
[ 11.484] (==) Automatically adding GPU devices
[ 11.484] (==) Automatically binding GPU devices
[ 11.484] (==) Max clients allowed: 256, resource mask: 0x1fffff
[ 11.484] (WW) The directory "/usr/share/fonts/OTF" does not exist.
[ 11.484] Entry deleted from font path.
[ 11.484] (WW) The directory "/usr/share/fonts/Type1" does not exist.
[ 11.484] Entry deleted from font path.
[ 11.486] (==) FontPath set to:
/usr/share/fonts/misc,
/usr/share/fonts/TTF,
/usr/share/fonts/100dpi,
/usr/share/fonts/75dpi
[ 11.486] (==) ModulePath set to "/usr/lib/xorg/modules"
[ 11.486] (II) The server relies on udev to provide the list of input devices.
If no devices become available, reconfigure udev or disable AutoAddDevices.
[ 11.486] (II) Module ABI versions:
[ 11.486] X.Org ANSI C Emulation: 0.4
[ 11.486] X.Org Video Driver: 24.1
[ 11.486] X.Org XInput driver : 24.1
[ 11.486] X.Org Server Extension : 10.0
[ 11.486] (++) using VT number 1
[ 11.487] (II) systemd-logind: took control of session /org/freedesktop/login1/session/_31
[ 11.487] (II) xfree86: Adding drm device (/dev/dri/card0)
[ 11.487] (II) systemd-logind: got fd for /dev/dri/card0 226:0 fd 10 paused 0
[ 11.488] (**) OutputClass "nvidia" ModulePath extended to "/usr/lib/nvidia/xorg,/usr/lib/xorg/modules,/usr/lib/xorg/modules"
[ 11.489] (--) PCI:*(6@0:0:0) 10de:2184:1043:86bb rev 161, Mem @ 0xfb000000/16777216, 0xd0000000/268435456, 0xe0000000/33554432, I/O @ 0x0000f000/128, BIOS @ 0x????????/524288
[ 11.489] (WW) Open ACPI failed (/var/run/acpid.socket) (No such file or directory)
[ 11.489] (II) LoadModule: "glx"
[ 11.490] (II) Loading /usr/lib/xorg/modules/extensions/libglx.so
[ 11.495] (II) Module glx: vendor="X.Org Foundation"
[ 11.495] compiled for 1.20.13, module version = 1.0.0
[ 11.495] ABI class: X.Org Server Extension, version 10.0
[ 11.495] (II) LoadModule: "nvidia"
[ 11.495] (II) Loading /usr/lib/xorg/modules/drivers/nvidia_drv.so
[ 11.497] (II) Module nvidia: vendor="NVIDIA Corporation"
[ 11.497] compiled for 1.6.99.901, module version = 1.0.0
[ 11.497] Module class: X.Org Video Driver
[ 11.497] (II) NVIDIA dlloader X Driver 470.63.01 Tue Aug 3 20:37:27 UTC 2021
[ 11.497] (II) NVIDIA Unified Driver for all Supported NVIDIA GPUs
[ 11.497] (II) systemd-logind: releasing fd for 226:0
[ 11.497] (II) Loading sub module "fb"
[ 11.497] (II) LoadModule: "fb"
[ 11.498] (II) Loading /usr/lib/xorg/modules/libfb.so
[ 11.498] (II) Module fb: vendor="X.Org Foundation"
[ 11.498] compiled for 1.20.13, module version = 1.0.0
[ 11.498] ABI class: X.Org ANSI C Emulation, version 0.4
[ 11.498] (II) Loading sub module "wfb"
[ 11.498] (II) LoadModule: "wfb"
[ 11.498] (II) Loading /usr/lib/xorg/modules/libwfb.so
[ 11.499] (II) Module wfb: vendor="X.Org Foundation"
[ 11.499] compiled for 1.20.13, module version = 1.0.0
[ 11.499] ABI class: X.Org ANSI C Emulation, version 0.4
[ 11.499] (II) Loading sub module "ramdac"
[ 11.499] (II) LoadModule: "ramdac"
[ 11.499] (II) Module "ramdac" already built-in
[ 11.500] (II) NVIDIA(0): Creating default Display subsection in Screen section
"Default Screen Section" for depth/fbbpp 24/32
[ 11.500] (==) NVIDIA(0): Depth 24, (==) framebuffer bpp 32
[ 11.500] (==) NVIDIA(0): RGB weight 888
[ 11.500] (==) NVIDIA(0): Default visual is TrueColor
[ 11.500] (==) NVIDIA(0): Using gamma correction (1.0, 1.0, 1.0)
[ 11.500] (II) Applying OutputClass "nvidia" options to /dev/dri/card0
[ 11.500] (**) NVIDIA(0): Option "AllowEmptyInitialConfiguration"
[ 11.500] (**) NVIDIA(0): Enabling 2D acceleration
[ 11.500] (II) Loading sub module "glxserver_nvidia"
[ 11.500] (II) LoadModule: "glxserver_nvidia"
[ 11.500] (II) Loading /usr/lib/nvidia/xorg/libglxserver_nvidia.so
[ 11.519] (II) Module glxserver_nvidia: vendor="NVIDIA Corporation"
[ 11.519] compiled for 1.6.99.901, module version = 1.0.0
[ 11.519] Module class: X.Org Server Extension
[ 11.519] (II) NVIDIA GLX Module 470.63.01 Tue Aug 3 20:35:52 UTC 2021
[ 11.519] (II) NVIDIA: The X server supports PRIME Render Offload.
[ 12.368] (--) NVIDIA(0): Valid display device(s) on GPU-0 at PCI:6:0:0
[ 12.368] (--) NVIDIA(0): DFP-0
[ 12.368] (--) NVIDIA(0): DFP-1
[ 12.368] (--) NVIDIA(0): DFP-2 (boot)
[ 12.368] (--) NVIDIA(0): DFP-3
[ 12.368] (II) NVIDIA(0): NVIDIA GPU NVIDIA GeForce GTX 1660 (TU116-A) at PCI:6:0:0
[ 12.368] (II) NVIDIA(0): (GPU-0)
[ 12.368] (--) NVIDIA(0): Memory: 6291456 kBytes
[ 12.368] (--) NVIDIA(0): VideoBIOS: 90.16.25.00.7a
[ 12.368] (II) NVIDIA(0): Detected PCI Express Link width: 16X
[ 12.368] (--) NVIDIA(GPU-0): DFP-0: disconnected
[ 12.368] (--) NVIDIA(GPU-0): DFP-0: Internal TMDS
[ 12.368] (--) NVIDIA(GPU-0): DFP-0: 330.0 MHz maximum pixel clock
[ 12.368] (--) NVIDIA(GPU-0):
[ 12.412] (--) NVIDIA(GPU-0): LG Electronics BL650 (DFP-1): connected
[ 12.412] (--) NVIDIA(GPU-0): LG Electronics BL650 (DFP-1): Internal TMDS
[ 12.412] (--) NVIDIA(GPU-0): LG Electronics BL650 (DFP-1): 600.0 MHz maximum pixel clock
[ 12.412] (--) NVIDIA(GPU-0):
[ 12.412] (--) NVIDIA(GPU-0): AUS VG248 (DFP-2): connected
[ 12.412] (--) NVIDIA(GPU-0): AUS VG248 (DFP-2): Internal DisplayPort
[ 12.412] (--) NVIDIA(GPU-0): AUS VG248 (DFP-2): 2660.0 MHz maximum pixel clock
[ 12.412] (--) NVIDIA(GPU-0):
[ 12.414] (--) NVIDIA(GPU-0): DFP-3: disconnected
[ 12.414] (--) NVIDIA(GPU-0): DFP-3: Internal TMDS
[ 12.414] (--) NVIDIA(GPU-0): DFP-3: 165.0 MHz maximum pixel clock
[ 12.414] (--) NVIDIA(GPU-0):
[ 12.507] (==) NVIDIA(0):
[ 12.507] (==) NVIDIA(0): No modes were requested; the default mode "nvidia-auto-select"
[ 12.507] (==) NVIDIA(0): will be used as the requested mode.
[ 12.507] (==) NVIDIA(0):
[ 12.508] (II) NVIDIA(0): Validated MetaModes:
[ 12.508] (II) NVIDIA(0): "DFP-2:nvidia-auto-select,DFP-1:nvidia-auto-select"
[ 12.508] (II) NVIDIA(0): Virtual screen size determined to be 3840 x 1080
[ 12.561] (--) NVIDIA(0): DPI set to (92, 91); computed from "UseEdidDpi" X config
[ 12.561] (--) NVIDIA(0): option
[ 12.561] (II) NVIDIA: Reserving 24576.00 MB of virtual memory for indirect memory
[ 12.561] (II) NVIDIA: access.
[ 12.564] (II) NVIDIA(0): ACPI: failed to connect to the ACPI event daemon; the daemon
[ 12.564] (II) NVIDIA(0): may not be running or the "AcpidSocketPath" X
[ 12.564] (II) NVIDIA(0): configuration option may not be set correctly. When the
[ 12.564] (II) NVIDIA(0): ACPI event daemon is available, the NVIDIA X driver will
[ 12.564] (II) NVIDIA(0): try to use it to receive ACPI event notifications. For
[ 12.564] (II) NVIDIA(0): details, please see the "ConnectToAcpid" and
[ 12.564] (II) NVIDIA(0): "AcpidSocketPath" X configuration options in Appendix B: X
[ 12.564] (II) NVIDIA(0): Config Options in the README.
[ 12.577] (II) NVIDIA(0): Setting mode "DFP-2:nvidia-auto-select,DFP-1:nvidia-auto-select"
[ 12.676] (==) NVIDIA(0): Disabling shared memory pixmaps
[ 12.676] (==) NVIDIA(0): Backing store enabled
[ 12.676] (==) NVIDIA(0): Silken mouse disabled
[ 12.676] (==) NVIDIA(0): DPMS enabled
[ 12.676] (II) Loading sub module "dri2"
[ 12.676] (II) LoadModule: "dri2"
[ 12.676] (II) Module "dri2" already built-in
[ 12.676] (II) NVIDIA(0): [DRI2] Setup complete
[ 12.676] (II) NVIDIA(0): [DRI2] VDPAU driver: nvidia
[ 12.676] (II) Initializing extension Generic Event Extension
[ 12.676] (II) Initializing extension SHAPE
[ 12.676] (II) Initializing extension MIT-SHM
[ 12.676] (II) Initializing extension XInputExtension
[ 12.677] (II) Initializing extension XTEST
[ 12.677] (II) Initializing extension BIG-REQUESTS
[ 12.677] (II) Initializing extension SYNC
[ 12.677] (II) Initializing extension XKEYBOARD
[ 12.677] (II) Initializing extension XC-MISC
[ 12.677] (II) Initializing extension SECURITY
[ 12.677] (II) Initializing extension XFIXES
[ 12.677] (II) Initializing extension RENDER
[ 12.677] (II) Initializing extension RANDR
[ 12.677] (II) Initializing extension COMPOSITE
[ 12.677] (II) Initializing extension DAMAGE
[ 12.677] (II) Initializing extension MIT-SCREEN-SAVER
[ 12.677] (II) Initializing extension DOUBLE-BUFFER
[ 12.677] (II) Initializing extension RECORD
[ 12.677] (II) Initializing extension DPMS
[ 12.677] (II) Initializing extension Present
[ 12.677] (II) Initializing extension DRI3
[ 12.677] (II) Initializing extension X-Resource
[ 12.677] (II) Initializing extension XVideo
[ 12.677] (II) Initializing extension XVideo-MotionCompensation
[ 12.677] (II) Initializing extension GLX
[ 12.677] (II) Initializing extension GLX
[ 12.677] (II) Indirect GLX disabled.
[ 12.677] (II) GLX: Another vendor is already registered for screen 0
[ 12.677] (II) Initializing extension XFree86-VidModeExtension
[ 12.677] (II) Initializing extension XFree86-DGA
[ 12.677] (II) Initializing extension XFree86-DRI
[ 12.677] (II) Initializing extension DRI2
[ 12.677] (II) Initializing extension NV-GLX
[ 12.677] (II) Initializing extension NV-CONTROL
[ 12.677] (II) Initializing extension XINERAMA
[ 12.721] (II) config/udev: Adding input device Power Button (/dev/input/event1)
[ 12.721] (**) Power Button: Applying InputClass "libinput keyboard catchall"
[ 12.721] (**) Power Button: Applying InputClass "system-keyboard"
[ 12.721] (II) LoadModule: "libinput"
[ 12.721] (II) Loading /usr/lib/xorg/modules/input/libinput_drv.so
[ 12.723] (II) Module libinput: vendor="X.Org Foundation"
[ 12.723] compiled for 1.20.11, module version = 1.1.0
[ 12.723] Module class: X.Org XInput Driver
[ 12.723] ABI class: X.Org XInput driver, version 24.1
[ 12.723] (II) Using input driver 'libinput' for 'Power Button'
[ 12.723] (II) systemd-logind: got fd for /dev/input/event1 13:65 fd 33 paused 0
[ 12.723] (**) Power Button: always reports core events
[ 12.723] (**) Option "Device" "/dev/input/event1"
[ 12.724] (**) Option "_source" "server/udev"
[ 12.726] (II) event1 - Power Button: is tagged by udev as: Keyboard
[ 12.726] (II) event1 - Power Button: device is a keyboard
[ 12.726] (II) event1 - Power Button: device removed
[ 12.726] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/LNXPWRBN:00/input/input1/event1"
[ 12.726] (II) XINPUT: Adding extended input device "Power Button" (type: KEYBOARD, id 6)
[ 12.726] (**) Option "xkb_layout" "pt"
[ 12.734] (II) event1 - Power Button: is tagged by udev as: Keyboard
[ 12.734] (II) event1 - Power Button: device is a keyboard
[ 12.734] (II) config/udev: Adding input device Power Button (/dev/input/event0)
[ 12.734] (**) Power Button: Applying InputClass "libinput keyboard catchall"
[ 12.734] (**) Power Button: Applying InputClass "system-keyboard"
[ 12.734] (II) Using input driver 'libinput' for 'Power Button'
[ 12.734] (II) systemd-logind: got fd for /dev/input/event0 13:64 fd 36 paused 0
[ 12.734] (**) Power Button: always reports core events
[ 12.734] (**) Option "Device" "/dev/input/event0"
[ 12.734] (**) Option "_source" "server/udev"
[ 12.735] (II) event0 - Power Button: is tagged by udev as: Keyboard
[ 12.735] (II) event0 - Power Button: device is a keyboard
[ 12.735] (II) event0 - Power Button: device removed
[ 12.735] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input0/event0"
[ 12.735] (II) XINPUT: Adding extended input device "Power Button" (type: KEYBOARD, id 7)
[ 12.735] (**) Option "xkb_layout" "pt"
[ 12.735] (II) event0 - Power Button: is tagged by udev as: Keyboard
[ 12.735] (II) event0 - Power Button: device is a keyboard
[ 12.735] (II) config/udev: Adding input device Razer Razer Basilisk (/dev/input/event19)
[ 12.735] (**) Razer Razer Basilisk: Applying InputClass "libinput pointer catchall"
[ 12.735] (II) Using input driver 'libinput' for 'Razer Razer Basilisk'
[ 12.790] (II) systemd-logind: got fd for /dev/input/event19 13:83 fd 37 paused 0
[ 12.790] (**) Razer Razer Basilisk: always reports core events
[ 12.790] (**) Option "Device" "/dev/input/event19"
[ 12.790] (**) Option "_source" "server/udev"
[ 12.791] (II) event19 - Razer Razer Basilisk: is tagged by udev as: Mouse
[ 12.791] (II) event19 - Razer Razer Basilisk: device is a pointer
[ 12.791] (II) event19 - Razer Razer Basilisk: device removed
[ 12.791] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:01.2/0000:02:00.0/usb1/1-4/1-4:1.0/0003:1532:0064.0003/input/input21/event19"
[ 12.791] (II) XINPUT: Adding extended input device "Razer Razer Basilisk" (type: MOUSE, id 8)
[ 12.791] (**) Option "AccelerationScheme" "none"
[ 12.791] (**) Razer Razer Basilisk: (accel) selected scheme none/0
[ 12.791] (**) Razer Razer Basilisk: (accel) acceleration factor: 2.000
[ 12.791] (**) Razer Razer Basilisk: (accel) acceleration threshold: 4
[ 12.792] (II) event19 - Razer Razer Basilisk: is tagged by udev as: Mouse
[ 12.792] (II) event19 - Razer Razer Basilisk: device is a pointer
[ 12.793] (II) config/udev: Adding input device Razer Razer Basilisk (/dev/input/mouse0)
[ 12.793] (II) No input driver specified, ignoring this device.
[ 12.793] (II) This device may have been added with another device file.
[ 12.793] (II) config/udev: Adding input device Razer Razer Basilisk Keyboard (/dev/input/event20)
[ 12.793] (**) Razer Razer Basilisk Keyboard: Applying InputClass "libinput keyboard catchall"
[ 12.793] (**) Razer Razer Basilisk Keyboard: Applying InputClass "system-keyboard"
[ 12.793] (II) Using input driver 'libinput' for 'Razer Razer Basilisk Keyboard'
[ 12.794] (II) systemd-logind: got fd for /dev/input/event20 13:84 fd 38 paused 0
[ 12.794] (**) Razer Razer Basilisk Keyboard: always reports core events
[ 12.794] (**) Option "Device" "/dev/input/event20"
[ 12.794] (**) Option "_source" "server/udev"
[ 12.794] (II) event20 - Razer Razer Basilisk Keyboard: is tagged by udev as: Keyboard
[ 12.794] (II) event20 - Razer Razer Basilisk Keyboard: device is a keyboard
[ 12.795] (II) event20 - Razer Razer Basilisk Keyboard: device removed
[ 12.795] (II) libinput: Razer Razer Basilisk Keyboard: needs a virtual subdevice
[ 12.795] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:01.2/0000:02:00.0/usb1/1-4/1-4:1.1/0003:1532:0064.0004/input/input22/event20"
[ 12.795] (II) XINPUT: Adding extended input device "Razer Razer Basilisk Keyboard" (type: MOUSE, id 9)
[ 12.795] (**) Option "AccelerationScheme" "none"
[ 12.795] (**) Razer Razer Basilisk Keyboard: (accel) selected scheme none/0
[ 12.795] (**) Razer Razer Basilisk Keyboard: (accel) acceleration factor: 2.000
[ 12.795] (**) Razer Razer Basilisk Keyboard: (accel) acceleration threshold: 4
[ 12.795] (II) event20 - Razer Razer Basilisk Keyboard: is tagged by udev as: Keyboard
[ 12.795] (II) event20 - Razer Razer Basilisk Keyboard: device is a keyboard
[ 12.796] (II) config/udev: Adding input device Razer Razer Basilisk (/dev/input/event21)
[ 12.796] (II) No input driver specified, ignoring this device.
[ 12.796] (II) This device may have been added with another device file.
[ 12.796] (II) config/udev: Adding input device Razer Razer Basilisk (/dev/input/event22)
[ 12.796] (**) Razer Razer Basilisk: Applying InputClass "libinput keyboard catchall"
[ 12.796] (**) Razer Razer Basilisk: Applying InputClass "system-keyboard"
[ 12.796] (II) Using input driver 'libinput' for 'Razer Razer Basilisk'
[ 12.797] (II) systemd-logind: got fd for /dev/input/event22 13:86 fd 39 paused 0
[ 12.797] (**) Razer Razer Basilisk: always reports core events
[ 12.797] (**) Option "Device" "/dev/input/event22"
[ 12.797] (**) Option "_source" "server/udev"
[ 12.798] (II) event22 - Razer Razer Basilisk: is tagged by udev as: Keyboard
[ 12.798] (II) event22 - Razer Razer Basilisk: device is a keyboard
[ 12.798] (II) event22 - Razer Razer Basilisk: device removed
[ 12.798] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:01.2/0000:02:00.0/usb1/1-4/1-4:1.2/0003:1532:0064.0005/input/input24/event22"
[ 12.798] (II) XINPUT: Adding extended input device "Razer Razer Basilisk" (type: KEYBOARD, id 10)
[ 12.798] (**) Option "xkb_layout" "pt"
[ 12.799] (II) event22 - Razer Razer Basilisk: is tagged by udev as: Keyboard
[ 12.799] (II) event22 - Razer Razer Basilisk: device is a keyboard
[ 12.800] (II) config/udev: Adding input device HDA NVidia HDMI/DP,pcm=3 (/dev/input/event4)
[ 12.800] (II) No input driver specified, ignoring this device.
[ 12.800] (II) This device may have been added with another device file.
[ 12.800] (II) config/udev: Adding input device HDA NVidia HDMI/DP,pcm=7 (/dev/input/event5)
[ 12.800] (II) No input driver specified, ignoring this device.
[ 12.800] (II) This device may have been added with another device file.
[ 12.801] (II) config/udev: Adding input device HDA NVidia HDMI/DP,pcm=8 (/dev/input/event6)
[ 12.801] (II) No input driver specified, ignoring this device.
[ 12.801] (II) This device may have been added with another device file.
[ 12.801] (II) config/udev: Adding input device HDA NVidia HDMI/DP,pcm=9 (/dev/input/event7)
[ 12.801] (II) No input driver specified, ignoring this device.
[ 12.801] (II) This device may have been added with another device file.
[ 12.801] (II) config/udev: Adding input device HDA NVidia HDMI/DP,pcm=10 (/dev/input/event8)
[ 12.801] (II) No input driver specified, ignoring this device.
[ 12.801] (II) This device may have been added with another device file.
[ 12.801] (II) config/udev: Adding input device HDA NVidia HDMI/DP,pcm=11 (/dev/input/event9)
[ 12.801] (II) No input driver specified, ignoring this device.
[ 12.801] (II) This device may have been added with another device file.
[ 12.802] (II) config/udev: Adding input device Logitech G512 RGB MECHANICAL GAMING KEYBOARD (/dev/input/event3)
[ 12.802] (**) Logitech G512 RGB MECHANICAL GAMING KEYBOARD: Applying InputClass "libinput keyboard catchall"
[ 12.802] (**) Logitech G512 RGB MECHANICAL GAMING KEYBOARD: Applying InputClass "system-keyboard"
[ 12.802] (II) Using input driver 'libinput' for 'Logitech G512 RGB MECHANICAL GAMING KEYBOARD'
[ 12.802] (II) systemd-logind: got fd for /dev/input/event3 13:67 fd 40 paused 0
[ 12.802] (**) Logitech G512 RGB MECHANICAL GAMING KEYBOARD: always reports core events
[ 12.802] (**) Option "Device" "/dev/input/event3"
[ 12.802] (**) Option "_source" "server/udev"
[ 12.803] (II) event3 - Logitech G512 RGB MECHANICAL GAMING KEYBOARD: is tagged by udev as: Keyboard
[ 12.803] (II) event3 - Logitech G512 RGB MECHANICAL GAMING KEYBOARD: device is a keyboard
[ 12.803] (II) event3 - Logitech G512 RGB MECHANICAL GAMING KEYBOARD: device removed
[ 12.803] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:08.1/0000:08:00.3/usb5/5-3/5-3:1.0/0003:046D:C33C.0001/input/input3/event3"
[ 12.803] (II) XINPUT: Adding extended input device "Logitech G512 RGB MECHANICAL GAMING KEYBOARD" (type: KEYBOARD, id 11)
[ 12.803] (**) Option "xkb_layout" "pt"
[ 12.804] (II) event3 - Logitech G512 RGB MECHANICAL GAMING KEYBOARD: is tagged by udev as: Keyboard
[ 12.804] (II) event3 - Logitech G512 RGB MECHANICAL GAMING KEYBOARD: device is a keyboard
[ 12.805] (II) config/udev: Adding input device Logitech G512 RGB MECHANICAL GAMING KEYBOARD Keyboard (/dev/input/event10)
[ 12.805] (**) Logitech G512 RGB MECHANICAL GAMING KEYBOARD Keyboard: Applying InputClass "libinput keyboard catchall"
[ 12.805] (**) Logitech G512 RGB MECHANICAL GAMING KEYBOARD Keyboard: Applying InputClass "system-keyboard"
[ 12.805] (II) Using input driver 'libinput' for 'Logitech G512 RGB MECHANICAL GAMING KEYBOARD Keyboard'
[ 12.805] (II) systemd-logind: got fd for /dev/input/event10 13:74 fd 41 paused 0
[ 12.805] (**) Logitech G512 RGB MECHANICAL GAMING KEYBOARD Keyboard: always reports core events
[ 12.805] (**) Option "Device" "/dev/input/event10"
[ 12.805] (**) Option "_source" "server/udev"
[ 12.806] (II) event10 - Logitech G512 RGB MECHANICAL GAMING KEYBOARD Keyboard: is tagged by udev as: Keyboard
[ 12.806] (II) event10 - Logitech G512 RGB MECHANICAL GAMING KEYBOARD Keyboard: device is a keyboard
[ 12.806] (II) event10 - Logitech G512 RGB MECHANICAL GAMING KEYBOARD Keyboard: device removed
[ 12.806] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:08.1/0000:08:00.3/usb5/5-3/5-3:1.1/0003:046D:C33C.0002/input/input10/event10"
[ 12.806] (II) XINPUT: Adding extended input device "Logitech G512 RGB MECHANICAL GAMING KEYBOARD Keyboard" (type: KEYBOARD, id 12)
[ 12.806] (**) Option "xkb_layout" "pt"
[ 12.807] (II) event10 - Logitech G512 RGB MECHANICAL GAMING KEYBOARD Keyboard: is tagged by udev as: Keyboard
[ 12.807] (II) event10 - Logitech G512 RGB MECHANICAL GAMING KEYBOARD Keyboard: device is a keyboard
[ 12.808] (II) config/udev: Adding input device HD-Audio Generic Front Mic (/dev/input/event12)
[ 12.808] (II) No input driver specified, ignoring this device.
[ 12.808] (II) This device may have been added with another device file.
[ 12.808] (II) config/udev: Adding input device HD-Audio Generic Rear Mic (/dev/input/event13)
[ 12.808] (II) No input driver specified, ignoring this device.
[ 12.808] (II) This device may have been added with another device file.
[ 12.808] (II) config/udev: Adding input device HD-Audio Generic Line (/dev/input/event14)
[ 12.808] (II) No input driver specified, ignoring this device.
[ 12.808] (II) This device may have been added with another device file.
[ 12.808] (II) config/udev: Adding input device HD-Audio Generic Line Out Front (/dev/input/event15)
[ 12.808] (II) No input driver specified, ignoring this device.
[ 12.808] (II) This device may have been added with another device file.
[ 12.809] (II) config/udev: Adding input device HD-Audio Generic Line Out Surround (/dev/input/event16)
[ 12.809] (II) No input driver specified, ignoring this device.
[ 12.809] (II) This device may have been added with another device file.
[ 12.809] (II) config/udev: Adding input device HD-Audio Generic Line Out CLFE (/dev/input/event17)
[ 12.809] (II) No input driver specified, ignoring this device.
[ 12.809] (II) This device may have been added with another device file.
[ 12.809] (II) config/udev: Adding input device HD-Audio Generic Front Headphone (/dev/input/event18)
[ 12.809] (II) No input driver specified, ignoring this device.
[ 12.809] (II) This device may have been added with another device file.
[ 12.809] (II) config/udev: Adding input device Eee PC WMI hotkeys (/dev/input/event11)
[ 12.809] (**) Eee PC WMI hotkeys: Applying InputClass "libinput keyboard catchall"
[ 12.809] (**) Eee PC WMI hotkeys: Applying InputClass "system-keyboard"
[ 12.809] (II) Using input driver 'libinput' for 'Eee PC WMI hotkeys'
[ 12.810] (II) systemd-logind: got fd for /dev/input/event11 13:75 fd 42 paused 0
[ 12.810] (**) Eee PC WMI hotkeys: always reports core events
[ 12.810] (**) Option "Device" "/dev/input/event11"
[ 12.810] (**) Option "_source" "server/udev"
[ 12.810] (II) event11 - Eee PC WMI hotkeys: is tagged by udev as: Keyboard
[ 12.810] (II) event11 - Eee PC WMI hotkeys: device is a keyboard
[ 12.810] (II) event11 - Eee PC WMI hotkeys: device removed
[ 12.810] (**) Option "config_info" "udev:/sys/devices/platform/eeepc-wmi/input/input13/event11"
[ 12.810] (II) XINPUT: Adding extended input device "Eee PC WMI hotkeys" (type: KEYBOARD, id 13)
[ 12.810] (**) Option "xkb_layout" "pt"
[ 12.811] (II) event11 - Eee PC WMI hotkeys: is tagged by udev as: Keyboard
[ 12.811] (II) event11 - Eee PC WMI hotkeys: device is a keyboard
[ 12.811] (II) config/udev: Adding input device PC Speaker (/dev/input/event2)
[ 12.811] (II) No input driver specified, ignoring this device.
[ 12.811] (II) This device may have been added with another device file.
[ 12.814] (**) Razer Razer Basilisk Keyboard: Applying InputClass "libinput keyboard catchall"
[ 12.814] (**) Razer Razer Basilisk Keyboard: Applying InputClass "system-keyboard"
[ 12.814] (II) Using input driver 'libinput' for 'Razer Razer Basilisk Keyboard'
[ 12.814] (II) systemd-logind: returning pre-existing fd for /dev/input/event20 13:84
[ 12.814] (**) Razer Razer Basilisk Keyboard: always reports core events
[ 12.814] (**) Option "Device" "/dev/input/event20"
[ 12.814] (**) Option "_source" "_driver/libinput"
[ 12.814] (II) libinput: Razer Razer Basilisk Keyboard: is a virtual subdevice
[ 12.814] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:01.2/0000:02:00.0/usb1/1-4/1-4:1.1/0003:1532:0064.0004/input/input22/event20"
[ 12.814] (II) XINPUT: Adding extended input device "Razer Razer Basilisk Keyboard" (type: KEYBOARD, id 14)
[ 12.814] (**) Option "xkb_layout" "pt"
[ 12.815] (--) NVIDIA(GPU-0): AUS VG248 (DFP-2): connected
[ 12.815] (--) NVIDIA(GPU-0): AUS VG248 (DFP-2): Internal DisplayPort
[ 12.815] (--) NVIDIA(GPU-0): AUS VG248 (DFP-2): 2660.0 MHz maximum pixel clock
[ 12.815] (--) NVIDIA(GPU-0):
[ 61.405] (EE) event19 - Razer Razer Basilisk: client bug: event processing lagging behind by 14ms, your system is too slowLast edited by DF32 (2021-09-14 12:42:05)
Offline
[ 12.507] (==) NVIDIA(0):
[ 12.507] (==) NVIDIA(0): No modes were requested; the default mode "nvidia-auto-select"
[ 12.507] (==) NVIDIA(0): will be used as the requested mode.
[ 12.507] (==) NVIDIA(0):
[ 12.508] (II) NVIDIA(0): Validated MetaModes:
[ 12.508] (II) NVIDIA(0): "DFP-2:nvidia-auto-select,DFP-1:nvidia-auto-select"
[ 12.508] (II) NVIDIA(0): Virtual screen size determined to be 3840 x 1080It completely ignores the option…
grep -ri nvidia /{usr/share,etc}/X11/xorg.conf*Online
grep -ri nvidia /{usr/share,etc}/X11/xorg.conf*
Output of the command for both configs:
working config
/usr/share/X11/xorg.conf.d/10-nvidia-drm-outputclass.conf: Identifier "nvidia"
/usr/share/X11/xorg.conf.d/10-nvidia-drm-outputclass.conf: MatchDriver "nvidia-drm"
/usr/share/X11/xorg.conf.d/10-nvidia-drm-outputclass.conf: Driver "nvidia"
/usr/share/X11/xorg.conf.d/10-nvidia-drm-outputclass.conf: ModulePath "/usr/lib/nvidia/xorg"
/etc/X11/xorg.conf:# nvidia-settings: X configuration file generated by nvidia-settings
/etc/X11/xorg.conf:# nvidia-settings: version 470.63.01
/etc/X11/xorg.conf: Driver "nvidia"
/etc/X11/xorg.conf: VendorName "NVIDIA Corporation"
/etc/X11/xorg.conf: BoardName "NVIDIA GeForce GTX 1660"
/etc/X11/xorg.conf: Option "nvidiaXineramaInfoOrder" "DFP-2"
/etc/X11/xorg.conf: Option "metamodes" "DP-0: 1920x1080 +1920+0, HDMI-0: nvidia-auto-select +0+0"
/etc/X11/xorg.conf.d/20-nvidia.conf: Identifier "nvidia"
/etc/X11/xorg.conf.d/20-nvidia.conf: Driver "nvidia"
/etc/X11/xorg.conf.d/20-nvidia.conf: VendorName "NVIDIA Corporation"
not working config
/usr/share/X11/xorg.conf.d/10-nvidia-drm-outputclass.conf: Identifier "nvidia"
/usr/share/X11/xorg.conf.d/10-nvidia-drm-outputclass.conf: MatchDriver "nvidia-drm"
/usr/share/X11/xorg.conf.d/10-nvidia-drm-outputclass.conf: Driver "nvidia"
/usr/share/X11/xorg.conf.d/10-nvidia-drm-outputclass.conf: ModulePath "/usr/lib/nvidia/xorg"
/etc/X11/xorg.conf: Driver "nvidia"
/etc/X11/xorg.conf: VendorName "NVIDIA Corporation"
/etc/X11/xorg.conf: BoardName "NVIDIA GeForce GTX 1660"
/etc/X11/xorg.conf: Option "nvidiaXineramaInfoOrder" "DFP-2"
/etc/X11/xorg.conf: Option "metamodes" "DP-0: 1920x1080 +1920+0, HDMI-0: nvidia-auto-select +0+0"
/etc/X11/xorg.conf.d/20-nvidia.conf: Identifier "nvidia"
/etc/X11/xorg.conf.d/20-nvidia.conf: Driver "nvidia"
/etc/X11/xorg.conf.d/20-nvidia.conf: VendorName "NVIDIA Corporation"Last edited by DF32 (2021-09-14 20:34:48)
Offline
Post both, xorg.conf and 20-nvidia.conf
Online
Ups, forgot to remove that file (20-nvidia) after generating the xorg.conf file. After removing it, the monitors work fine with the section you provide. Still, with my initial config doesn't work.
Offline
[ 13.566] (WW) NVIDIA(0): Option "Primary" is not used
[ 13.566] (WW) NVIDIA(0): Option "RightOf" is not used
Bug/unimplemented/nvidia - probably because the driver elects to
[ 13.401] (==) NVIDIA(0): No modes were requested; the default mode "nvidia-auto-select"
[ 13.401] (==) NVIDIA(0): will be used as the requested mode.
[ 13.401] (==) NVIDIA(0):
…
[ 13.469] (II) NVIDIA(0): Setting mode "DFP-2:nvidia-auto-select,DFP-1:nvidia-auto-select"
first.
Online