You are not logged in.

#1 2024-01-01 21:20:26

AdvancedGans25
Member
Registered: 2020-03-23
Posts: 24

[SOLVED] Screen goes dark whenever I drag any element on the browser.

So I just made a new install and I have been configuring it, to the best of my abilities, but I have come across a problem that I don't even know where what to look for to fix.
I have a dual monitor set up, with a nvidia card and I'm using the proprietary drivers, xorg and dwm for WM, and the browser is Firefox.
Whenever I try to for example drag and drop a tab on another monitor, my main monitor goes full black, but I am still able to see the mouse cursor,  If there is sound playing, it continues to play. As for the other display, it freezes and doesn't allow me to do anything.
I normally exit to the tty because it is the only thing it allows me to do, and i startx again.
This also happens if I pick any element of the webpage and drag it, and it happens as soon as I click for to long.

This is my xorg.conf

# nvidia-settings: X configuration file generated by nvidia-settings
# nvidia-settings:  version 545.29.06

Section "ServerLayout"
    Identifier     "Layout0"
    Screen      0  "Screen0" 1920 0
    Screen      1  "Screen1" 0 0
    InputDevice    "Keyboard0" "CoreKeyboard"
    InputDevice    "Mouse0" "CorePointer"
    Option         "Xinerama" "1"
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"
    # HorizSync source: edid, VertRefresh source: edid
    Identifier     "Monitor0"
    VendorName     "Unknown"
    ModelName      "Asustek Computer Inc VG279QL1A"
    HorizSync       200.0 - 200.0
    VertRefresh     48.0 - 144.0
    Option         "DPMS"
EndSection

Section "Monitor"
    # HorizSync source: edid, VertRefresh source: edid
    Identifier     "Monitor1"
 VendorName     "Unknown"
    ModelName      "Ancor Communications Inc ASUS VP247"
    HorizSync       24.0 - 83.0
    VertRefresh     50.0 - 75.0
    Option         "DPMS"
EndSection

Section "Device"
    Identifier     "Device0"
    Driver         "nvidia"
    VendorName     "NVIDIA Corporation"
    BoardName      "NVIDIA GeForce GTX 1070"
    BusID          "PCI:1:0:0"
    Screen          0
EndSection

Section "Device"
    Identifier     "Device1"
    Driver         "nvidia"
    VendorName     "NVIDIA Corporation"
    BoardName      "NVIDIA GeForce GTX 1070"
    BusID          "PCI:1:0:0"
    Screen          1
EndSection

Section "Screen"
    Identifier     "Screen0"
    Device         "Device0"
    Monitor        "Monitor0"
    DefaultDepth    24
    Option         "Stereo" "0"
    Option         "nvidiaXineramaInfoOrder" "DFP-6"
    Option         "metamodes" "DP-4: 1920x1080_144 +0+0 {ForceCompositionPipeline=On}"
    Option         "SLI" "Off"
    Option         "MultiGPU" "Off"
    Option         "BaseMosaic" "off"
    SubSection     "Display"
        Depth       24
    EndSubSection
EndSection

Section "Screen"
    Identifier     "Screen1"
    Device         "Device1"
    Monitor        "Monitor1"
    DefaultDepth    24
    Option         "Stereo" "0"
    Option         "nvidiaXineramaInfoOrder" "DFP-5"
    Option         "metamodes" "DP-3: 1920x1080_60 +0+0 {ForceCompositionPipeline=On}"
    Option         "SLI" "Off"
    Option         "MultiGPU" "Off"
    Option         "BaseMosaic" "off"
    SubSection     "Display"
        Depth       24
    EndSubSection
EndSection

I don't know what more information may be needed to solve this so, whatever is needed just ask

Last edited by AdvancedGans25 (2024-01-01 23:43:45)

Offline

#2 2024-01-01 22:06:01

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

Re: [SOLVED] Screen goes dark whenever I drag any element on the browser.

my main monitor goes full black, but I am still able to see the mouse cursor

That's your compositor.

loginctl session-status

This is my xorg.conf

And remove that config, you're binding two X11 screens via xinerama. That approach is outdated since about two decades which is also about the time since when the "mouse" and "kbd" drivers are gone.
I'd not be sursprised if your original issue is nothing more than the pointless and crufted config.

Offline

#3 2024-01-01 22:49:09

AdvancedGans25
Member
Registered: 2020-03-23
Posts: 24

Re: [SOLVED] Screen goes dark whenever I drag any element on the browser.

You're right, it was my compositor... thank you!

As for my config, I had made a minimal one without loading xinerama. I even preferred that one I had because I had my main monitor on 165hz, and in the nvidia-settings, for some reason unknown to me it only goes up to 144hz, and I ended up not changing anything in the xorg.conf, scared there would be new problems. But the thing is that without the option for xinerama active I would only have 1 screen working, the other on would be full black and when I move the cursor there it would just show an x cursor.
And another thing was that since I have this config the xrandr command doesn't show any output.

xrandr
RandR extension missing

And before I changed the config wheneveer I tried to "xrandr --listmonitors" it would only give me my main one as an output.

Last edited by AdvancedGans25 (2024-01-01 22:53:32)

Offline

#4 2024-01-01 23:03:24

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

Re: [SOLVED] Screen goes dark whenever I drag any element on the browser.

And another thing was that since I have this config the xrandr command doesn't show any output.

Yes. randr replaced xinerama. 2 decades ago.

Just remove the config (or move it away from anything /etc/X11) restart X11, post the xorg log and report the outcome (your monitor names will likely change), if you're using KDE or gnome, their smart™ screen daemons may throw a tantrum - remove their configs:
https://wiki.archlinux.org/title/KDE#Un … lution_set
https://wiki.archlinux.org/title/GDM#Se … r_settings

scared there would be new problems

Don't be, you're not alone and as long as you cooperate, this results in a sane and functional server setup.

Offline

#5 2024-01-01 23:33:29

AdvancedGans25
Member
Registered: 2020-03-23
Posts: 24

Re: [SOLVED] Screen goes dark whenever I drag any element on the browser.

