You are not logged in.

#1 2023-03-12 18:19:56

jarocki
Member
From: Russia
Registered: 2023-03-12
Posts: 2

How to set up Xorg on NVidia to add a few virtual monitors for VR

I have:
OS: Arch Linux
Kernel: x86_64 Linux 6.2.2-arch2-1
Shell: zsh 5.9
WM: i3
CPU: Intel Core i7-7700K @ 8x 4.6GHz [36.0°C]
GPU: NVIDIA GeForce GTX 1660 (proprietary driver, version: 525.89.02)
RAM: 8237MiB / 64244MiB

I'm using, also, the Immersed app to stream my desktop to VR. The app can add a few virtual monitors to show them in VR, but unfortunately, it creates new ones only in macOS and Windows. For Linux, they suggest creating virtual monitors using any external tool or way, and the app will show them in VR as on macOS or Windows.

So, the aim is creating those virtual monitors.

I've read and tried all described or suggested here:

My current /etc/X11/xorg.conf:

# nvidia-xconfig: X configuration file generated by nvidia-xconfig
# nvidia-xconfig:  version 525.89.02


Section "ServerLayout"
    Identifier     "Layout0"
    Screen      0  "Screen0" 0 0
    InputDevice    "Keyboard0" "CoreKeyboard"
    InputDevice    "Mouse0" "CorePointer"
EndSection

Section "Files"
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"
    Identifier     "Monitor0"
    VendorName     "Unknown"
    ModelName      "Unknown"
    Option         "DPMS"
    HorizSync      30-82
    VertRefresh    56-76
EndSection

Section "Device"
    Identifier     "Device0"
    Driver         "nvidia"
    VendorName     "NVIDIA Corporation"
EndSection

Section "Screen"
    Identifier     "Screen0"
    Device         "Device0"
    Monitor        "Monitor0"
    DefaultDepth    24
    SubSection "Display"
        Depth       24
    EndSubSection
EndSection

Section "Monitor"
    Identifier     "dummy_monitor"
    HorizSync      28.0-80.0
    VertRefresh    48.0-75.0
    Modeline       "2560x1440_85.00" 454.75 2560 2768 3048 3536 1440 1443 1448 1514
EndSection

Section "Device"
    Identifier     "dummy_card"
    VideoRam       256000
    Driver         "dummy"
EndSection

Section "Screen"
    Identifier     "dummy_screen"
    Device         "dummy_card"
    Monitor        "dummy_monitor"
    SubSection "Display"
        Depth      24
	Modes      "2560x1440" 
    EndSubSection
EndSection

xrandr output:

Screen 0: minimum 8 x 8, current 2560 x 1440, maximum 32767 x 32767
DP-0 disconnected primary (normal left inverted right x axis y axis)
DP-1 disconnected (normal left inverted right x axis y axis)
DP-2 disconnected (normal left inverted right x axis y axis)
DP-3 disconnected (normal left inverted right x axis y axis)
HDMI-0 disconnected (normal left inverted right x axis y axis)
DP-4 connected 2560x1440+0+0 (normal left inverted right x axis y axis) 597mm x 336mm
   2560x1440     59.95*+
   1920x1080     60.00    59.94    50.00  
   1680x1050     59.95  
   1600x900      60.00  
   1280x1024     75.02    60.02  
   1280x800      59.81  
   1280x720      60.00    59.94    50.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-5 disconnected (normal left inverted right x axis y axis)

Also:

~$ ll /etc/X11/xorg.conf.d
-rw-r--r-- 1 root root 205 янв  8  2022 00-keyboard.conf
-rw-r--r-- 1 root root 161 мар 12 19:45 10-nvidia-hmd.conf
-rw-r--r-- 1 root root 104 мар 12 15:39 20-intel.conf

~$ cat  /etc/X11/xorg.conf.d/10-nvidia-hmd.conf
Section "OutputClass"
    Identifier     "Nvidia HMD"
    MatchDriver    "nvidia-drm"
    Driver         "nvidia"
    Option         "AllowHMD" "yes"
EndSection

~$ cat /etc/X11/xorg.conf.d/20-intel.conf
Section "Device"
    Identifier "intelgpu0"
    Driver "intel"
    Option "VirtualHeads" "2"
EndSection

A bit of logs:

~$ cat /var/log/Xorg.0.log | grep dummy 
[  2200.057] (**) |   |-->GPUDevice "dummy_card"
[  2200.063] (II) LoadModule: "dummy"
[  2200.063] (II) Loading /usr/lib/xorg/modules/drivers/dummy_drv.so
[  2200.063] (II) Module dummy: vendor="X.Org Foundation"
[  2200.063] (II) DUMMY: Driver for Dummy chipsets: dummy
[  2200.064] (WW) Falling back to old probe method for dummy
[  2200.064] (II) UnloadModule: "dummy"

~$ cat /var/log/Xorg.0.log 
[  2200.030] 
X.Org X Server 1.21.1.7
X Protocol Version 11, Revision 0
[  2200.036] Current Operating System: Linux dt 6.2.2-arch2-1 #1 SMP PREEMPT_DYNAMIC Wed, 08 Mar 2023 04:07:29 +0000 x86_64
[  2200.036] Kernel command line: BOOT_IMAGE=/boot/vmlinuz-linux root=UUID=6311f801-e731-44a4-b2ea-0e11889c2376 rw loglevel=3 quiet
[  2200.040]  
[  2200.041] Current version of pixman: 0.42.2
[  2200.045] 	Before reporting problems, check http://wiki.x.org
	to make sure that you have the latest version.
[  2200.045] Markers: (--) probed, (**) from config file, (==) default setting,
	(++) from command line, (!!) notice, (II) informational,
	(WW) warning, (EE) error, (NI) not implemented, (??) unknown.
[  2200.052] (==) Log file: "/var/log/Xorg.0.log", Time: Sun Mar 12 20:07:45 2023
[  2200.054] (==) Using config file: "/etc/X11/xorg.conf"
[  2200.055] (==) Using config directory: "/etc/X11/xorg.conf.d"
[  2200.057] (==) Using system config directory "/usr/share/X11/xorg.conf.d"
[  2200.057] (==) ServerLayout "Layout0"
[  2200.057] (**) |-->Screen "Screen0" (0)
[  2200.057] (**) |   |-->Monitor "Monitor0"
[  2200.057] (**) |   |-->Device "Device0"
[  2200.057] (**) |   |-->GPUDevice "nvidiagpu0"
[  2200.057] (**) |   |-->GPUDevice "intelgpu0"
[  2200.057] (**) |   |-->GPUDevice "intelgpu0"
[  2200.057] (**) |   |-->GPUDevice "dummy_card"
[  2200.057] (**) |-->Input Device "Keyboard0"
[  2200.057] (**) |-->Input Device "Mouse0"
[  2200.057] (==) Automatically adding devices
[  2200.057] (==) Automatically enabling devices
[  2200.057] (==) Automatically adding GPU devices
[  2200.057] (==) Automatically binding GPU devices
[  2200.057] (==) Max clients allowed: 256, resource mask: 0x1fffff
[  2200.057] (WW) The directory "/usr/share/fonts/Type1" does not exist.
[  2200.057] 	Entry deleted from font path.
[  2200.057] (==) FontPath set to:
	/usr/share/fonts/misc,
	/usr/share/fonts/TTF,
	/usr/share/fonts/OTF,
	/usr/share/fonts/100dpi,
	/usr/share/fonts/75dpi
[  2200.057] (==) ModulePath set to "/usr/lib/xorg/modules"
[  2200.057] (WW) Hotplugging is on, devices using drivers 'kbd', 'mouse' or 'vmmouse' will be disabled.
[  2200.057] (WW) Disabling Keyboard0
[  2200.057] (WW) Disabling Mouse0
[  2200.057] (II) Module ABI versions:
[  2200.057] 	X.Org ANSI C Emulation: 0.4
[  2200.057] 	X.Org Video Driver: 25.2
[  2200.057] 	X.Org XInput driver : 24.4
[  2200.057] 	X.Org Server Extension : 10.0
[  2200.058] (++) using VT number 1