I don't have installed any DE.
So I removed it, and when I restarted xorg, it is working perfectly... I even put the compositor that was giving issues running and now it works normally...  and it detected both screens with no problem. Previously I would even have to make the config for the system to detect the 2nd monitor. This time it detected it right away. I don't know if it was something I installed during the time I was trying to fix it or what it was. After a quick review of my log what I assume is that this time it loaded the module "glxserver_nivida" and previously it wasn't loading it. But I have no clue.

 X.Org X Server 1.21.1.10
X Protocol Version 11, Revision 0
[113046.217] Current Operating System: Linux computer 6.6.8-arch1-1 #1 SMP PREEMPT_DYNAMIC Thu, 21 Dec 2023 19:01:01 +0000 x86_64
[113046.217] Kernel command line: BOOT_IMAGE=/vmlinuz-linux root=UUID=91e36ee5-1379-42ea-84cd-4a0d688120de rw loglevel=3 quiet
[113046.218]
[113046.218] Current version of pixman: 0.42.2
[113046.221]    Before reporting problems, check http://wiki.x.org
        to make sure that you have the latest version.
[113046.221] Markers: (--) probed, (**) from config file, (==) default setting,
        (++) from command line, (!!) notice, (II) informational,
        (WW) warning, (EE) error, (NI) not implemented, (??) unknown.
[113046.223] (==) Log file: "/home/cp/.local/share/xorg/Xorg.0.log", Time: Mon Jan  1 23:14:20 2024
[113046.230] (==) Using system config directory "/usr/share/X11/xorg.conf.d"
[113046.230] (==) No Layout section.  Using the first Screen section.
[113046.230] (==) No screen section available. Using defaults.
[113046.230] (**) |-->Screen "Default Screen Section" (0)
[113046.230] (**) |   |-->Monitor "<default monitor>"
[113046.230] (==) No monitor specified for screen "Default Screen Section".
        Using a default monitor configuration.
[113046.230] (==) Automatically adding devices
[113046.230] (==) Automatically enabling devices
[113046.230] (==) Automatically adding GPU devices
[113046.230] (==) Automatically binding GPU devices
[113046.230] (==) Max clients allowed: 256, resource mask: 0x1fffff
[113046.230] (WW) The directory "/usr/share/fonts/misc" does not exist.
[113046.230]    Entry deleted from font path.
[113046.230] (WW) The directory "/usr/share/fonts/TTF" does not exist.
[113046.230]    Entry deleted from font path.
[113046.230] (WW) The directory "/usr/share/fonts/OTF" does not exist.
[113046.230]    Entry deleted from font path.
[113046.230] (WW) The directory "/usr/share/fonts/Type1" does not exist.
[113046.230]    Entry deleted from font path.
[113046.230] (==) FontPath set to:
        /usr/share/fonts/100dpi,
        /usr/share/fonts/75dpi
[113046.230] (==) ModulePath set to "/usr/lib/xorg/modules"
[113046.230] (II) The server relies on udev to provide the list of input devices.
        If no devices become available, reconfigure udev or disable AutoAddDevices.
[113046.230] (II) Module ABI versions:
[113046.230]    X.Org ANSI C Emulation: 0.4
[113046.230]    X.Org Video Driver: 25.2
[113046.230]    X.Org XInput driver : 24.4
[113046.230]    X.Org Server Extension : 10.0
[113046.230] (++) using VT number 1

[113046.232] (II) systemd-logind: took control of session /org/freedesktop/login1/session/_31
[113046.232] (II) xfree86: Adding drm device (/dev/dri/card1)
[113046.232] (II) Platform probe for /sys/devices/pci0000:00/0000:00:01.0/0000:01:00.0/drm/card1
[113046.233] (II) systemd-logind: got fd for /dev/dri/card1 226:1 fd 13 paused 0
[113046.233] (**) OutputClass "nvidia" ModulePath extended to "/usr/lib/nvidia/xorg,/usr/lib/xorg/modules,/usr/lib/xorg/modules"
[113046.234] (--) PCI:*(1@0:0:0) 10de:1b81:1458:3772 rev 161, Mem @ 0xde000000/16777216, 0xc0000000/268435456, 0xd0000000/33554432, I/O @ 0x0000e000/128, BIOS @ 0x????????/131072
[113046.234] (WW) Open ACPI failed (/var/run/acpid.socket) (No such file or directory)
[113046.234] (II) LoadModule: "glx"
[113046.234] (II) Loading /usr/lib/xorg/modules/extensions/libglx.so
[113046.235] (II) Module glx: vendor="X.Org Foundation"
[113046.235]    compiled for 1.21.1.10, module version = 1.0.0
[113046.235]    ABI class: X.Org Server Extension, version 10.0
[113046.235] (II) Applying OutputClass "nvidia" to /dev/dri/card1
[113046.235]    loading driver: nvidia
[113046.235] (==) Matched nvidia as autoconfigured driver 0
[113046.235] (==) Matched nouveau as autoconfigured driver 1
[113046.235] (==) Matched nv as autoconfigured driver 2
[113046.235] (==) Matched modesetting as autoconfigured driver 3
[113046.235] (==) Matched fbdev as autoconfigured driver 4
[113046.235] (==) Matched vesa as autoconfigured driver 5
[113046.235] (==) Assigned the driver to the xf86ConfigLayout
[113046.235] (II) LoadModule: "nvidia"
[113046.235] (II) Loading /usr/lib/xorg/modules/drivers/nvidia_drv.so
[113046.235] (II) Module nvidia: vendor="NVIDIA Corporation"
[113046.235]    compiled for 1.6.99.901, module version = 1.0.0
[113046.235]    Module class: X.Org Video Driver
[113046.235] (II) LoadModule: "nouveau"
[113046.235] (WW) Warning, couldn't open module nouveau
[113046.235] (EE) Failed to load module "nouveau" (module does not exist, 0)
[113046.235] (II) LoadModule: "nv"
[113046.235] (WW) Warning, couldn't open module nv
[113046.235] (EE) Failed to load module "nv" (module does not exist, 0)
[113046.235] (II) LoadModule: "modesetting"
[113046.235] (II) Loading /usr/lib/xorg/modules/drivers/modesetting_drv.so
[113046.236] (II) Module modesetting: vendor="X.Org Foundation"
[113046.236]    compiled for 1.21.1.10, module version = 1.21.1
[113046.236]    Module class: X.Org Video Driver
[113046.236]    ABI class: X.Org Video Driver, version 25.2
[113046.236] (II) LoadModule: "fbdev"
[113046.236] (WW) Warning, couldn't open module fbdev
[113046.236] (EE) Failed to load module "fbdev" (module does not exist, 0)
[113046.236] (II) LoadModule: "vesa"
[113046.236] (II) Loading /usr/lib/xorg/modules/drivers/vesa_drv.so
[113046.237] (II) Module vesa: vendor="X.Org Foundation"
[113046.237]    compiled for 1.21.1.4, module version = 2.6.0
[113046.237]    Module class: X.Org Video Driver
[113046.237]    ABI class: X.Org Video Driver, version 25.2
[113046.237] (II) NVIDIA dlloader X Driver  545.29.06  Thu Nov 16 01:52:34 UTC 2023
[113046.237] (II) NVIDIA Unified Driver for all Supported NVIDIA GPUs
[113046.237] (II) modesetting: Driver for Modesetting Kernel Drivers: kms
[113046.237] (II) VESA: driver for VESA chipsets: vesa
[113046.237] xf86EnableIO: failed to enable I/O ports 0000-03ff (Operation not permitted)
[113046.237] (II) systemd-logind: releasing fd for 226:1
[113046.499] (II) Loading sub module "fb"
[113046.499] (II) LoadModule: "fb"
[113046.499] (II) Module "fb" already built-in
[113046.499] (II) Loading sub module "wfb"
[113046.499] (II) LoadModule: "wfb"
[113046.499] (II) Loading /usr/lib/xorg/modules/libwfb.so
[113046.499] (II) Module wfb: vendor="X.Org Foundation"
[113046.499]    compiled for 1.21.1.10, module version = 1.0.0
[113046.499]    ABI class: X.Org ANSI C Emulation, version 0.4
[113046.499] (WW) Falling back to old probe method for modesetting
[113046.499] (EE) open /dev/dri/card0: No such file or directory
[113046.499] (WW) VGA arbiter: cannot open kernel arbiter, no multi-card support
[113046.499] (II) NVIDIA(0): Creating default Display subsection in Screen section
        "Default Screen Section" for depth/fbbpp 24/32