[  2200.059] (II) systemd-logind: took control of session /org/freedesktop/login1/session/_31
[  2200.059] (II) xfree86: Adding drm device (/dev/dri/card0)
[  2200.059] (II) Platform probe for /sys/devices/pci0000:00/0000:00:01.0/0000:01:00.0/drm/card0
[  2200.060] (II) systemd-logind: got fd for /dev/dri/card0 226:0 fd 13 paused 0
[  2200.060] (II) xfree86: Adding drm device (/dev/dri/card1)
[  2200.060] (II) Platform probe for /sys/devices/platform/evdi.0/drm/card1
[  2200.060] (II) systemd-logind: got fd for /dev/dri/card1 226:1 fd 14 paused 0
[  2200.061] (**) OutputClass "nvidia" ModulePath extended to "/usr/lib/nvidia/xorg,/usr/lib/xorg/modules,/usr/lib/xorg/modules"
[  2200.061] (--) PCI:*(1@0:0:0) 10de:2184:1458:3fc8 rev 161, Mem @ 0xde000000/16777216, 0xc0000000/268435456, 0xd0000000/33554432, I/O @ 0x0000e000/128, BIOS @ 0x????????/131072
[  2200.062] (WW) Open ACPI failed (/var/run/acpid.socket) (No such file or directory)
[  2200.062] (II) LoadModule: "glx"
[  2200.062] (II) Loading /usr/lib/xorg/modules/extensions/libglx.so
[  2200.063] (II) Module glx: vendor="X.Org Foundation"
[  2200.063] 	compiled for 1.21.1.7, module version = 1.0.0
[  2200.063] 	ABI class: X.Org Server Extension, version 10.0
[  2200.063] (II) LoadModule: "nvidia"
[  2200.063] (II) Loading /usr/lib/xorg/modules/drivers/nvidia_drv.so
[  2200.063] (II) Module nvidia: vendor="NVIDIA Corporation"
[  2200.063] 	compiled for 1.6.99.901, module version = 1.0.0
[  2200.063] 	Module class: X.Org Video Driver
[  2200.063] (II) LoadModule: "intel"
[  2200.063] (WW) Warning, couldn't open module intel
[  2200.063] (EE) Failed to load module "intel" (module does not exist, 0)
[  2200.063] (II) LoadModule: "dummy"
[  2200.063] (II) Loading /usr/lib/xorg/modules/drivers/dummy_drv.so
[  2200.063] (II) Module dummy: vendor="X.Org Foundation"
[  2200.063] 	compiled for 1.21.1.3, module version = 0.4.0
[  2200.063] 	Module class: X.Org Video Driver
[  2200.063] 	ABI class: X.Org Video Driver, version 25.2
[  2200.063] (II) NVIDIA dlloader X Driver  525.89.02  Wed Feb  1 23:14:37 UTC 2023
[  2200.063] (II) NVIDIA Unified Driver for all Supported NVIDIA GPUs
[  2200.063] (II) DUMMY: Driver for Dummy chipsets: dummy
[  2200.063] (II) systemd-logind: releasing fd for 226:0
[  2200.064] (II) Loading sub module "fb"
[  2200.064] (II) LoadModule: "fb"
[  2200.064] (II) Module "fb" already built-in
[  2200.064] (II) Loading sub module "wfb"
[  2200.064] (II) LoadModule: "wfb"
[  2200.064] (II) Loading /usr/lib/xorg/modules/libwfb.so
[  2200.064] (II) Module wfb: vendor="X.Org Foundation"
[  2200.064] 	compiled for 1.21.1.7, module version = 1.0.0
[  2200.064] 	ABI class: X.Org ANSI C Emulation, version 0.4
[  2200.064] (II) Loading sub module "ramdac"
[  2200.064] (II) LoadModule: "ramdac"
[  2200.064] (II) Module "ramdac" already built-in
[  2200.064] (WW) Falling back to old probe method for dummy
[  2200.064] (II) systemd-logind: releasing fd for 226:1
[  2200.064] (EE) Screen 1 deleted because of no matching config section.
[  2200.064] (II) UnloadModule: "dummy"
[  2200.064] (**) NVIDIA(0): Depth 24, (--) framebuffer bpp 32
[  2200.064] (==) NVIDIA(0): RGB weight 888
[  2200.064] (==) NVIDIA(0): Default visual is TrueColor
[  2200.064] (==) NVIDIA(0): Using gamma correction (1.0, 1.0, 1.0)
[  2200.064] (II) Applying OutputClass "nvidia" options to /dev/dri/card0
[  2200.064] (II) Applying OutputClass "Nvidia HMD" options to /dev/dri/card0
[  2200.064] (**) NVIDIA(0): Option "AllowEmptyInitialConfiguration"
[  2200.064] (**) NVIDIA(0): Option "AllowHMD" "yes"
[  2200.064] (**) NVIDIA(0): Enabling 2D acceleration
[  2200.064] (II) Loading sub module "glxserver_nvidia"
[  2200.064] (II) LoadModule: "glxserver_nvidia"
[  2200.064] (II) Loading /usr/lib/nvidia/xorg/libglxserver_nvidia.so
[  2200.069] (II) Module glxserver_nvidia: vendor="NVIDIA Corporation"
[  2200.069] 	compiled for 1.6.99.901, module version = 1.0.0
[  2200.069] 	Module class: X.Org Server Extension
[  2200.069] (II) NVIDIA GLX Module  525.89.02  Wed Feb  1 23:13:01 UTC 2023
[  2200.069] (II) NVIDIA: The X server supports PRIME Render Offload.
[  2200.526] (--) NVIDIA(0): Valid display device(s) on GPU-0 at PCI:1:0:0
[  2200.526] (--) NVIDIA(0):     DFP-0
[  2200.526] (--) NVIDIA(0):     DFP-1
[  2200.526] (--) NVIDIA(0):     DFP-2
[  2200.526] (--) NVIDIA(0):     DFP-3
[  2200.526] (--) NVIDIA(0):     DFP-4
[  2200.526] (--) NVIDIA(0):     DFP-5 (boot)
[  2200.527] (--) NVIDIA(0):     DFP-6
[  2200.527] (II) NVIDIA(0): NVIDIA GPU NVIDIA GeForce GTX 1660 (TU116-A) at PCI:1:0:0
[  2200.527] (II) NVIDIA(0):     (GPU-0)
[  2200.527] (--) NVIDIA(0): Memory: 6291456 kBytes
[  2200.527] (--) NVIDIA(0): VideoBIOS: 90.16.34.00.5a
[  2200.527] (II) NVIDIA(0): Detected PCI Express Link width: 16X
[  2200.527] (--) NVIDIA(GPU-0): DFP-0: disconnected
[  2200.527] (--) NVIDIA(GPU-0): DFP-0: Internal DisplayPort
[  2200.527] (--) NVIDIA(GPU-0): DFP-0: 2660.0 MHz maximum pixel clock
[  2200.527] (--) NVIDIA(GPU-0): 
[  2200.527] (--) NVIDIA(GPU-0): DFP-1: disconnected
[  2200.527] (--) NVIDIA(GPU-0): DFP-1: Internal TMDS
[  2200.527] (--) NVIDIA(GPU-0): DFP-1: 165.0 MHz maximum pixel clock
[  2200.527] (--) NVIDIA(GPU-0): 
[  2200.527] (--) NVIDIA(GPU-0): DFP-2: disconnected
[  2200.527] (--) NVIDIA(GPU-0): DFP-2: Internal DisplayPort
[  2200.527] (--) NVIDIA(GPU-0): DFP-2: 2660.0 MHz maximum pixel clock
[  2200.527] (--) NVIDIA(GPU-0): 
[  2200.527] (--) NVIDIA(GPU-0): DFP-3: disconnected
[  2200.527] (--) NVIDIA(GPU-0): DFP-3: Internal TMDS
[  2200.527] (--) NVIDIA(GPU-0): DFP-3: 165.0 MHz maximum pixel clock
[  2200.527] (--) NVIDIA(GPU-0): 
[  2200.527] (--) NVIDIA(GPU-0): DFP-4: disconnected
[  2200.527] (--) NVIDIA(GPU-0): DFP-4: Internal TMDS
[  2200.527] (--) NVIDIA(GPU-0): DFP-4: 165.0 MHz maximum pixel clock
[  2200.527] (--) NVIDIA(GPU-0): 
[  2200.528] (--) NVIDIA(GPU-0): BenQ LCD (DFP-5): connected
[  2200.528] (--) NVIDIA(GPU-0): BenQ LCD (DFP-5): Internal DisplayPort
[  2200.528] (--) NVIDIA(GPU-0): BenQ LCD (DFP-5): 2660.0 MHz maximum pixel clock
[  2200.528] (--) NVIDIA(GPU-0): 
[  2200.530] (--) NVIDIA(GPU-0): DFP-6: disconnected
[  2200.530] (--) NVIDIA(GPU-0): DFP-6: Internal TMDS
[  2200.530] (--) NVIDIA(GPU-0): DFP-6: 165.0 MHz maximum pixel clock
[  2200.530] (--) NVIDIA(GPU-0): 
[  2200.576] (==) NVIDIA(0): 
[  2200.576] (==) NVIDIA(0): No modes were requested; the default mode "nvidia-auto-select"
[  2200.576] (==) NVIDIA(0):     will be used as the requested mode.
[  2200.576] (==) NVIDIA(0): 
[  2200.577] (II) NVIDIA(0): Validated MetaModes:
[  2200.577] (II) NVIDIA(0):     "DFP-5:nvidia-auto-select"
[  2200.577] (II) NVIDIA(0): Virtual screen size determined to be 2560 x 1440
[  2200.632] (--) NVIDIA(0): DPI set to (108, 107); computed from "UseEdidDpi" X config
[  2200.632] (--) NVIDIA(0):     option
[  2200.633] (II) NVIDIA: Reserving 24576.00 MB of virtual memory for indirect memory
[  2200.633] (II) NVIDIA:     access.
[  2200.634] (II) NVIDIA(0): ACPI: failed to connect to the ACPI event daemon; the daemon
[  2200.634] (II) NVIDIA(0):     may not be running or the "AcpidSocketPath" X
[  2200.634] (II) NVIDIA(0):     configuration option may not be set correctly.  When the
[  2200.634] (II) NVIDIA(0):     ACPI event daemon is available, the NVIDIA X driver will
[  2200.634] (II) NVIDIA(0):     try to use it to receive ACPI event notifications.  For
[  2200.634] (II) NVIDIA(0):     details, please see the "ConnectToAcpid" and
[  2200.634] (II) NVIDIA(0):     "AcpidSocketPath" X configuration options in Appendix B: X
[  2200.634] (II) NVIDIA(0):     Config Options in the README.
[  2200.647] (II) NVIDIA(0): Setting mode "DFP-5:nvidia-auto-select"
[  2200.747] (==) NVIDIA(0): Disabling shared memory pixmaps
[  2200.747] (==) NVIDIA(0): Backing store enabled
[  2200.747] (==) NVIDIA(0): Silken mouse enabled
[  2200.747] (**) NVIDIA(0): DPMS enabled
[  2200.747] (II) Loading sub module "dri2"
[  2200.747] (II) LoadModule: "dri2"
[  2200.747] (II) Module "dri2" already built-in
[  2200.747] (II) NVIDIA(0): [DRI2] Setup complete
[  2200.747] (II) NVIDIA(0): [DRI2]   VDPAU driver: nvidia
[  2200.747] (II) Initializing extension Generic Event Extension
[  2200.748] (II) Initializing extension SHAPE
[  2200.748] (II) Initializing extension MIT-SHM
[  2200.748] (II) Initializing extension XInputExtension
[  2200.748] (II) Initializing extension XTEST
[  2200.748] (II) Initializing extension BIG-REQUESTS
[  2200.748] (II) Initializing extension SYNC
[  2200.748] (II) Initializing extension XKEYBOARD
[  2200.748] (II) Initializing extension XC-MISC
[  2200.748] (II) Initializing extension SECURITY
[  2200.748] (II) Initializing extension XFIXES
[  2200.748] (II) Initializing extension RENDER
[  2200.748] (II) Initializing extension RANDR
[  2200.748] (II) Initializing extension COMPOSITE
[  2200.748] (II) Initializing extension DAMAGE
[  2200.748] (II) Initializing extension MIT-SCREEN-SAVER
[  2200.748] (II) Initializing extension DOUBLE-BUFFER
[  2200.748] (II) Initializing extension RECORD
[  2200.748] (II) Initializing extension DPMS
[  2200.749] (II) Initializing extension Present
[  2200.749] (II) Initializing extension DRI3
[  2200.749] (II) Initializing extension X-Resource
[  2200.749] (II) Initializing extension XVideo
[  2200.749] (II) Initializing extension XVideo-MotionCompensation
[  2200.749] (II) Initializing extension GLX
[  2200.749] (II) Initializing extension GLX
[  2200.749] (II) Indirect GLX disabled.
[  2200.749] (II) GLX: Another vendor is already registered for screen 0
[  2200.749] (II) Initializing extension XFree86-VidModeExtension
[  2200.749] (II) Initializing extension XFree86-DGA
[  2200.749] (II) Initializing extension XFree86-DRI
[  2200.749] (II) Initializing extension DRI2
[  2200.749] (II) Initializing extension NV-GLX
[  2200.749] (II) Initializing extension NV-CONTROL
[  2200.749] (II) Initializing extension XINERAMA
[  2200.800] (II) config/udev: Adding input device Power Button (/dev/input/event2)
[  2200.800] (**) Power Button: Applying InputClass "libinput keyboard catchall"
[  2200.800] (**) Power Button: Applying InputClass "system-keyboard"
[  2200.800] (II) LoadModule: "libinput"
[  2200.800] (II) Loading /usr/lib/xorg/modules/input/libinput_drv.so
[  2200.801] (II) Module libinput: vendor="X.Org Foundation"
[  2200.801] 	compiled for 1.21.1.3, module version = 1.2.1
[  2200.801] 	Module class: X.Org XInput Driver
[  2200.801] 	ABI class: X.Org XInput driver, version 24.4
[  2200.801] (II) Using input driver 'libinput' for 'Power Button'
[  2200.801] (II) systemd-logind: got fd for /dev/input/event2 13:66 fd 41 paused 0
[  2200.801] (**) Power Button: always reports core events
[  2200.801] (**) Option "Device" "/dev/input/event2"
[  2200.802] (II) event2  - Power Button: is tagged by udev as: Keyboard
[  2200.802] (II) event2  - Power Button: device is a keyboard
[  2200.802] (II) event2  - Power Button: device removed
[  2200.802] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/LNXPWRBN:00/input/input2/event2"
[  2200.802] (II) XINPUT: Adding extended input device "Power Button" (type: KEYBOARD, id 6)
[  2200.803] (**) Option "xkb_layout" "us,ru"
[  2200.803] (**) Option "xkb_options" "grp:sclk_toggle,lv3:ralt_switch,misc:typo"
[  2200.814] (II) event2  - Power Button: is tagged by udev as: Keyboard
[  2200.814] (II) event2  - Power Button: device is a keyboard
[  2200.814] (II) config/udev: Adding input device Power Button (/dev/input/event1)
[  2200.814] (**) Power Button: Applying InputClass "libinput keyboard catchall"
[  2200.814] (**) Power Button: Applying InputClass "system-keyboard"
[  2200.814] (II) Using input driver 'libinput' for 'Power Button'
[  2200.815] (II) systemd-logind: got fd for /dev/input/event1 13:65 fd 44 paused 0
[  2200.815] (**) Power Button: always reports core events
[  2200.815] (**) Option "Device" "/dev/input/event1"
[  2200.815] (II) event1  - Power Button: is tagged by udev as: Keyboard
[  2200.815] (II) event1  - Power Button: device is a keyboard
[  2200.815] (II) event1  - Power Button: device removed
[  2200.815] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input1/event1"
[  2200.815] (II) XINPUT: Adding extended input device "Power Button" (type: KEYBOARD, id 7)
[  2200.815] (**) Option "xkb_layout" "us,ru"
[  2200.815] (**) Option "xkb_options" "grp:sclk_toggle,lv3:ralt_switch,misc:typo"
[  2200.816] (II) event1  - Power Button: is tagged by udev as: Keyboard
[  2200.816] (II) event1  - Power Button: device is a keyboard
[  2200.816] (II) config/udev: Adding input device Sleep Button (/dev/input/event0)
[  2200.816] (**) Sleep Button: Applying InputClass "libinput keyboard catchall"
[  2200.816] (**) Sleep Button: Applying InputClass "system-keyboard"
[  2200.816] (II) Using input driver 'libinput' for 'Sleep Button'
[  2200.817] (II) systemd-logind: got fd for /dev/input/event0 13:64 fd 45 paused 0
[  2200.817] (**) Sleep Button: always reports core events
[  2200.817] (**) Option "Device" "/dev/input/event0"
[  2200.817] (II) event0  - Sleep Button: is tagged by udev as: Keyboard
[  2200.817] (II) event0  - Sleep Button: device is a keyboard
[  2200.817] (II) event0  - Sleep Button: device removed
[  2200.817] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0E:00/input/input0/event0"
[  2200.817] (II) XINPUT: Adding extended input device "Sleep Button" (type: KEYBOARD, id 8)
[  2200.817] (**) Option "xkb_layout" "us,ru"
[  2200.817] (**) Option "xkb_options" "grp:sclk_toggle,lv3:ralt_switch,misc:typo"
[  2200.818] (II) event0  - Sleep Button: is tagged by udev as: Keyboard
[  2200.818] (II) event0  - Sleep Button: device is a keyboard
[  2200.818] (II) config/udev: Adding input device HDA NVidia HDMI/DP,pcm=3 (/dev/input/event17)
[  2200.818] (II) No input driver specified, ignoring this device.
[  2200.818] (II) This device may have been added with another device file.
[  2200.819] (II) config/udev: Adding input device HDA NVidia HDMI/DP,pcm=7 (/dev/input/event18)
[  2200.819] (II) No input driver specified, ignoring this device.
[  2200.819] (II) This device may have been added with another device file.
[  2200.819] (II) config/udev: Adding input device HDA NVidia HDMI/DP,pcm=8 (/dev/input/event19)
[  2200.819] (II) No input driver specified, ignoring this device.
[  2200.819] (II) This device may have been added with another device file.
[  2200.819] (II) config/udev: Adding input device HDA NVidia HDMI/DP,pcm=9 (/dev/input/event20)
[  2200.819] (II) No input driver specified, ignoring this device.
[  2200.819] (II) This device may have been added with another device file.
[  2200.820] (II) config/udev: Adding input device Razer Razer Naga Trinity (/dev/input/event6)
[  2200.820] (**) Razer Razer Naga Trinity: Applying InputClass "libinput pointer catchall"
[  2200.820] (II) Using input driver 'libinput' for 'Razer Razer Naga Trinity'
[  2200.876] (II) systemd-logind: got fd for /dev/input/event6 13:70 fd 46 paused 0
[  2200.876] (**) Razer Razer Naga Trinity: always reports core events
[  2200.876] (**) Option "Device" "/dev/input/event6"
[  2200.878] (II) event6  - Razer Razer Naga Trinity: is tagged by udev as: Mouse
[  2200.878] (II) event6  - Razer Razer Naga Trinity: device is a pointer
[  2200.878] (II) event6  - Razer Razer Naga Trinity: device removed
[  2200.878] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:14.0/usb1/1-1/1-1.4/1-1.4.1/1-1.4.1:1.0/0003:1532:0067.0007/input/input43/event6"
[  2200.878] (II) XINPUT: Adding extended input device "Razer Razer Naga Trinity" (type: MOUSE, id 9)
[  2200.878] (**) Option "AccelerationScheme" "none"
[  2200.878] (**) Razer Razer Naga Trinity: (accel) selected scheme none/0
[  2200.878] (**) Razer Razer Naga Trinity: (accel) acceleration factor: 2.000
[  2200.878] (**) Razer Razer Naga Trinity: (accel) acceleration threshold: 4
[  2200.880] (II) event6  - Razer Razer Naga Trinity: is tagged by udev as: Mouse
[  2200.880] (II) event6  - Razer Razer Naga Trinity: device is a pointer
[  2200.881] (II) config/udev: Adding input device Razer Razer Naga Trinity (/dev/input/mouse1)
[  2200.881] (II) No input driver specified, ignoring this device.
[  2200.881] (II) This device may have been added with another device file.
[  2200.882] (II) config/udev: Adding input device Razer Razer Naga Trinity (/dev/input/event9)
[  2200.882] (**) Razer Razer Naga Trinity: Applying InputClass "libinput keyboard catchall"
[  2200.882] (**) Razer Razer Naga Trinity: Applying InputClass "system-keyboard"
[  2200.882] (II) Using input driver 'libinput' for 'Razer Razer Naga Trinity'
[  2200.883] (II) systemd-logind: got fd for /dev/input/event9 13:73 fd 47 paused 0
[  2200.883] (**) Razer Razer Naga Trinity: always reports core events
[  2200.883] (**) Option "Device" "/dev/input/event9"
[  2200.885] (II) event9  - Razer Razer Naga Trinity: is tagged by udev as: Keyboard
[  2200.885] (II) event9  - Razer Razer Naga Trinity: device is a keyboard
[  2200.885] (II) event9  - Razer Razer Naga Trinity: device removed
[  2200.886] (II) libinput: Razer Razer Naga Trinity: needs a virtual subdevice
[  2200.886] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:14.0/usb1/1-1/1-1.4/1-1.4.1/1-1.4.1:1.1/0003:1532:0067.0008/input/input46/event9"
[  2200.886] (II) XINPUT: Adding extended input device "Razer Razer Naga Trinity" (type: MOUSE, id 10)
[  2200.886] (**) Option "AccelerationScheme" "none"
[  2200.886] (**) Razer Razer Naga Trinity: (accel) selected scheme none/0
[  2200.886] (**) Razer Razer Naga Trinity: (accel) acceleration factor: 2.000
[  2200.886] (**) Razer Razer Naga Trinity: (accel) acceleration threshold: 4
[  2200.888] (II) event9  - Razer Razer Naga Trinity: is tagged by udev as: Keyboard
[  2200.888] (II) event9  - Razer Razer Naga Trinity: device is a keyboard
[  2200.889] (II) config/udev: Adding input device Razer Razer Naga Trinity (/dev/input/event10)
[  2200.889] (**) Razer Razer Naga Trinity: Applying InputClass "libinput keyboard catchall"
[  2200.889] (**) Razer Razer Naga Trinity: Applying InputClass "system-keyboard"
[  2200.889] (II) Using input driver 'libinput' for 'Razer Razer Naga Trinity'
[  2200.890] (II) systemd-logind: got fd for /dev/input/event10 13:74 fd 48 paused 0
[  2200.890] (**) Razer Razer Naga Trinity: always reports core events
[  2200.890] (**) Option "Device" "/dev/input/event10"
[  2200.892] (II) event10 - Razer Razer Naga Trinity: is tagged by udev as: Keyboard
[  2200.892] (II) event10 - Razer Razer Naga Trinity: device is a keyboard
[  2200.893] (II) event10 - Razer Razer Naga Trinity: device removed
[  2200.893] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:14.0/usb1/1-1/1-1.4/1-1.4.1/1-1.4.1:1.2/0003:1532:0067.0009/input/input47/event10"
[  2200.893] (II) XINPUT: Adding extended input device "Razer Razer Naga Trinity" (type: KEYBOARD, id 11)
[  2200.893] (**) Option "xkb_layout" "us,ru"
[  2200.893] (**) Option "xkb_options" "grp:sclk_toggle,lv3:ralt_switch,misc:typo"
[  2200.895] (II) event10 - Razer Razer Naga Trinity: is tagged by udev as: Keyboard
[  2200.895] (II) event10 - Razer Razer Naga Trinity: device is a keyboard
[  2200.896] (II) config/udev: Adding input device Razer Razer Tartarus V2 (/dev/input/event5)
[  2200.896] (**) Razer Razer Tartarus V2: Applying InputClass "libinput keyboard catchall"
[  2200.896] (**) Razer Razer Tartarus V2: Applying InputClass "system-keyboard"
[  2200.896] (II) Using input driver 'libinput' for 'Razer Razer Tartarus V2'
[  2200.897] (II) systemd-logind: got fd for /dev/input/event5 13:69 fd 49 paused 0
[  2200.897] (**) Razer Razer Tartarus V2: always reports core events
[  2200.897] (**) Option "Device" "/dev/input/event5"
[  2200.899] (II) event5  - Razer Razer Tartarus V2: is tagged by udev as: Keyboard
[  2200.899] (II) event5  - Razer Razer Tartarus V2: device is a keyboard
[  2200.900] (II) event5  - Razer Razer Tartarus V2: device removed
[  2200.900] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:14.0/usb1/1-1/1-1.4/1-1.4.2/1-1.4.2:1.0/0003:1532:022B.000A/input/input42/event5"
[  2200.900] (II) XINPUT: Adding extended input device "Razer Razer Tartarus V2" (type: KEYBOARD, id 12)
[  2200.900] (**) Option "xkb_layout" "us,ru"
[  2200.900] (**) Option "xkb_options" "grp:sclk_toggle,lv3:ralt_switch,misc:typo"
[  2200.902] (II) event5  - Razer Razer Tartarus V2: is tagged by udev as: Keyboard
[  2200.902] (II) event5  - Razer Razer Tartarus V2: device is a keyboard
[  2200.904] (II) config/udev: Adding input device Razer Razer Tartarus V2 (/dev/input/event11)
[  2200.904] (**) Razer Razer Tartarus V2: Applying InputClass "libinput keyboard catchall"
[  2200.904] (**) Razer Razer Tartarus V2: Applying InputClass "system-keyboard"
[  2200.904] (II) Using input driver 'libinput' for 'Razer Razer Tartarus V2'
[  2200.904] (II) systemd-logind: got fd for /dev/input/event11 13:75 fd 50 paused 0
[  2200.904] (**) Razer Razer Tartarus V2: always reports core events
[  2200.904] (**) Option "Device" "/dev/input/event11"
[  2200.907] (II) event11 - Razer Razer Tartarus V2: is tagged by udev as: Keyboard
[  2200.907] (II) event11 - Razer Razer Tartarus V2: device is a keyboard
[  2200.907] (II) event11 - Razer Razer Tartarus V2: device removed
[  2200.907] (II) libinput: Razer Razer Tartarus V2: needs a virtual subdevice
[  2200.907] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:14.0/usb1/1-1/1-1.4/1-1.4.2/1-1.4.2:1.1/0003:1532:022B.000B/input/input48/event11"
[  2200.907] (II) XINPUT: Adding extended input device "Razer Razer Tartarus V2" (type: MOUSE, id 13)
[  2200.907] (**) Option "AccelerationScheme" "none"
[  2200.907] (**) Razer Razer Tartarus V2: (accel) selected scheme none/0
[  2200.907] (**) Razer Razer Tartarus V2: (accel) acceleration factor: 2.000
[  2200.907] (**) Razer Razer Tartarus V2: (accel) acceleration threshold: 4
[  2200.909] (II) event11 - Razer Razer Tartarus V2: is tagged by udev as: Keyboard
[  2200.909] (II) event11 - Razer Razer Tartarus V2: device is a keyboard
[  2200.911] (II) config/udev: Adding input device Razer Razer Tartarus V2 (/dev/input/event14)
[  2200.911] (**) Razer Razer Tartarus V2: Applying InputClass "libinput pointer catchall"
[  2200.911] (II) Using input driver 'libinput' for 'Razer Razer Tartarus V2'
[  2200.966] (II) systemd-logind: got fd for /dev/input/event14 13:78 fd 51 paused 0
[  2200.966] (**) Razer Razer Tartarus V2: always reports core events
[  2200.966] (**) Option "Device" "/dev/input/event14"
[  2200.972] (II) event14 - Razer Razer Tartarus V2: is tagged by udev as: Mouse
[  2200.973] (II) event14 - Razer Razer Tartarus V2: device is a pointer
[  2200.973] (II) event14 - Razer Razer Tartarus V2: device removed
[  2200.973] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:14.0/usb1/1-1/1-1.4/1-1.4.2/1-1.4.2:1.2/0003:1532:022B.000C/input/input49/event14"
[  2200.973] (II) XINPUT: Adding extended input device "Razer Razer Tartarus V2" (type: MOUSE, id 14)
[  2200.974] (**) Option "AccelerationScheme" "none"
[  2200.974] (**) Razer Razer Tartarus V2: (accel) selected scheme none/0
[  2200.974] (**) Razer Razer Tartarus V2: (accel) acceleration factor: 2.000
[  2200.974] (**) Razer Razer Tartarus V2: (accel) acceleration threshold: 4
[  2200.979] (II) event14 - Razer Razer Tartarus V2: is tagged by udev as: Mouse
[  2200.980] (II) event14 - Razer Razer Tartarus V2: device is a pointer
[  2200.983] (II) config/udev: Adding input device Razer Razer Tartarus V2 (/dev/input/mouse4)
[  2200.983] (II) No input driver specified, ignoring this device.
[  2200.983] (II) This device may have been added with another device file.
[  2200.986] (II) config/udev: Adding input device UC-LOGIC Tablet WP5540U Pen (/dev/input/event8)
[  2200.986] (**) UC-LOGIC Tablet WP5540U Pen: Applying InputClass "libinput tablet catchall"
[  2200.986] (II) Using input driver 'libinput' for 'UC-LOGIC Tablet WP5540U Pen'
[  2201.043] (II) systemd-logind: got fd for /dev/input/event8 13:72 fd 52 paused 0
[  2201.043] (**) UC-LOGIC Tablet WP5540U Pen: always reports core events
[  2201.043] (**) Option "Device" "/dev/input/event8"
[  2201.048] (II) event8  - UC-LOGIC Tablet WP5540U Pen: is tagged by udev as: Tablet
[  2201.103] (II) event8  - UC-LOGIC Tablet WP5540U Pen: tablet 'UC-LOGIC Tablet WP5540U Pen' unknown to libwacom
[  2201.103] (II) event8  - UC-LOGIC Tablet WP5540U Pen: device is a tablet
[  2201.103] (II) event8  - UC-LOGIC Tablet WP5540U Pen: device removed
[  2201.103] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:14.0/usb1/1-5/1-5:1.0/0003:5543:0004.0006/input/input44/event8"
[  2201.103] (II) XINPUT: Adding extended input device "UC-LOGIC Tablet WP5540U Pen" (type: TABLET, id 15)
[  2201.104] (II) event8  - UC-LOGIC Tablet WP5540U Pen: is tagged by udev as: Tablet
[  2201.118] (II) event8  - UC-LOGIC Tablet WP5540U Pen: tablet 'UC-LOGIC Tablet WP5540U Pen' unknown to libwacom
[  2201.118] (II) event8  - UC-LOGIC Tablet WP5540U Pen: device is a tablet
[  2201.119] (II) config/udev: Adding input device UC-LOGIC Tablet WP5540U Pen (/dev/input/mouse2)
[  2201.119] (II) No input driver specified, ignoring this device.
[  2201.119] (II) This device may have been added with another device file.
[  2201.119] (II) config/udev: Adding input device UC-LOGIC Tablet WP5540U Mouse (/dev/input/event13)
[  2201.119] (**) UC-LOGIC Tablet WP5540U Mouse: Applying InputClass "libinput pointer catchall"
[  2201.119] (II) Using input driver 'libinput' for 'UC-LOGIC Tablet WP5540U Mouse'
[  2201.120] (II) systemd-logind: got fd for /dev/input/event13 13:77 fd 54 paused 0
[  2201.120] (**) UC-LOGIC Tablet WP5540U Mouse: always reports core events
[  2201.120] (**) Option "Device" "/dev/input/event13"
[  2201.121] (II) event13 - UC-LOGIC Tablet WP5540U Mouse: is tagged by udev as: Mouse
[  2201.121] (II) event13 - UC-LOGIC Tablet WP5540U Mouse: device is a pointer
[  2201.121] (II) event13 - UC-LOGIC Tablet WP5540U Mouse: device removed
[  2201.121] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:14.0/usb1/1-5/1-5:1.0/0003:5543:0004.0006/input/input45/event13"
[  2201.121] (II) XINPUT: Adding extended input device "UC-LOGIC Tablet WP5540U Mouse" (type: MOUSE, id 16)
[  2201.121] (**) Option "AccelerationScheme" "none"
[  2201.121] (**) UC-LOGIC Tablet WP5540U Mouse: (accel) selected scheme none/0
[  2201.121] (**) UC-LOGIC Tablet WP5540U Mouse: (accel) acceleration factor: 2.000
[  2201.121] (**) UC-LOGIC Tablet WP5540U Mouse: (accel) acceleration threshold: 4
[  2201.122] (II) event13 - UC-LOGIC Tablet WP5540U Mouse: is tagged by udev as: Mouse
[  2201.122] (II) event13 - UC-LOGIC Tablet WP5540U Mouse: device is a pointer
[  2201.122] (II) config/udev: Adding input device UC-LOGIC Tablet WP5540U Mouse (/dev/input/mouse3)
[  2201.123] (II) No input driver specified, ignoring this device.
[  2201.123] (II) This device may have been added with another device file.
[  2201.123] (II) config/udev: Adding input device HD Pro Webcam C920 (/dev/input/event15)
[  2201.123] (**) HD Pro Webcam C920: Applying InputClass "libinput keyboard catchall"
[  2201.123] (**) HD Pro Webcam C920: Applying InputClass "system-keyboard"
[  2201.123] (II) Using input driver 'libinput' for 'HD Pro Webcam C920'
[  2201.124] (II) systemd-logind: got fd for /dev/input/event15 13:79 fd 55 paused 0
[  2201.124] (**) HD Pro Webcam C920: always reports core events
[  2201.124] (**) Option "Device" "/dev/input/event15"
[  2201.125] (II) event15 - HD Pro Webcam C920: is tagged by udev as: Keyboard
[  2201.125] (II) event15 - HD Pro Webcam C920: device is a keyboard
[  2201.125] (II) event15 - HD Pro Webcam C920: device removed
[  2201.125] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:14.0/usb1/1-6/1-6.2/1-6.2:1.0/input/input50/event15"
[  2201.125] (II) XINPUT: Adding extended input device "HD Pro Webcam C920" (type: KEYBOARD, id 17)
[  2201.125] (**) Option "xkb_layout" "us,ru"
[  2201.125] (**) Option "xkb_options" "grp:sclk_toggle,lv3:ralt_switch,misc:typo"
[  2201.125] (II) event15 - HD Pro Webcam C920: is tagged by udev as: Keyboard
[  2201.126] (II) event15 - HD Pro Webcam C920: device is a keyboard
[  2201.126] (II) config/udev: Adding input device Logitech K370s/K375s (/dev/input/event4)
[  2201.126] (**) Logitech K370s/K375s: Applying InputClass "libinput keyboard catchall"
[  2201.126] (**) Logitech K370s/K375s: Applying InputClass "system-keyboard"
[  2201.126] (II) Using input driver 'libinput' for 'Logitech K370s/K375s'
[  2201.127] (II) systemd-logind: got fd for /dev/input/event4 13:68 fd 56 paused 0
[  2201.127] (**) Logitech K370s/K375s: always reports core events
[  2201.127] (**) Option "Device" "/dev/input/event4"
[  2201.128] (II) event4  - Logitech K370s/K375s: is tagged by udev as: Keyboard
[  2201.128] (II) event4  - Logitech K370s/K375s: device is a keyboard
[  2201.128] (II) event4  - Logitech K370s/K375s: device removed
[  2201.128] (II) libinput: Logitech K370s/K375s: needs a virtual subdevice
[  2201.128] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:1c.4/0000:04:00.0/usb2/2-2/2-2:1.2/0003:046D:C52B.0003/0003:046D:4061.0005/input/input18/event4"
[  2201.128] (II) XINPUT: Adding extended input device "Logitech K370s/K375s" (type: MOUSE, id 18)
[  2201.128] (**) Option "AccelerationScheme" "none"
[  2201.128] (**) Logitech K370s/K375s: (accel) selected scheme none/0
[  2201.128] (**) Logitech K370s/K375s: (accel) acceleration factor: 2.000
[  2201.128] (**) Logitech K370s/K375s: (accel) acceleration threshold: 4
[  2201.129] (II) event4  - Logitech K370s/K375s: is tagged by udev as: Keyboard
[  2201.129] (II) event4  - Logitech K370s/K375s: device is a keyboard
[  2201.130] (II) config/udev: Adding input device Logitech MX Ergo (/dev/input/event3)
[  2201.130] (**) Logitech MX Ergo: Applying InputClass "libinput pointer catchall"
[  2201.130] (**) Logitech MX Ergo: Applying InputClass "libinput keyboard catchall"
[  2201.130] (**) Logitech MX Ergo: Applying InputClass "system-keyboard"
[  2201.130] (II) Using input driver 'libinput' for 'Logitech MX Ergo'
[  2201.130] (II) systemd-logind: got fd for /dev/input/event3 13:67 fd 57 paused 0
[  2201.130] (**) Logitech MX Ergo: always reports core events
[  2201.130] (**) Option "Device" "/dev/input/event3"
[  2201.131] (II) event3  - Logitech MX Ergo: is tagged by udev as: Keyboard Mouse Trackball
[  2201.131] (II) event3  - Logitech MX Ergo: device set to 380 DPI
[  2201.131] (II) event3  - Logitech MX Ergo: device is a pointer
[  2201.131] (II) event3  - Logitech MX Ergo: device is a keyboard
[  2201.131] (II) event3  - Logitech MX Ergo: device removed
[  2201.131] (II) libinput: Logitech MX Ergo: needs a virtual subdevice
[  2201.131] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:1c.4/0000:04:00.0/usb2/2-2/2-2:1.2/0003:046D:C52B.0003/0003:046D:406F.0004/input/input17/event3"
[  2201.131] (II) XINPUT: Adding extended input device "Logitech MX Ergo" (type: MOUSE, id 19)
[  2201.131] (**) Option "AccelerationScheme" "none"
[  2201.131] (**) Logitech MX Ergo: (accel) selected scheme none/0
[  2201.131] (**) Logitech MX Ergo: (accel) acceleration factor: 2.000
[  2201.131] (**) Logitech MX Ergo: (accel) acceleration threshold: 4
[  2201.133] (II) event3  - Logitech MX Ergo: is tagged by udev as: Keyboard Mouse Trackball
[  2201.133] (II) event3  - Logitech MX Ergo: device set to 380 DPI
[  2201.133] (II) event3  - Logitech MX Ergo: device is a pointer
[  2201.133] (II) event3  - Logitech MX Ergo: device is a keyboard
[  2201.134] (II) config/udev: Adding input device Logitech MX Ergo (/dev/input/mouse0)
[  2201.134] (**) Logitech MX Ergo: Applying InputClass "system-keyboard"
[  2201.134] (II) No input driver specified, ignoring this device.
[  2201.134] (II) This device may have been added with another device file.
[  2201.134] (II) config/udev: Adding input device HDA Intel PCH Front Mic (/dev/input/event21)
[  2201.134] (II) No input driver specified, ignoring this device.
[  2201.134] (II) This device may have been added with another device file.
[  2201.134] (II) config/udev: Adding input device HDA Intel PCH Rear Mic (/dev/input/event22)
[  2201.134] (II) No input driver specified, ignoring this device.
[  2201.134] (II) This device may have been added with another device file.
[  2201.134] (II) config/udev: Adding input device HDA Intel PCH Line (/dev/input/event23)
[  2201.134] (II) No input driver specified, ignoring this device.
[  2201.134] (II) This device may have been added with another device file.
[  2201.134] (II) config/udev: Adding input device HDA Intel PCH Line Out Front (/dev/input/event24)
[  2201.134] (II) No input driver specified, ignoring this device.
[  2201.134] (II) This device may have been added with another device file.
[  2201.135] (II) config/udev: Adding input device HDA Intel PCH Line Out Surround (/dev/input/event25)
[  2201.135] (II) No input driver specified, ignoring this device.
[  2201.135] (II) This device may have been added with another device file.
[  2201.135] (II) config/udev: Adding input device HDA Intel PCH Line Out CLFE (/dev/input/event26)
[  2201.135] (II) No input driver specified, ignoring this device.
[  2201.135] (II) This device may have been added with another device file.
[  2201.135] (II) config/udev: Adding input device HDA Intel PCH Front Headphone (/dev/input/event27)
[  2201.135] (II) No input driver specified, ignoring this device.
[  2201.135] (II) This device may have been added with another device file.
[  2201.135] (II) config/udev: Adding input device Eee PC WMI hotkeys (/dev/input/event12)
[  2201.135] (**) Eee PC WMI hotkeys: Applying InputClass "libinput keyboard catchall"
[  2201.135] (**) Eee PC WMI hotkeys: Applying InputClass "system-keyboard"
[  2201.135] (II) Using input driver 'libinput' for 'Eee PC WMI hotkeys'
[  2201.136] (II) systemd-logind: got fd for /dev/input/event12 13:76 fd 58 paused 0
[  2201.136] (**) Eee PC WMI hotkeys: always reports core events
[  2201.136] (**) Option "Device" "/dev/input/event12"
[  2201.136] (II) event12 - Eee PC WMI hotkeys: is tagged by udev as: Keyboard
[  2201.136] (II) event12 - Eee PC WMI hotkeys: device is a keyboard
[  2201.136] (II) event12 - Eee PC WMI hotkeys: device removed
[  2201.136] (**) Option "config_info" "udev:/sys/devices/platform/eeepc-wmi/input/input26/event12"
[  2201.136] (II) XINPUT: Adding extended input device "Eee PC WMI hotkeys" (type: KEYBOARD, id 20)
[  2201.136] (**) Option "xkb_layout" "us,ru"
[  2201.136] (**) Option "xkb_options" "grp:sclk_toggle,lv3:ralt_switch,misc:typo"
[  2201.137] (II) event12 - Eee PC WMI hotkeys: is tagged by udev as: Keyboard
[  2201.137] (II) event12 - Eee PC WMI hotkeys: device is a keyboard
[  2201.137] (II) config/udev: Adding input device PC Speaker (/dev/input/event7)
[  2201.137] (II) No input driver specified, ignoring this device.
[  2201.137] (II) This device may have been added with another device file.
[  2201.139] (II) config/udev: Adding input device Dao Keyboard (/dev/input/event16)
[  2201.139] (**) Dao Keyboard: Applying InputClass "libinput keyboard catchall"
[  2201.139] (**) Dao Keyboard: Applying InputClass "system-keyboard"
[  2201.139] (II) Using input driver 'libinput' for 'Dao Keyboard'
[  2201.139] (II) systemd-logind: got fd for /dev/input/event16 13:80 fd 59 paused 0
[  2201.139] (**) Dao Keyboard: always reports core events
[  2201.139] (**) Option "Device" "/dev/input/event16"
[  2201.140] (II) event16 - Dao Keyboard: is tagged by udev as: Keyboard
[  2201.140] (II) event16 - Dao Keyboard: device is a keyboard
[  2201.140] (II) event16 - Dao Keyboard: device removed
[  2201.140] (II) libinput: Dao Keyboard: needs a virtual subdevice
[  2201.140] (**) Option "config_info" "udev:/sys/devices/virtual/misc/uhid/0005:1D50:615E.000D/input/input51/event16"
[  2201.140] (II) XINPUT: Adding extended input device "Dao Keyboard" (type: MOUSE, id 21)
[  2201.140] (**) Option "AccelerationScheme" "none"
[  2201.140] (**) Dao Keyboard: (accel) selected scheme none/0
[  2201.140] (**) Dao Keyboard: (accel) acceleration factor: 2.000
[  2201.140] (**) Dao Keyboard: (accel) acceleration threshold: 4
[  2201.141] (II) event16 - Dao Keyboard: is tagged by udev as: Keyboard
[  2201.141] (II) event16 - Dao Keyboard: device is a keyboard
[  2201.144] (**) Razer Razer Naga Trinity: Applying InputClass "libinput keyboard catchall"
[  2201.144] (**) Razer Razer Naga Trinity: Applying InputClass "system-keyboard"
[  2201.144] (II) Using input driver 'libinput' for 'Razer Razer Naga Trinity'
[  2201.144] (II) systemd-logind: returning pre-existing fd for /dev/input/event9 13:73
[  2201.144] (**) Razer Razer Naga Trinity: always reports core events
[  2201.144] (**) Option "Device" "/dev/input/event9"
[  2201.144] (II) libinput: Razer Razer Naga Trinity: is a virtual subdevice
[  2201.144] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:14.0/usb1/1-1/1-1.4/1-1.4.1/1-1.4.1:1.1/0003:1532:0067.0008/input/input46/event9"
[  2201.144] (II) XINPUT: Adding extended input device "Razer Razer Naga Trinity" (type: KEYBOARD, id 22)
[  2201.144] (**) Option "xkb_layout" "us,ru"
[  2201.144] (**) Option "xkb_options" "grp:sclk_toggle,lv3:ralt_switch,misc:typo"
[  2201.144] (**) Razer Razer Tartarus V2: Applying InputClass "libinput keyboard catchall"
[  2201.144] (**) Razer Razer Tartarus V2: Applying InputClass "system-keyboard"
[  2201.144] (II) Using input driver 'libinput' for 'Razer Razer Tartarus V2'
[  2201.144] (II) systemd-logind: returning pre-existing fd for /dev/input/event11 13:75
[  2201.144] (**) Razer Razer Tartarus V2: always reports core events
[  2201.144] (**) Option "Device" "/dev/input/event11"
[  2201.144] (II) libinput: Razer Razer Tartarus V2: is a virtual subdevice
[  2201.144] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:14.0/usb1/1-1/1-1.4/1-1.4.2/1-1.4.2:1.1/0003:1532:022B.000B/input/input48/event11"
[  2201.144] (II) XINPUT: Adding extended input device "Razer Razer Tartarus V2" (type: KEYBOARD, id 23)
[  2201.144] (**) Option "xkb_layout" "us,ru"
[  2201.144] (**) Option "xkb_options" "grp:sclk_toggle,lv3:ralt_switch,misc:typo"
[  2201.144] (**) Logitech K370s/K375s: Applying InputClass "libinput keyboard catchall"
[  2201.144] (**) Logitech K370s/K375s: Applying InputClass "system-keyboard"
[  2201.144] (II) Using input driver 'libinput' for 'Logitech K370s/K375s'
[  2201.144] (II) systemd-logind: returning pre-existing fd for /dev/input/event4 13:68
[  2201.144] (**) Logitech K370s/K375s: always reports core events
[  2201.144] (**) Option "Device" "/dev/input/event4"
[  2201.144] (II) libinput: Logitech K370s/K375s: is a virtual subdevice
[  2201.144] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:1c.4/0000:04:00.0/usb2/2-2/2-2:1.2/0003:046D:C52B.0003/0003:046D:4061.0005/input/input18/event4"
[  2201.144] (II) XINPUT: Adding extended input device "Logitech K370s/K375s" (type: KEYBOARD, id 24)
[  2201.144] (**) Option "xkb_layout" "us,ru"
[  2201.144] (**) Option "xkb_options" "grp:sclk_toggle,lv3:ralt_switch,misc:typo"
[  2201.144] (**) Logitech MX Ergo: Applying InputClass "libinput pointer catchall"
[  2201.144] (**) Logitech MX Ergo: Applying InputClass "libinput keyboard catchall"
[  2201.144] (**) Logitech MX Ergo: Applying InputClass "system-keyboard"
[  2201.144] (II) Using input driver 'libinput' for 'Logitech MX Ergo'
[  2201.144] (II) systemd-logind: returning pre-existing fd for /dev/input/event3 13:67
[  2201.144] (**) Logitech MX Ergo: always reports core events
[  2201.144] (**) Option "Device" "/dev/input/event3"
[  2201.144] (II) libinput: Logitech MX Ergo: is a virtual subdevice
[  2201.144] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:1c.4/0000:04:00.0/usb2/2-2/2-2:1.2/0003:046D:C52B.0003/0003:046D:406F.0004/input/input17/event3"
[  2201.144] (II) XINPUT: Adding extended input device "Logitech MX Ergo" (type: KEYBOARD, id 25)
[  2201.144] (**) Option "xkb_layout" "us,ru"
[  2201.144] (**) Option "xkb_options" "grp:sclk_toggle,lv3:ralt_switch,misc:typo"
[  2201.145] (**) Dao Keyboard: Applying InputClass "libinput keyboard catchall"
[  2201.145] (**) Dao Keyboard: Applying InputClass "system-keyboard"
[  2201.145] (II) Using input driver 'libinput' for 'Dao Keyboard'
[  2201.145] (II) systemd-logind: returning pre-existing fd for /dev/input/event16 13:80
[  2201.145] (**) Dao Keyboard: always reports core events
[  2201.145] (**) Option "Device" "/dev/input/event16"
[  2201.145] (II) libinput: Dao Keyboard: is a virtual subdevice
[  2201.145] (**) Option "config_info" "udev:/sys/devices/virtual/misc/uhid/0005:1D50:615E.000D/input/input51/event16"
[  2201.145] (II) XINPUT: Adding extended input device "Dao Keyboard" (type: KEYBOARD, id 26)
[  2201.145] (**) Option "xkb_layout" "us,ru"
[  2201.145] (**) Option "xkb_options" "grp:sclk_toggle,lv3:ralt_switch,misc:typo"
[  2201.207] (--) NVIDIA(GPU-0): DFP-0: disconnected
[  2201.207] (--) NVIDIA(GPU-0): DFP-0: Internal DisplayPort
[  2201.207] (--) NVIDIA(GPU-0): DFP-0: 2660.0 MHz maximum pixel clock
[  2201.207] (--) NVIDIA(GPU-0): 
[  2201.207] (--) NVIDIA(GPU-0): DFP-1: disconnected
[  2201.207] (--) NVIDIA(GPU-0): DFP-1: Internal TMDS
[  2201.207] (--) NVIDIA(GPU-0): DFP-1: 165.0 MHz maximum pixel clock
[  2201.207] (--) NVIDIA(GPU-0): 
[  2201.207] (--) NVIDIA(GPU-0): DFP-2: disconnected
[  2201.207] (--) NVIDIA(GPU-0): DFP-2: Internal DisplayPort
[  2201.207] (--) NVIDIA(GPU-0): DFP-2: 2660.0 MHz maximum pixel clock
[  2201.207] (--) NVIDIA(GPU-0): 
[  2201.208] (--) NVIDIA(GPU-0): DFP-3: disconnected
[  2201.208] (--) NVIDIA(GPU-0): DFP-3: Internal TMDS
[  2201.208] (--) NVIDIA(GPU-0): DFP-3: 165.0 MHz maximum pixel clock
[  2201.208] (--) NVIDIA(GPU-0): 
[  2201.208] (--) NVIDIA(GPU-0): DFP-4: disconnected
[  2201.208] (--) NVIDIA(GPU-0): DFP-4: Internal TMDS
[  2201.208] (--) NVIDIA(GPU-0): DFP-4: 165.0 MHz maximum pixel clock
[  2201.208] (--) NVIDIA(GPU-0): 
[  2201.208] (--) NVIDIA(GPU-0): BenQ LCD (DFP-5): connected
[  2201.208] (--) NVIDIA(GPU-0): BenQ LCD (DFP-5): Internal DisplayPort
[  2201.208] (--) NVIDIA(GPU-0): BenQ LCD (DFP-5): 2660.0 MHz maximum pixel clock
[  2201.208] (--) NVIDIA(GPU-0): 
[  2201.210] (--) NVIDIA(GPU-0): DFP-6: disconnected
[  2201.210] (--) NVIDIA(GPU-0): DFP-6: Internal TMDS
[  2201.210] (--) NVIDIA(GPU-0): DFP-6: 165.0 MHz maximum pixel clock
[  2201.210] (--) NVIDIA(GPU-0): 
[  2201.211] (--) NVIDIA(GPU-0): DFP-0: disconnected
[  2201.211] (--) NVIDIA(GPU-0): DFP-0: Internal DisplayPort
[  2201.211] (--) NVIDIA(GPU-0): DFP-0: 2660.0 MHz maximum pixel clock
[  2201.211] (--) NVIDIA(GPU-0): 
[  2201.211] (--) NVIDIA(GPU-0): DFP-1: disconnected
[  2201.211] (--) NVIDIA(GPU-0): DFP-1: Internal TMDS
[  2201.211] (--) NVIDIA(GPU-0): DFP-1: 165.0 MHz maximum pixel clock
[  2201.211] (--) NVIDIA(GPU-0): 
[  2201.211] (--) NVIDIA(GPU-0): DFP-2: disconnected
[  2201.211] (--) NVIDIA(GPU-0): DFP-2: Internal DisplayPort
[  2201.211] (--) NVIDIA(GPU-0): DFP-2: 2660.0 MHz maximum pixel clock
[  2201.211] (--) NVIDIA(GPU-0): 
[  2201.211] (--) NVIDIA(GPU-0): DFP-3: disconnected
[  2201.211] (--) NVIDIA(GPU-0): DFP-3: Internal TMDS
[  2201.211] (--) NVIDIA(GPU-0): DFP-3: 165.0 MHz maximum pixel clock
[  2201.211] (--) NVIDIA(GPU-0): 
[  2201.211] (--) NVIDIA(GPU-0): DFP-4: disconnected
[  2201.211] (--) NVIDIA(GPU-0): DFP-4: Internal TMDS
[  2201.211] (--) NVIDIA(GPU-0): DFP-4: 165.0 MHz maximum pixel clock
[  2201.211] (--) NVIDIA(GPU-0): 
[  2201.211] (--) NVIDIA(GPU-0): BenQ LCD (DFP-5): connected
[  2201.211] (--) NVIDIA(GPU-0): BenQ LCD (DFP-5): Internal DisplayPort
[  2201.211] (--) NVIDIA(GPU-0): BenQ LCD (DFP-5): 2660.0 MHz maximum pixel clock
[  2201.211] (--) NVIDIA(GPU-0): 
[  2201.214] (--) NVIDIA(GPU-0): DFP-6: disconnected
[  2201.214] (--) NVIDIA(GPU-0): DFP-6: Internal TMDS
[  2201.214] (--) NVIDIA(GPU-0): DFP-6: 165.0 MHz maximum pixel clock
[  2201.214] (--) NVIDIA(GPU-0): 
[  2285.946] (--) NVIDIA(GPU-0): DFP-0: disconnected
[  2285.946] (--) NVIDIA(GPU-0): DFP-0: Internal DisplayPort
[  2285.946] (--) NVIDIA(GPU-0): DFP-0: 2660.0 MHz maximum pixel clock
[  2285.946] (--) NVIDIA(GPU-0): 
[  2285.946] (--) NVIDIA(GPU-0): DFP-1: disconnected
[  2285.946] (--) NVIDIA(GPU-0): DFP-1: Internal TMDS
[  2285.946] (--) NVIDIA(GPU-0): DFP-1: 165.0 MHz maximum pixel clock
[  2285.946] (--) NVIDIA(GPU-0): 
[  2285.946] (--) NVIDIA(GPU-0): DFP-2: disconnected
[  2285.946] (--) NVIDIA(GPU-0): DFP-2: Internal DisplayPort
[  2285.946] (--) NVIDIA(GPU-0): DFP-2: 2660.0 MHz maximum pixel clock
[  2285.946] (--) NVIDIA(GPU-0): 
[  2285.946] (--) NVIDIA(GPU-0): DFP-3: disconnected
[  2285.946] (--) NVIDIA(GPU-0): DFP-3: Internal TMDS
[  2285.946] (--) NVIDIA(GPU-0): DFP-3: 165.0 MHz maximum pixel clock
[  2285.946] (--) NVIDIA(GPU-0): 
[  2285.946] (--) NVIDIA(GPU-0): DFP-4: disconnected
[  2285.946] (--) NVIDIA(GPU-0): DFP-4: Internal TMDS
[  2285.946] (--) NVIDIA(GPU-0): DFP-4: 165.0 MHz maximum pixel clock
[  2285.946] (--) NVIDIA(GPU-0): 
[  2285.946] (--) NVIDIA(GPU-0): BenQ LCD (DFP-5): connected
[  2285.946] (--) NVIDIA(GPU-0): BenQ LCD (DFP-5): Internal DisplayPort
[  2285.946] (--) NVIDIA(GPU-0): BenQ LCD (DFP-5): 2660.0 MHz maximum pixel clock
[  2285.946] (--) NVIDIA(GPU-0): 
[  2285.948] (--) NVIDIA(GPU-0): DFP-6: disconnected
[  2285.948] (--) NVIDIA(GPU-0): DFP-6: Internal TMDS
[  2285.948] (--) NVIDIA(GPU-0): DFP-6: 165.0 MHz maximum pixel clock
[  2285.948] (--) NVIDIA(GPU-0): 
[  2415.391] (--) NVIDIA(GPU-0): DFP-0: disconnected
[  2415.391] (--) NVIDIA(GPU-0): DFP-0: Internal DisplayPort
[  2415.391] (--) NVIDIA(GPU-0): DFP-0: 2660.0 MHz maximum pixel clock
[  2415.392] (--) NVIDIA(GPU-0): 
[  2415.392] (--) NVIDIA(GPU-0): DFP-1: disconnected
[  2415.392] (--) NVIDIA(GPU-0): DFP-1: Internal TMDS
[  2415.392] (--) NVIDIA(GPU-0): DFP-1: 165.0 MHz maximum pixel clock
[  2415.392] (--) NVIDIA(GPU-0): 
[  2415.392] (--) NVIDIA(GPU-0): DFP-2: disconnected
[  2415.392] (--) NVIDIA(GPU-0): DFP-2: Internal DisplayPort
[  2415.392] (--) NVIDIA(GPU-0): DFP-2: 2660.0 MHz maximum pixel clock
[  2415.392] (--) NVIDIA(GPU-0): 
[  2415.392] (--) NVIDIA(GPU-0): DFP-3: disconnected
[  2415.392] (--) NVIDIA(GPU-0): DFP-3: Internal TMDS
[  2415.392] (--) NVIDIA(GPU-0): DFP-3: 165.0 MHz maximum pixel clock
[  2415.392] (--) NVIDIA(GPU-0): 
[  2415.393] (--) NVIDIA(GPU-0): DFP-4: disconnected
[  2415.393] (--) NVIDIA(GPU-0): DFP-4: Internal TMDS
[  2415.393] (--) NVIDIA(GPU-0): DFP-4: 165.0 MHz maximum pixel clock
[  2415.393] (--) NVIDIA(GPU-0): 
[  2415.393] (--) NVIDIA(GPU-0): BenQ LCD (DFP-5): connected
[  2415.393] (--) NVIDIA(GPU-0): BenQ LCD (DFP-5): Internal DisplayPort
[  2415.393] (--) NVIDIA(GPU-0): BenQ LCD (DFP-5): 2660.0 MHz maximum pixel clock
[  2415.393] (--) NVIDIA(GPU-0): 
[  2415.396] (--) NVIDIA(GPU-0): DFP-6: disconnected
[  2415.396] (--) NVIDIA(GPU-0): DFP-6: Internal TMDS
[  2415.396] (--) NVIDIA(GPU-0): DFP-6: 165.0 MHz maximum pixel clock
[  2415.396] (--) NVIDIA(GPU-0): 
[  2480.705] (--) NVIDIA(GPU-0): DFP-0: disconnected
[  2480.705] (--) NVIDIA(GPU-0): DFP-0: Internal DisplayPort
[  2480.705] (--) NVIDIA(GPU-0): DFP-0: 2660.0 MHz maximum pixel clock
[  2480.705] (--) NVIDIA(GPU-0): 
[  2480.706] (--) NVIDIA(GPU-0): DFP-1: disconnected
[  2480.706] (--) NVIDIA(GPU-0): DFP-1: Internal TMDS
[  2480.706] (--) NVIDIA(GPU-0): DFP-1: 165.0 MHz maximum pixel clock
[  2480.706] (--) NVIDIA(GPU-0): 
[  2480.706] (--) NVIDIA(GPU-0): DFP-2: disconnected
[  2480.706] (--) NVIDIA(GPU-0): DFP-2: Internal DisplayPort
[  2480.706] (--) NVIDIA(GPU-0): DFP-2: 2660.0 MHz maximum pixel clock
[  2480.706] (--) NVIDIA(GPU-0): 
[  2480.706] (--) NVIDIA(GPU-0): DFP-3: disconnected
[  2480.706] (--) NVIDIA(GPU-0): DFP-3: Internal TMDS
[  2480.706] (--) NVIDIA(GPU-0): DFP-3: 165.0 MHz maximum pixel clock
[  2480.706] (--) NVIDIA(GPU-0): 
[  2480.706] (--) NVIDIA(GPU-0): DFP-4: disconnected
[  2480.706] (--) NVIDIA(GPU-0): DFP-4: Internal TMDS
[  2480.706] (--) NVIDIA(GPU-0): DFP-4: 165.0 MHz maximum pixel clock
[  2480.706] (--) NVIDIA(GPU-0): 
[  2480.706] (--) NVIDIA(GPU-0): BenQ LCD (DFP-5): connected
[  2480.706] (--) NVIDIA(GPU-0): BenQ LCD (DFP-5): Internal DisplayPort
[  2480.706] (--) NVIDIA(GPU-0): BenQ LCD (DFP-5): 2660.0 MHz maximum pixel clock
[  2480.706] (--) NVIDIA(GPU-0): 
[  2480.708] (--) NVIDIA(GPU-0): DFP-6: disconnected
[  2480.708] (--) NVIDIA(GPU-0): DFP-6: Internal TMDS
[  2480.708] (--) NVIDIA(GPU-0): DFP-6: 165.0 MHz maximum pixel clock
[  2480.708] (--) NVIDIA(GPU-0): 
[  5929.188] (--) NVIDIA(GPU-0): DFP-0: disconnected
[  5929.188] (--) NVIDIA(GPU-0): DFP-0: Internal DisplayPort
[  5929.188] (--) NVIDIA(GPU-0): DFP-0: 2660.0 MHz maximum pixel clock
[  5929.188] (--) NVIDIA(GPU-0): 
[  5929.188] (--) NVIDIA(GPU-0): DFP-1: disconnected
[  5929.188] (--) NVIDIA(GPU-0): DFP-1: Internal TMDS
[  5929.188] (--) NVIDIA(GPU-0): DFP-1: 165.0 MHz maximum pixel clock
[  5929.188] (--) NVIDIA(GPU-0): 
[  5929.188] (--) NVIDIA(GPU-0): DFP-2: disconnected
[  5929.188] (--) NVIDIA(GPU-0): DFP-2: Internal DisplayPort
[  5929.188] (--) NVIDIA(GPU-0): DFP-2: 2660.0 MHz maximum pixel clock
[  5929.188] (--) NVIDIA(GPU-0): 
[  5929.189] (--) NVIDIA(GPU-0): DFP-3: disconnected
[  5929.189] (--) NVIDIA(GPU-0): DFP-3: Internal TMDS
[  5929.189] (--) NVIDIA(GPU-0): DFP-3: 165.0 MHz maximum pixel clock
[  5929.189] (--) NVIDIA(GPU-0): 
[  5929.189] (--) NVIDIA(GPU-0): DFP-4: disconnected
[  5929.189] (--) NVIDIA(GPU-0): DFP-4: Internal TMDS
[  5929.189] (--) NVIDIA(GPU-0): DFP-4: 165.0 MHz maximum pixel clock
[  5929.189] (--) NVIDIA(GPU-0): 
[  5929.190] (--) NVIDIA(GPU-0): BenQ LCD (DFP-5): connected
[  5929.190] (--) NVIDIA(GPU-0): BenQ LCD (DFP-5): Internal DisplayPort
[  5929.190] (--) NVIDIA(GPU-0): BenQ LCD (DFP-5): 2660.0 MHz maximum pixel clock
[  5929.190] (--) NVIDIA(GPU-0): 
[  5929.193] (--) NVIDIA(GPU-0): DFP-6: disconnected
[  5929.193] (--) NVIDIA(GPU-0): DFP-6: Internal TMDS
[  5929.193] (--) NVIDIA(GPU-0): DFP-6: 165.0 MHz maximum pixel clock
[  5929.193] (--) NVIDIA(GPU-0): 
[  5964.008] (--) NVIDIA(GPU-0): DFP-0: disconnected
[  5964.008] (--) NVIDIA(GPU-0): DFP-0: Internal DisplayPort
[  5964.008] (--) NVIDIA(GPU-0): DFP-0: 2660.0 MHz maximum pixel clock
[  5964.008] (--) NVIDIA(GPU-0): 
[  5964.008] (--) NVIDIA(GPU-0): DFP-1: disconnected
[  5964.008] (--) NVIDIA(GPU-0): DFP-1: Internal TMDS
[  5964.008] (--) NVIDIA(GPU-0): DFP-1: 165.0 MHz maximum pixel clock
[  5964.008] (--) NVIDIA(GPU-0): 
[  5964.009] (--) NVIDIA(GPU-0): DFP-2: disconnected
[  5964.009] (--) NVIDIA(GPU-0): DFP-2: Internal DisplayPort
[  5964.009] (--) NVIDIA(GPU-0): DFP-2: 2660.0 MHz maximum pixel clock
[  5964.009] (--) NVIDIA(GPU-0): 
[  5964.009] (--) NVIDIA(GPU-0): DFP-3: disconnected
[  5964.009] (--) NVIDIA(GPU-0): DFP-3: Internal TMDS
[  5964.009] (--) NVIDIA(GPU-0): DFP-3: 165.0 MHz maximum pixel clock
[  5964.009] (--) NVIDIA(GPU-0): 
[  5964.009] (--) NVIDIA(GPU-0): DFP-4: disconnected
[  5964.009] (--) NVIDIA(GPU-0): DFP-4: Internal TMDS
[  5964.009] (--) NVIDIA(GPU-0): DFP-4: 165.0 MHz maximum pixel clock
[  5964.009] (--) NVIDIA(GPU-0): 
[  5964.009] (--) NVIDIA(GPU-0): BenQ LCD (DFP-5): connected
[  5964.009] (--) NVIDIA(GPU-0): BenQ LCD (DFP-5): Internal DisplayPort
[  5964.009] (--) NVIDIA(GPU-0): BenQ LCD (DFP-5): 2660.0 MHz maximum pixel clock
[  5964.009] (--) NVIDIA(GPU-0): 
[  5964.011] (--) NVIDIA(GPU-0): DFP-6: disconnected
[  5964.011] (--) NVIDIA(GPU-0): DFP-6: Internal TMDS
[  5964.011] (--) NVIDIA(GPU-0): DFP-6: 165.0 MHz maximum pixel clock
[  5964.011] (--) NVIDIA(GPU-0):

What I want to see here, is a couple of virtual monitors (something like VIRTUAL1 and VIRTUAL2).

Can anybody help me?

Offline

Board footer

Powered by FluxBB