[113046.499] (==) NVIDIA(0): Depth 24, (==) framebuffer bpp 32
[113046.499] (==) NVIDIA(0): RGB weight 888
[113046.499] (==) NVIDIA(0): Default visual is TrueColor
[113046.499] (==) NVIDIA(0): Using gamma correction (1.0, 1.0, 1.0)
[113046.499] (II) Applying OutputClass "nvidia" options to /dev/dri/card1
[113046.499] (**) NVIDIA(0): Option "AllowEmptyInitialConfiguration"
[113046.499] (**) NVIDIA(0): Enabling 2D acceleration
[113046.499] (II) Loading sub module "glxserver_nvidia"
[113046.499] (II) LoadModule: "glxserver_nvidia"
[113046.499] (II) Loading /usr/lib/nvidia/xorg/libglxserver_nvidia.so
[113046.505] (II) Module glxserver_nvidia: vendor="NVIDIA Corporation"
[113046.505]    compiled for 1.6.99.901, module version = 1.0.0
[113046.505]    Module class: X.Org Server Extension
[113046.505] (II) NVIDIA GLX Module  545.29.06  Thu Nov 16 01:55:23 UTC 2023
[113046.506] (II) NVIDIA: The X server supports PRIME Render Offload.
[113046.506] (--) NVIDIA(0): Valid display device(s) on GPU-0 at PCI:1:0:0
[113046.506] (--) NVIDIA(0):     DFP-0
[113046.506] (--) NVIDIA(0):     DFP-1
[113046.506] (--) NVIDIA(0):     DFP-2
[113046.506] (--) NVIDIA(0):     DFP-3
[113046.506] (--) NVIDIA(0):     DFP-4
[113046.506] (--) NVIDIA(0):     DFP-5
[113046.506] (--) NVIDIA(0):     DFP-6 (boot)
[113046.506] (--) NVIDIA(0):     DFP-7
[113046.507] (II) NVIDIA(0): NVIDIA GPU NVIDIA GeForce GTX 1070 (GP104-A) at PCI:1:0:0
[113046.507] (II) NVIDIA(0):     (GPU-0)
[113046.507] (--) NVIDIA(0): Memory: 8388608 kBytes
[113046.507] (--) NVIDIA(0): VideoBIOS: 86.04.50.40.4a
[113046.507] (II) NVIDIA(0): Detected PCI Express Link width: 16X
[113046.652] (--) NVIDIA(GPU-0): DFP-0: disconnected
[113046.652] (--) NVIDIA(GPU-0): DFP-0: Internal TMDS
[113046.652] (--) NVIDIA(GPU-0): DFP-0: 330.0 MHz maximum pixel clock
[113046.652] (--) NVIDIA(GPU-0):
[113046.653] (--) NVIDIA(GPU-0): DFP-1: disconnected
[113046.653] (--) NVIDIA(GPU-0): DFP-1: Internal TMDS
[113046.653] (--) NVIDIA(GPU-0): DFP-1: 165.0 MHz maximum pixel clock
[113046.653] (--) NVIDIA(GPU-0):
[113046.653] (--) NVIDIA(GPU-0): DFP-2: disconnected
[113046.653] (--) NVIDIA(GPU-0): DFP-2: Internal DisplayPort
[113046.653] (--) NVIDIA(GPU-0): DFP-2: 1440.0 MHz maximum pixel clock
[113046.653] (--) NVIDIA(GPU-0):
[113046.653] (--) NVIDIA(GPU-0): DFP-3: disconnected
[113046.653] (--) NVIDIA(GPU-0): DFP-3: Internal TMDS
[113046.653] (--) NVIDIA(GPU-0): DFP-3: 165.0 MHz maximum pixel clock
[113046.653] (--) NVIDIA(GPU-0):
[113046.653] (--) NVIDIA(GPU-0): DFP-4: disconnected
[113046.653] (--) NVIDIA(GPU-0): DFP-4: Internal DisplayPort
[113046.653] (--) NVIDIA(GPU-0): DFP-4: 1440.0 MHz maximum pixel clock
[113046.653] (--) NVIDIA(GPU-0):
[113046.687] (--) NVIDIA(GPU-0): Ancor Communications Inc ASUS VP247 (DFP-5): connected
[113046.687] (--) NVIDIA(GPU-0): Ancor Communications Inc ASUS VP247 (DFP-5): Internal TMDS
[113046.687] (--) NVIDIA(GPU-0): Ancor Communications Inc ASUS VP247 (DFP-5): 165.0 MHz maximum pixel clock
[113046.687] (--) NVIDIA(GPU-0):
[113046.687] (--) NVIDIA(GPU-0): Asustek Computer Inc VG279QL1A (DFP-6): connected
[113046.687] (--) NVIDIA(GPU-0): Asustek Computer Inc VG279QL1A (DFP-6): Internal DisplayPort
[113046.687] (--) NVIDIA(GPU-0): Asustek Computer Inc VG279QL1A (DFP-6): 1440.0 MHz maximum pixel clock
[113046.687] (--) NVIDIA(GPU-0):
[113046.689] (--) NVIDIA(GPU-0): DFP-7: disconnected
[113046.689] (--) NVIDIA(GPU-0): DFP-7: Internal TMDS
[113046.689] (--) NVIDIA(GPU-0): DFP-7: 165.0 MHz maximum pixel clock
[113046.689] (--) NVIDIA(GPU-0):
[113046.699] (==) NVIDIA(0):
[113046.699] (==) NVIDIA(0): No modes were requested; the default mode "nvidia-auto-select"
[113046.699] (==) NVIDIA(0):     will be used as the requested mode.
[113046.699] (==) NVIDIA(0):
[113046.699] (II) NVIDIA(0): Validated MetaModes:
[113046.699] (II) NVIDIA(0):     "DFP-6:nvidia-auto-select,DFP-5:nvidia-auto-select"
[113046.699] (II) NVIDIA(0): Virtual screen size determined to be 3840 x 1080
[113046.711] (--) NVIDIA(0): DPI set to (81, 80); computed from "UseEdidDpi" X config
[113046.711] (--) NVIDIA(0):     option
[113046.711] (II) UnloadModule: "modesetting"
[113046.711] (II) Unloading modesetting
[113046.711] (II) UnloadModule: "vesa"
[113046.711] (II) Unloading vesa
[113046.711] (WW) NVIDIA: Failed to bind sideband socket to
[113046.711] (WW) NVIDIA:     '/var/run/nvidia-xdriver-b5685b50' Permission denied
[113046.711] (II) NVIDIA: Reserving 24576.00 MB of virtual memory for indirect memory
[113046.711] (II) NVIDIA:     access.
[113046.713] (II) NVIDIA(0): ACPI: failed to connect to the ACPI event daemon; the daemon
[113046.713] (II) NVIDIA(0):     may not be running or the "AcpidSocketPath" X
[113046.713] (II) NVIDIA(0):     configuration option may not be set correctly.  When the
[113046.713] (II) NVIDIA(0):     ACPI event daemon is available, the NVIDIA X driver will
[113046.713] (II) NVIDIA(0):     try to use it to receive ACPI event notifications.  For
[113046.713] (II) NVIDIA(0):     details, please see the "ConnectToAcpid" and
[113046.713] (II) NVIDIA(0):     "AcpidSocketPath" X configuration options in Appendix B: X
[113046.713] (II) NVIDIA(0):     Config Options in the README.
[113046.726] (II) NVIDIA(0): Setting mode "DFP-6:nvidia-auto-select,DFP-5:nvidia-auto-select"
[113046.762] (==) NVIDIA(0): Disabling shared memory pixmaps
[113046.762] (==) NVIDIA(0): Backing store enabled
[113046.762] (==) NVIDIA(0): Silken mouse enabled
[113046.762] (==) NVIDIA(0): DPMS enabled
[113046.762] (II) Loading sub module "dri2"
[113046.762] (II) LoadModule: "dri2"
[113046.762] (II) Module "dri2" already built-in
[113046.762] (II) NVIDIA(0): [DRI2] Setup complete
[113046.762] (II) NVIDIA(0): [DRI2]   VDPAU driver: nvidia
[113046.762] (II) Initializing extension Generic Event Extension
[113046.762] (II) Initializing extension SHAPE
[113046.762] (II) Initializing extension MIT-SHM
[113046.762] (II) Initializing extension XInputExtension
[113046.762] (II) Initializing extension XTEST
[113046.762] (II) Initializing extension BIG-REQUESTS
[113046.762] (II) Initializing extension SYNC
[113046.762] (II) Initializing extension XKEYBOARD
[113046.762] (II) Initializing extension XC-MISC
[113046.762] (II) Initializing extension SECURITY
[113046.762] (II) Initializing extension XFIXES
[113046.762] (II) Initializing extension RENDER
[113046.763] (II) Initializing extension RANDR
[113046.763] (II) Initializing extension COMPOSITE
[113046.763] (II) Initializing extension DAMAGE
[113046.763] (II) Initializing extension MIT-SCREEN-SAVER
[113046.763] (II) Initializing extension DOUBLE-BUFFER
[113046.763] (II) Initializing extension RECORD
[113046.763] (II) Initializing extension DPMS
[113046.763] (II) Initializing extension Present
[113046.763] (II) Initializing extension DRI3
[113046.763] (II) Initializing extension X-Resource
[113046.763] (II) Initializing extension XVideo
[113046.763] (II) Initializing extension XVideo-MotionCompensation
[113046.763] (II) Initializing extension GLX
[113046.763] (II) Initializing extension GLX
[113046.763] (II) Indirect GLX disabled.
[113046.763] (II) GLX: Another vendor is already registered for screen 0
[113046.763] (II) Initializing extension XFree86-VidModeExtension
[113046.763] (II) Initializing extension XFree86-DGA
[113046.763] (II) Initializing extension XFree86-DRI
[113046.763] (II) Initializing extension DRI2
[113046.763] (II) Initializing extension NV-GLX
[113046.763] (II) Initializing extension NV-CONTROL
[113046.763] (II) Initializing extension XINERAMA
[113046.809] (II) config/udev: Adding input device Power Button (/dev/input/event2)
[113046.809] (**) Power Button: Applying InputClass "libinput keyboard catchall"
[113046.809] (II) LoadModule: "libinput"
[113046.809] (II) Loading /usr/lib/xorg/modules/input/libinput_drv.so
[113046.809] (II) Module libinput: vendor="X.Org Foundation"
[113046.809]    compiled for 1.21.1.8, module version = 1.4.0
[113046.809]    Module class: X.Org XInput Driver
[113046.809]    ABI class: X.Org XInput driver, version 24.4
[113046.809] (II) Using input driver 'libinput' for 'Power Button'
[113046.810] (II) systemd-logind: got fd for /dev/input/event2 13:66 fd 38 paused 0
[113046.810] (**) Power Button: always reports core events
[113046.810] (**) Option "Device" "/dev/input/event2"
[113046.811] (II) event2  - Power Button: is tagged by udev as: Keyboard
[113046.811] (II) event2  - Power Button: device is a keyboard
[113046.811] (II) event2  - Power Button: device removed
[113046.811] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/LNXPWRBN:00/input/input2/event2"
[113046.811] (II) XINPUT: Adding extended input device "Power Button" (type: KEYBOARD, id 6)
[113046.811] (II) event2  - Power Button: is tagged by udev as: Keyboard
[113046.811] (II) event2  - Power Button: device is a keyboard
[113046.812] (II) config/udev: Adding input device Power Button (/dev/input/event1)
[113046.812] (**) Power Button: Applying InputClass "libinput keyboard catchall"
[113046.812] (II) Using input driver 'libinput' for 'Power Button'
[113046.812] (II) systemd-logind: got fd for /dev/input/event1 13:65 fd 41 paused 0
[113046.812] (**) Power Button: always reports core events
[113046.812] (**) Option "Device" "/dev/input/event1"
[113046.813] (II) event1  - Power Button: is tagged by udev as: Keyboard
[113046.813] (II) event1  - Power Button: device is a keyboard
[113046.813] (II) event1  - Power Button: device removed
[113046.813] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input1/event1"
[113046.813] (II) XINPUT: Adding extended input device "Power Button" (type: KEYBOARD, id 7)
[113046.813] (II) event1  - Power Button: is tagged by udev as: Keyboard
[113046.813] (II) event1  - Power Button: device is a keyboard
[113046.814] (II) config/udev: Adding input device Sleep Button (/dev/input/event0)
[113046.814] (**) Sleep Button: Applying InputClass "libinput keyboard catchall"
[113046.814] (II) Using input driver 'libinput' for 'Sleep Button'
[113046.814] (II) systemd-logind: got fd for /dev/input/event0 13:64 fd 42 paused 0
[113046.814] (**) Sleep Button: always reports core events
[113046.814] (**) Option "Device" "/dev/input/event0"
[113046.814] (II) event0  - Sleep Button: is tagged by udev as: Keyboard
[113046.814] (II) event0  - Sleep Button: device is a keyboard
[113046.814] (II) event0  - Sleep Button: device removed
[113046.814] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0E:00/input/input0/event0"
[113046.814] (II) XINPUT: Adding extended input device "Sleep Button" (type: KEYBOARD, id 8)
[113046.815] (II) event0  - Sleep Button: is tagged by udev as: Keyboard
[113046.815] (II) event0  - Sleep Button: device is a keyboard
[113046.815] (II) config/udev: Adding input device HDA NVidia HDMI/DP,pcm=3 (/dev/input/event12)
[113046.815] (II) No input driver specified, ignoring this device.
[113046.815] (II) This device may have been added with another device file.
[113046.816] (II) config/udev: Adding input device HDA NVidia HDMI/DP,pcm=7 (/dev/input/event13)
[113046.816] (II) No input driver specified, ignoring this device.
[113046.816] (II) No input driver specified, ignoring this device.
[113046.816] (II) This device may have been added with another device file.
[113046.816] (II) config/udev: Adding input device HDA NVidia HDMI/DP,pcm=8 (/dev/input/event14)
[113046.816] (II) No input driver specified, ignoring this device.
[113046.816] (II) This device may have been added with another device file.
[113046.816] (II) config/udev: Adding input device HDA NVidia HDMI/DP,pcm=9 (/dev/input/event15)
[113046.816] (II) No input driver specified, ignoring this device.
[113046.816] (II) This device may have been added with another device file.
[113046.816] (II) config/udev: Adding input device ASUS ASUS Strix Tactic Pro Gaming Keyboard (/dev/input/event4)
[113046.816] (**) ASUS ASUS Strix Tactic Pro Gaming Keyboard: Applying InputClass "libinput keyboard catchall"
[113046.816] (II) Using input driver 'libinput' for 'ASUS ASUS Strix Tactic Pro Gaming Keyboard'
[113046.817] (II) systemd-logind: got fd for /dev/input/event4 13:68 fd 43 paused 0
[113046.817] (**) ASUS ASUS Strix Tactic Pro Gaming Keyboard: always reports core events
[113046.817] (**) Option "Device" "/dev/input/event4"
[113046.818] (II) event4  - ASUS ASUS Strix Tactic Pro Gaming Keyboard: is tagged by udev as: Keyboard
[113046.818] (II) event4  - ASUS ASUS Strix Tactic Pro Gaming Keyboard: device is a keyboard
[113046.818] (II) event4  - ASUS ASUS Strix Tactic Pro Gaming Keyboard: device removed
[113046.818] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:14.0/usb1/1-11/1-11:1.0/0003:195D:2039.0002/input/input6/event4"
[113046.818] (II) XINPUT: Adding extended input device "ASUS ASUS Strix Tactic Pro Gaming Keyboard" (type: KEYBOARD, id 9)
[113046.819] (II) event4  - ASUS ASUS Strix Tactic Pro Gaming Keyboard: is tagged by udev as: Keyboard
[113046.819] (II) event4  - ASUS ASUS Strix Tactic Pro Gaming Keyboard: device is a keyboard
[113046.819] (II) config/udev: Adding input device ASUS ASUS Strix Tactic Pro Gaming Keyboard (/dev/input/event8)
[113046.819] (**) ASUS ASUS Strix Tactic Pro Gaming Keyboard: Applying InputClass "libinput keyboard catchall"
[113046.819] (II) Using input driver 'libinput' for 'ASUS ASUS Strix Tactic Pro Gaming Keyboard'
[113046.820] (II) systemd-logind: got fd for /dev/input/event8 13:72 fd 44 paused 0
[113046.820] (**) ASUS ASUS Strix Tactic Pro Gaming Keyboard: always reports core events
[113046.820] (**) Option "Device" "/dev/input/event8"
[113046.820] (II) event8  - ASUS ASUS Strix Tactic Pro Gaming Keyboard: is tagged by udev as: Keyboard
[113046.820] (II) event8  - ASUS ASUS Strix Tactic Pro Gaming Keyboard: device is a keyboard
[113046.820] (II) event8  - ASUS ASUS Strix Tactic Pro Gaming Keyboard: device removed
[113046.820] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:14.0/usb1/1-11/1-11:1.1/0003:195D:2039.0003/input/input11/event8"
[113046.820] (II) XINPUT: Adding extended input device "ASUS ASUS Strix Tactic Pro Gaming Keyboard" (type: KEYBOARD, id 10)
[113046.821] (II) event8  - ASUS ASUS Strix Tactic Pro Gaming Keyboard: is tagged by udev as: Keyboard
[113046.821] (II) event8  - ASUS ASUS Strix Tactic Pro Gaming Keyboard: device is a keyboard
[113046.822] (II) config/udev: Adding input device ASUS ASUS Strix Tactic Pro Gaming Keyboard Mouse (/dev/input/event5)
[113046.822] (**) ASUS ASUS Strix Tactic Pro Gaming Keyboard Mouse: Applying InputClass "libinput pointer catchall"
[113046.822] (II) Using input driver 'libinput' for 'ASUS ASUS Strix Tactic Pro Gaming Keyboard Mouse'
[113046.822] (II) systemd-logind: got fd for /dev/input/event5 13:69 fd 45 paused 0
[113046.822] (**) ASUS ASUS Strix Tactic Pro Gaming Keyboard Mouse: always reports core events
[113046.822] (**) Option "Device" "/dev/input/event5"
[113046.823] (II) event5  - ASUS ASUS Strix Tactic Pro Gaming Keyboard Mouse: is tagged by udev as: Mouse
[113046.823] (II) event5  - ASUS ASUS Strix Tactic Pro Gaming Keyboard Mouse: device is a pointer
[113046.823] (II) event5  - ASUS ASUS Strix Tactic Pro Gaming Keyboard Mouse: device removed
[113046.823] (II) libinput: ASUS ASUS Strix Tactic Pro Gaming Keyboard Mouse: Step value 0 was provided, libinput Fallback acceleration function is used.
[113046.823] (II) libinput: ASUS ASUS Strix Tactic Pro Gaming Keyboard Mouse: Step value 0 was provided, libinput Fallback acceleration function is used.
[113046.823] (II) libinput: ASUS ASUS Strix Tactic Pro Gaming Keyboard Mouse: Step value 0 was provided, libinput Fallback acceleration function is used.
[113046.823] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:14.0/usb1/1-11/1-11:1.1/0003:195D:2039.0003/input/input7/event5"
[113046.823] (II) XINPUT: Adding extended input device "ASUS ASUS Strix Tactic Pro Gaming Keyboard Mouse" (type: MOUSE, id 11)
[113046.823] (**) Option "AccelerationScheme" "none"
[113046.823] (**) ASUS ASUS Strix Tactic Pro Gaming Keyboard Mouse: (accel) selected scheme none/0
[113046.823] (**) ASUS ASUS Strix Tactic Pro Gaming Keyboard Mouse: (accel) acceleration factor: 2.000
[113046.823] (**) ASUS ASUS Strix Tactic Pro Gaming Keyboard Mouse: (accel) acceleration threshold: 4
[113046.824] (II) event5  - ASUS ASUS Strix Tactic Pro Gaming Keyboard Mouse: is tagged by udev as: Mouse
[113046.824] (II) event5  - ASUS ASUS Strix Tactic Pro Gaming Keyboard Mouse: device is a pointer
[113046.824] (II) config/udev: Adding input device ASUS ASUS Strix Tactic Pro Gaming Keyboard Mouse (/dev/input/mouse0)
[113046.824] (II) No input driver specified, ignoring this device.
[113046.824] (II) This device may have been added with another device file.
[113046.825] (II) config/udev: Adding input device ASUS ASUS Strix Tactic Pro Gaming Keyboard System Control (/dev/input/event6)
[113046.825] (**) ASUS ASUS Strix Tactic Pro Gaming Keyboard System Control: Applying InputClass "libinput keyboard catchall"
[113046.825] (II) Using input driver 'libinput' for 'ASUS ASUS Strix Tactic Pro Gaming Keyboard System Control'
[113046.825] (II) Using input driver 'libinput' for 'ASUS ASUS Strix Tactic Pro Gaming Keyboard System Control'
[113046.825] (II) systemd-logind: got fd for /dev/input/event6 13:70 fd 46 paused 0
[113046.825] (**) ASUS ASUS Strix Tactic Pro Gaming Keyboard System Control: always reports core events
[113046.825] (**) Option "Device" "/dev/input/event6"
[113046.826] (II) event6  - ASUS ASUS Strix Tactic Pro Gaming Keyboard System Control: is tagged by udev as: Keyboard
[113046.826] (II) event6  - ASUS ASUS Strix Tactic Pro Gaming Keyboard System Control: device is a keyboard
[113046.826] (II) event6  - ASUS ASUS Strix Tactic Pro Gaming Keyboard System Control: device removed
[113046.826] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:14.0/usb1/1-11/1-11:1.1/0003:195D:2039.0003/input/input8/event6"
[113046.826] (II) XINPUT: Adding extended input device "ASUS ASUS Strix Tactic Pro Gaming Keyboard System Control" (type: KEYBOARD, id 12)
[113046.827] (II) event6  - ASUS ASUS Strix Tactic Pro Gaming Keyboard System Control: is tagged by udev as: Keyboard
[113046.827] (II) event6  - ASUS ASUS Strix Tactic Pro Gaming Keyboard System Control: device is a keyboard
[113046.827] (II) config/udev: Adding input device ASUS ASUS Strix Tactic Pro Gaming Keyboard Consumer Control (/dev/input/event7)
[113046.827] (**) ASUS ASUS Strix Tactic Pro Gaming Keyboard Consumer Control: Applying InputClass "libinput keyboard catchall"
[113046.827] (II) Using input driver 'libinput' for 'ASUS ASUS Strix Tactic Pro Gaming Keyboard Consumer Control'
[113046.828] (II) systemd-logind: got fd for /dev/input/event7 13:71 fd 47 paused 0
[113046.828] (**) ASUS ASUS Strix Tactic Pro Gaming Keyboard Consumer Control: always reports core events
[113046.828] (**) Option "Device" "/dev/input/event7"
[113046.829] (II) event7  - ASUS ASUS Strix Tactic Pro Gaming Keyboard Consumer Control: is tagged by udev as: Keyboard
[113046.829] (II) event7  - ASUS ASUS Strix Tactic Pro Gaming Keyboard Consumer Control: device is a keyboard
[113046.829] (II) event7  - ASUS ASUS Strix Tactic Pro Gaming Keyboard Consumer Control: device removed
[113046.829] (II) libinput: ASUS ASUS Strix Tactic Pro Gaming Keyboard Consumer Control: needs a virtual subdevice
[113046.829] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:14.0/usb1/1-11/1-11:1.1/0003:195D:2039.0003/input/input9/event7"
[113046.829] (II) XINPUT: Adding extended input device "ASUS ASUS Strix Tactic Pro Gaming Keyboard Consumer Control" (type: MOUSE, id 13)
[113046.829] (**) Option "AccelerationScheme" "none"
[113046.829] (**) ASUS ASUS Strix Tactic Pro Gaming Keyboard Consumer Control: (accel) selected scheme none/0
[113046.829] (**) ASUS ASUS Strix Tactic Pro Gaming Keyboard Consumer Control: (accel) acceleration factor: 2.000
[113046.829] (**) ASUS ASUS Strix Tactic Pro Gaming Keyboard Consumer Control: (accel) acceleration threshold: 4
[113046.829] (II) event7  - ASUS ASUS Strix Tactic Pro Gaming Keyboard Consumer Control: is tagged by udev as: Keyboard
[113046.830] (II) event7  - ASUS ASUS Strix Tactic Pro Gaming Keyboard Consumer Control: device is a keyboard
[113046.830] (II) config/udev: Adding input device Logitech G Pro Gaming Mouse (/dev/input/event9)
[113046.830] (**) Logitech G Pro Gaming Mouse: Applying InputClass "libinput pointer catchall"
[113046.830] (II) Using input driver 'libinput' for 'Logitech G Pro Gaming Mouse'
[113046.885] (II) systemd-logind: got fd for /dev/input/event9 13:73 fd 48 paused 0
[113046.885] (**) Logitech G Pro Gaming Mouse: always reports core events
[113046.885] (**) Option "Device" "/dev/input/event9"
[113046.886] (II) event9  - Logitech G Pro Gaming Mouse: is tagged by udev as: Mouse
[113046.886] (II) event9  - Logitech G Pro Gaming Mouse: device is a pointer
[113046.886] (II) event9  - Logitech G Pro Gaming Mouse: device removed
[113046.886] (II) libinput: Logitech G Pro Gaming Mouse: Step value 0 was provided, libinput Fallback acceleration function is used.
[113046.886] (II) libinput: Logitech G Pro Gaming Mouse: Step value 0 was provided, libinput Fallback acceleration function is used.
[113046.886] (II) libinput: Logitech G Pro Gaming Mouse: Step value 0 was provided, libinput Fallback acceleration function is used.
[113046.886] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:14.0/usb1/1-12/1-12:1.0/0003:046D:C085.0005/input/input12/event9"
[113046.886] (II) XINPUT: Adding extended input device "Logitech G Pro Gaming Mouse" (type: MOUSE, id 14)
[113046.887] (**) Option "AccelerationScheme" "none"
[113046.887] (**) Logitech G Pro Gaming Mouse: (accel) selected scheme none/0
[113046.887] (**) Logitech G Pro Gaming Mouse: (accel) acceleration factor: 2.000
[113046.887] (**) Logitech G Pro Gaming Mouse: (accel) acceleration threshold: 4
[113046.888] (II) event9  - Logitech G Pro Gaming Mouse: is tagged by udev as: Mouse
[113046.888] (II) event9  - Logitech G Pro Gaming Mouse: device is a pointer
[113046.888] (II) config/udev: Adding input device Logitech G Pro Gaming Mouse (/dev/input/mouse1)
[113046.888] (II) No input driver specified, ignoring this device.
[113046.888] (II) This device may have been added with another device file.
[113046.889] (II) config/udev: Adding input device Logitech G Pro Gaming Mouse Keyboard (/dev/input/event10)
[113046.889] (**) Logitech G Pro Gaming Mouse Keyboard: Applying InputClass "libinput keyboard catchall"
[113046.889] (II) Using input driver 'libinput' for 'Logitech G Pro Gaming Mouse Keyboard'
[113046.890] (II) systemd-logind: got fd for /dev/input/event10 13:74 fd 49 paused 0
[113046.890] (**) Logitech G Pro Gaming Mouse Keyboard: always reports core events
[113046.890] (**) Option "Device" "/dev/input/event10"
[113046.891] (II) event10 - Logitech G Pro Gaming Mouse Keyboard: is tagged by udev as: Keyboard
[113046.891] (II) event10 - Logitech G Pro Gaming Mouse Keyboard: device is a keyboard
[113046.891] (II) event10 - Logitech G Pro Gaming Mouse Keyboard: device removed
[113046.891] (II) libinput: Logitech G Pro Gaming Mouse Keyboard: needs a virtual subdevice
[113046.891] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:14.0/usb1/1-12/1-12:1.1/0003:046D:C085.0006/input/input13/event10"
[113046.891] (II) XINPUT: Adding extended input device "Logitech G Pro Gaming Mouse Keyboard" (type: MOUSE, id 15)
[113046.891] (**) Option "AccelerationScheme" "none"
[113046.891] (**) Logitech G Pro Gaming Mouse Keyboard: (accel) selected scheme none/0
[113046.891] (**) Logitech G Pro Gaming Mouse Keyboard: (accel) acceleration factor: 2.000
[113046.891] (**) Logitech G Pro Gaming Mouse Keyboard: (accel) acceleration threshold: 4
[113046.892] (II) event10 - Logitech G Pro Gaming Mouse Keyboard: is tagged by udev as: Keyboard
[113046.892] (II) event10 - Logitech G Pro Gaming Mouse Keyboard: device is a keyboard
[113046.893] (II) config/udev: Adding input device C-Media Electronics Inc.       USB PnP Sound Device (/dev/input/event3)
[113046.893] (**) C-Media Electronics Inc.       USB PnP Sound Device: Applying InputClass "libinput keyboard catchall"
[113046.893] (II) Using input driver 'libinput' for 'C-Media Electronics Inc.       USB PnP Sound Device'
[113046.894] (II) systemd-logind: got fd for /dev/input/event3 13:67 fd 50 paused 0
[113046.894] (**) C-Media Electronics Inc.       USB PnP Sound Device: always reports core events
[113046.894] (**) Option "Device" "/dev/input/event3"
[113046.895] (II) event3  - C-Media Electronics Inc.       USB PnP Sound Device: is tagged by udev as: Keyboard
[113046.895] (II) event3  - C-Media Electronics Inc.       USB PnP Sound Device: device is a keyboard
[113046.895] (II) event3  - C-Media Electronics Inc.       USB PnP Sound Device: device removed
[113046.895] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:14.0/usb1/1-9/1-9:1.3/0003:08BB:2902.0001/input/input5/event3"
[113046.895] (II) XINPUT: Adding extended input device "C-Media Electronics Inc.       USB PnP Sound Device" (type: KEYBOARD, id 16)
[113046.897] (II) event3  - C-Media Electronics Inc.       USB PnP Sound Device: is tagged by udev as: Keyboard
[113046.897] (II) event3  - C-Media Electronics Inc.       USB PnP Sound Device: device is a keyboard
[113046.897] (II) config/udev: Adding input device HDA Intel PCH Front Mic (/dev/input/event16)
[113046.897] (II) No input driver specified, ignoring this device.
[113046.897] (II) This device may have been added with another device file.
[113046.897] (II) config/udev: Adding input device HDA Intel PCH Rear Mic (/dev/input/event17)
[113046.897] (II) No input driver specified, ignoring this device.
[113046.897] (II) This device may have been added with another device file.
[113046.898] (II) config/udev: Adding input device HDA Intel PCH Line (/dev/input/event18)
[113046.898] (II) No input driver specified, ignoring this device.
[113046.898] (II) This device may have been added with another device file.
[113046.898] (II) config/udev: Adding input device HDA Intel PCH Line Out (/dev/input/event19)
[113046.898] (II) No input driver specified, ignoring this device.
[113046.898] (II) This device may have been added with another device file.
[113046.898] (II) config/udev: Adding input device HDA Intel PCH Front Headphone (/dev/input/event20)
[113046.898] (II) No input driver specified, ignoring this device.
[113046.898] (II) This device may have been added with another device file.
[113046.899] (II) config/udev: Adding input device PC Speaker (/dev/input/event11)
[113046.899] (II) No input driver specified, ignoring this device.
[113046.899] (II) This device may have been added with another device file.
[113046.904] (**) ASUS ASUS Strix Tactic Pro Gaming Keyboard Consumer Control: Applying InputClass "libinput keyboard catchall"
[113046.904] (II) Using input driver 'libinput' for 'ASUS ASUS Strix Tactic Pro Gaming Keyboard Consumer Control'
[113046.904] (II) systemd-logind: returning pre-existing fd for /dev/input/event7 13:71
[113046.904] (**) ASUS ASUS Strix Tactic Pro Gaming Keyboard Consumer Control: always reports core events
[113046.904] (**) Option "Device" "/dev/input/event7"
[113046.904] (II) libinput: ASUS ASUS Strix Tactic Pro Gaming Keyboard Consumer Control: is a virtual subdevice
[113046.904] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:14.0/usb1/1-11/1-11:1.1/0003:195D:2039.0003/input/input9/event7"
[113046.904] (II) XINPUT: Adding extended input device "ASUS ASUS Strix Tactic Pro Gaming Keyboard Consumer Control" (type: KEYBOARD, id 17)
[113046.904] (**) Logitech G Pro Gaming Mouse Keyboard: Applying InputClass "libinput keyboard catchall"
[113046.904] (II) Using input driver 'libinput' for 'Logitech G Pro Gaming Mouse Keyboard'
[113046.904] (II) systemd-logind: returning pre-existing fd for /dev/input/event10 13:74
[113046.904] (**) Logitech G Pro Gaming Mouse Keyboard: always reports core events
[113046.904] (**) Option "Device" "/dev/input/event10"
[113046.904] (II) libinput: Logitech G Pro Gaming Mouse Keyboard: is a virtual subdevice
[113046.904] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:14.0/usb1/1-12/1-12:1.1/0003:046D:C085.0006/input/input13/event10"
[113046.904] (II) XINPUT: Adding extended input device "Logitech G Pro Gaming Mouse Keyboard" (type: KEYBOARD, id 18)

I will be adding in /usr/share/X11/xorg.conf.d a 10-monitor.conf, just with small adjustments.
Do you think I need to add anything else to have a basic functioning system?

Last edited by AdvancedGans25 (2024-01-01 23:37:55)

Offline

#6 2024-01-01 23:39:11

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

Re: [SOLVED] Screen goes dark whenever I drag any element on the browser.

Do you think I need to add anything else to have a basic functioning system?

Nope. The X11 server has decent auto-detection, augmenting that w/ specific preferences (eg. monitor layout) is exactly how it's supposed to work.
If you should be running into non-deterministic misbehavior the most likely cause is late KMS or (rencetly) the simpledrm device:
https://wiki.archlinux.org/title/NVIDIA … de_setting


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

Offline

#7 2024-01-01 23:45:33

AdvancedGans25
Member
Registered: 2020-03-23
Posts: 24

Re: [SOLVED] Screen goes dark whenever I drag any element on the browser.

Alright! Thank you so much man, for taking the time to answer. Have a nice year, mate!!!!

Offline

Board footer

Powered by FluxBB