You are not logged in.

#1 2021-12-10 23:06:51

pepper
Member
Registered: 2017-12-09
Posts: 116

[SOLVED] Picom glitches

Hello, I installed xfce, nvidia dkms proprietary drivers and picom.
My picom configuration is in the paste: https://bin.disroot.org/?af6a127dd22975 … TG931fTyPo
I often get graphical glitches when I use glx or xr_glx_hybrid backend, like in this video gif: https://ibb.co/mqgvCG6 (I was just scrolling in one direction: the bottom). They disappear everytime after I move the glitched window. It often happens in the terminal line (while I write a command or while a command is executed) and in window borders.

I started using glx and xr_glx_hybrid backends because are the only ones that don´t generate tearing (yes, I read the picom arch wiki page and I applied all the possible configurations to fix tearing, like vsync=true). If I use xrender I don't have glitches but I have tearing.

Is there a way to use the glx backend without having these glitches?

Last edited by pepper (2021-12-11 22:01:56)

Offline

#2 2021-12-11 08:03:14

seth
Member
Registered: 2012-09-03
Posts: 52,199

Re: [SOLVED] Picom glitches

Looks like a recent and pending mesa bug, but that doesn't match

Hello, I installed xfce, nvidia dkms proprietary drivers and picom.

Please post your xorg log and picom configuration.

Offline

#3 2021-12-11 09:28:58

pepper
Member
Registered: 2017-12-09
Posts: 116

Re: [SOLVED] Picom glitches

I have mesa and wayland (& xorg-xwayland) installed too, I'm not sure why. Maybe a software dependence, my installation was based on nvidia dkms and generally drivers.

Picom config:

#################################
#             Shadows           #
#################################


# Enabled client-side shadows on windows. Note desktop windows 
# (windows with '_NET_WM_WINDOW_TYPE_DESKTOP') never get shadow, 
# unless explicitly requested using the wintypes option.
#
# shadow = false
shadow = true;

# The blur radius for shadows, in pixels. (defaults to 12)
# shadow-radius = 12
shadow-radius = 7;

# The opacity of shadows. (0.0 - 1.0, defaults to 0.75)
# shadow-opacity = .75

# The left offset for shadows, in pixels. (defaults to -15)
# shadow-offset-x = -15
shadow-offset-x = -7;

# The top offset for shadows, in pixels. (defaults to -15)
# shadow-offset-y = -15
shadow-offset-y = -7;

# Avoid drawing shadows on dock/panel windows. This option is deprecated,
# you should use the *wintypes* option in your config file instead.
#
# no-dock-shadow = false

# Don't draw shadows on drag-and-drop windows. This option is deprecated, 
# you should use the *wintypes* option in your config file instead.
#
# no-dnd-shadow = false

# Red color value of shadow (0.0 - 1.0, defaults to 0).
# shadow-red = 0

# Green color value of shadow (0.0 - 1.0, defaults to 0).
# shadow-green = 0

# Blue color value of shadow (0.0 - 1.0, defaults to 0).
# shadow-blue = 0

# Do not paint shadows on shaped windows. Note shaped windows 
# here means windows setting its shape through X Shape extension. 
# Those using ARGB background is beyond our control. 
# Deprecated, use 
#   shadow-exclude = 'bounding_shaped'
# or 
#   shadow-exclude = 'bounding_shaped && !rounded_corners'
# instead.
#
# shadow-ignore-shaped = ''

# Specify a list of conditions of windows that should have no shadow.
#
# examples:
#   shadow-exclude = "n:e:Notification";
#
# shadow-exclude = []
shadow-exclude = [
  "name = 'Notification'",
  "class_g = 'Conky'",
  "class_g = 'Notify-osd'",
  "class_g = 'Plank'",
  "class_g = 'xfce4-notifyd'",
  "class_g = 'firefox' && argb",
  "class_g = 'telegram-desktop'", 
  "class_g = 'TelegramDesktop'",
  "_GTK_FRAME_EXTENTS@:c"
];

# Specify a X geometry that describes the region in which shadow should not
# be painted in, such as a dock window region. Use 
#    shadow-exclude-reg = "x10+0+0"
# for example, if the 10 pixels on the bottom of the screen should not have shadows painted on.
#
# shadow-exclude-reg = "" 

# Crop shadow of a window fully on a particular Xinerama screen to the screen.
# xinerama-shadow-crop = false


#################################
#           Fading              #
#################################


# Fade windows in/out when opening/closing and when opacity changes,
#  unless no-fading-openclose is used.
# fading = false
fading = true

# Opacity change between steps while fading in. (0.01 - 1.0, defaults to 0.028)
# fade-in-step = 0.028
fade-in-step = 0.03;

# Opacity change between steps while fading out. (0.01 - 1.0, defaults to 0.03)
# fade-out-step = 0.03
fade-out-step = 0.03;

# The time between steps in fade step, in milliseconds. (> 0, defaults to 10)
# fade-delta = 10

# Specify a list of conditions of windows that should not be faded.
# fade-exclude = []

# Do not fade on window open/close.
# no-fading-openclose = false

# Do not fade destroyed ARGB windows with WM frame. Workaround of bugs in Openbox, Fluxbox, etc.
# no-fading-destroyed-argb = false


#################################
#   Transparency / Opacity      #
#################################


# Opacity of inactive windows. (0.1 - 1.0, defaults to 1.0)
# inactive-opacity = 1
# inactive-opacity = 0.8;

# Opacity of window titlebars and borders. (0.1 - 1.0, disabled by default)
# frame-opacity = 1.0
# frame-opacity = 0.7;

# Default opacity for dropdown menus and popup menus. (0.0 - 1.0, defaults to 1.0)
# menu-opacity = 1.0

# Let inactive opacity set by -i override the '_NET_WM_OPACITY' values of windows.
# inactive-opacity-override = true
inactive-opacity-override = false;

# Default opacity for active windows. (0.0 - 1.0, defaults to 1.0)
# active-opacity = 1.0

# Dim inactive windows. (0.0 - 1.0, defaults to 0.0)
# inactive-dim = 0.0

# Specify a list of conditions of windows that should always be considered focused.
# focus-exclude = []
focus-exclude = [ "class_g = 'Cairo-clock'" ];

# Use fixed inactive dim value, instead of adjusting according to window opacity.
# inactive-dim-fixed = 1.0

# Specify a list of opacity rules, in the format `PERCENT:PATTERN`, 
# like `50:name *= "Firefox"`. picom-trans is recommended over this. 
# Note we don't make any guarantee about possible conflicts with other 
# programs that set '_NET_WM_WINDOW_OPACITY' on frame or client windows.
# example:
#    opacity-rule = [ "80:class_g = 'URxvt'" ];
#
# opacity-rule = []


#################################
#     Background-Blurring       #
#################################


# Parameters for background blurring, see the *BLUR* section for more information.
# blur-method = 
# blur-size = 12
#
# blur-deviation = false

# Blur background of semi-transparent / ARGB windows. 
# Bad in performance, with driver-dependent behavior. 
# The name of the switch may change without prior notifications.
#
# blur-background = false

# Blur background of windows when the window frame is not opaque. 
# Implies:
#    blur-background 
# Bad in performance, with driver-dependent behavior. The name may change.
#
# blur-background-frame = false


# Use fixed blur strength rather than adjusting according to window opacity.
# blur-background-fixed = false


# Specify the blur convolution kernel, with the following format:
# example:
#   blur-kern = "5,5,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1";
#
# blur-kern = ''
blur-kern = "3x3box";


# Exclude conditions for background blur.
# blur-background-exclude = []
blur-background-exclude = [
  "window_type = 'dock'",
  "window_type = 'desktop'",
  "_GTK_FRAME_EXTENTS@:c"
];

#################################
#       General Settings        #
#################################

# Daemonize process. Fork to background after initialization. Causes issues with certain (badly-written) drivers.
# daemon = false

# Specify the backend to use: `xrender`, `glx`, or `xr_glx_hybrid`.
# `xrender` is the default one.
#
# backend = 'glx'
backend = "glx";

# Enable/disable VSync.
# vsync = false
vsync = true

# Enable remote control via D-Bus. See the *D-BUS API* section below for more details.
# dbus = false

# Try to detect WM windows (a non-override-redirect window with no 
# child that has 'WM_STATE') and mark them as active.
#
# mark-wmwin-focused = false
mark-wmwin-focused = true;

# Mark override-redirect windows that doesn't have a child window with 'WM_STATE' focused.
# mark-ovredir-focused = false
mark-ovredir-focused = true;

# Try to detect windows with rounded corners and don't consider them 
# shaped windows. The accuracy is not very high, unfortunately.
#
# detect-rounded-corners = false
detect-rounded-corners = true;

# Detect '_NET_WM_OPACITY' on client windows, useful for window managers
# not passing '_NET_WM_OPACITY' of client windows to frame windows.
#
# detect-client-opacity = false
detect-client-opacity = true;

# Specify refresh rate of the screen. If not specified or 0, picom will 
# try detecting this with X RandR extension.
#
# refresh-rate = 60
refresh-rate = 0

# Limit picom to repaint at most once every 1 / 'refresh_rate' second to 
# boost performance. This should not be used with 
#   vsync drm/opengl/opengl-oml
# as they essentially does sw-opti's job already, 
# unless you wish to specify a lower refresh rate than the actual value.
#
# sw-opti = 

# Use EWMH '_NET_ACTIVE_WINDOW' to determine currently focused window, 
# rather than listening to 'FocusIn'/'FocusOut' event. Might have more accuracy, 
# provided that the WM supports it.
#
# use-ewmh-active-win = false

# Unredirect all windows if a full-screen opaque window is detected, 
# to maximize performance for full-screen windows. Known to cause flickering 
# when redirecting/unredirecting windows.
#
unredir-if-possible = false

# Delay before unredirecting the window, in milliseconds. Defaults to 0.
# unredir-if-possible-delay = 0

# Conditions of windows that shouldn't be considered full-screen for unredirecting screen.
# unredir-if-possible-exclude = []

# Use 'WM_TRANSIENT_FOR' to group windows, and consider windows 
# in the same group focused at the same time.
#
# detect-transient = false
detect-transient = true

# Use 'WM_CLIENT_LEADER' to group windows, and consider windows in the same 
# group focused at the same time. 'WM_TRANSIENT_FOR' has higher priority if 
# detect-transient is enabled, too.
#
# detect-client-leader = false
detect-client-leader = true

# Resize damaged region by a specific number of pixels. 
# A positive value enlarges it while a negative one shrinks it. 
# If the value is positive, those additional pixels will not be actually painted 
# to screen, only used in blur calculation, and such. (Due to technical limitations, 
# with use-damage, those pixels will still be incorrectly painted to screen.) 
# Primarily used to fix the line corruption issues of blur, 
# in which case you should use the blur radius value here 
# (e.g. with a 3x3 kernel, you should use `--resize-damage 1`, 
# with a 5x5 one you use `--resize-damage 2`, and so on). 
# May or may not work with *--glx-no-stencil*. Shrinking doesn't function correctly.
#
# resize-damage = 1

# Specify a list of conditions of windows that should be painted with inverted color. 
# Resource-hogging, and is not well tested.
#
# invert-color-include = []

# GLX backend: Avoid using stencil buffer, useful if you don't have a stencil buffer. 
# Might cause incorrect opacity when rendering transparent content (but never 
# practically happened) and may not work with blur-background. 
# My tests show a 15% performance boost. Recommended.
#
# glx-no-stencil = false

# GLX backend: Avoid rebinding pixmap on window damage. 
# Probably could improve performance on rapid window content changes, 
# but is known to break things on some drivers (LLVMpipe, xf86-video-intel, etc.).
# Recommended if it works.
#
# glx-no-rebind-pixmap = false

# Disable the use of damage information. 
# This cause the whole screen to be redrawn everytime, instead of the part of the screen
# has actually changed. Potentially degrades the performance, but might fix some artifacts.
# The opposing option is use-damage
#
# no-use-damage = false
use-damage = true

# Use X Sync fence to sync clients' draw calls, to make sure all draw 
# calls are finished before picom starts drawing. Needed on nvidia-drivers 
# with GLX backend for some users.
#
# xrender-sync-fence = false

# GLX backend: Use specified GLSL fragment shader for rendering window contents. 
# See `compton-default-fshader-win.glsl` and `compton-fake-transparency-fshader-win.glsl` 
# in the source tree for examples.
#
# glx-fshader-win = ''

# Force all windows to be painted with blending. Useful if you 
# have a glx-fshader-win that could turn opaque pixels transparent.
#
# force-win-blend = false

# Do not use EWMH to detect fullscreen windows. 
# Reverts to checking if a window is fullscreen based only on its size and coordinates.
#
# no-ewmh-fullscreen = false

# Dimming bright windows so their brightness doesn't exceed this set value. 
# Brightness of a window is estimated by averaging all pixels in the window, 
# so this could comes with a performance hit. 
# Setting this to 1.0 disables this behaviour. Requires --use-damage to be disabled. (default: 1.0)
#
# max-brightness = 1.0

# Make transparent windows clip other windows like non-transparent windows do,
# instead of blending on top of them.
#
# transparent-clipping = false

# Set the log level. Possible values are:
#  "trace", "debug", "info", "warn", "error"
# in increasing level of importance. Case doesn't matter. 
# If using the "TRACE" log level, it's better to log into a file 
# using *--log-file*, since it can generate a huge stream of logs.
#
# log-level = "debug"
log-level = "warn";

# Set the log file.
# If *--log-file* is never specified, logs will be written to stderr. 
# Otherwise, logs will to written to the given file, though some of the early 
# logs might still be written to the stderr. 
# When setting this option from the config file, it is recommended to use an absolute path.
#
# log-file = '/path/to/your/log/file'

# Show all X errors (for debugging)
# show-all-xerrors = false

# Write process ID to a file.
# write-pid-path = '/path/to/your/log/file'

# Window type settings
# 
# 'WINDOW_TYPE' is one of the 15 window types defined in EWMH standard: 
#     "unknown", "desktop", "dock", "toolbar", "menu", "utility", 
#     "splash", "dialog", "normal", "dropdown_menu", "popup_menu", 
#     "tooltip", "notification", "combo", and "dnd".
# 
# Following per window-type options are available: ::
# 
#   fade, shadow:::
#     Controls window-type-specific shadow and fade settings.
# 
#   opacity:::
#     Controls default opacity of the window type.
# 
#   focus:::
#     Controls whether the window of this type is to be always considered focused. 
#     (By default, all window types except "normal" and "dialog" has this on.)
# 
#   full-shadow:::
#     Controls whether shadow is drawn under the parts of the window that you 
#     normally won't be able to see. Useful when the window has parts of it 
#     transparent, and you want shadows in those areas.
# 
#   redir-ignore:::
#     Controls whether this type of windows should cause screen to become 
#     redirected again after been unredirected. If you have unredir-if-possible
#     set, and doesn't want certain window to cause unnecessary screen redirection, 
#     you can set this to `true`.
#
wintypes:
{
  tooltip = { fade = true; shadow = true; opacity = 0.75; focus = true; full-shadow = false; };
  dock = { shadow = false; }
  dnd = { shadow = false; }
  popup_menu = { opacity = 1.0; }
  dropdown_menu = { opacity = 1.0; }
};

Xorg.0.log:

[    17.142] 
This is a pre-release version of the X server from The X.Org Foundation.
It is not supported in any way.
Bugs may be filed in the bugzilla at http://bugs.freedesktop.org/.
Select the "xorg" product for bugs you find in this release.
Before reporting bugs in pre-release versions please check the
latest version in the X.Org Foundation git repository.
See http://wiki.x.org/wiki/GitPage for git access instructions.
[    17.142] 
X.Org X Server 1.21.1.1
X Protocol Version 11, Revision 0
[    17.142] Current Operating System: Linux dpc 5.10.84-1-lts #1 SMP Wed, 08 Dec 2021 10:17:01 +0000 x86_64
[    17.142] Kernel command line: BOOT_IMAGE=/vmlinuz-linux-lts root=/dev/mapper/volgroup0-lv_root rw cryptdevice=UUID=49bb1478-8b71-49fb-9386-cccc6a65b04c:encrypted_lvm root=/dev/volgroup0/lv_root loglevel=3 quiet
[    17.142]  
[    17.142] Current version of pixman: 0.40.0
[    17.142] 	Before reporting problems, check http://wiki.x.org
	to make sure that you have the latest version.
[    17.142] Markers: (--) probed, (**) from config file, (==) default setting,
	(++) from command line, (!!) notice, (II) informational,
	(WW) warning, (EE) error, (NI) not implemented, (??) unknown.
[    17.142] (==) Log file: "/var/log/Xorg.0.log", Time: Sat Dec 11 09:11:39 2021
[    17.143] (==) Using system config directory "/usr/share/X11/xorg.conf.d"
[    17.144] (==) No Layout section.  Using the first Screen section.
[    17.144] (==) No screen section available. Using defaults.
[    17.144] (**) |-->Screen "Default Screen Section" (0)
[    17.144] (**) |   |-->Monitor "<default monitor>"
[    17.144] (==) No monitor specified for screen "Default Screen Section".
	Using a default monitor configuration.
[    17.144] (==) Automatically adding devices
[    17.144] (==) Automatically enabling devices
[    17.144] (==) Automatically adding GPU devices
[    17.144] (==) Automatically binding GPU devices
[    17.144] (==) Max clients allowed: 256, resource mask: 0x1fffff
[    17.144] (WW) The directory "/usr/share/fonts/misc" does not exist.
[    17.144] 	Entry deleted from font path.
[    17.146] (WW) The directory "/usr/share/fonts/OTF" does not exist.
[    17.146] 	Entry deleted from font path.
[    17.146] (WW) The directory "/usr/share/fonts/Type1" does not exist.
[    17.146] 	Entry deleted from font path.
[    17.147] (==) FontPath set to:
	/usr/share/fonts/TTF,
	/usr/share/fonts/100dpi,
	/usr/share/fonts/75dpi
[    17.147] (==) ModulePath set to "/usr/lib/xorg/modules"
[    17.147] (II) The server relies on udev to provide the list of input devices.
	If no devices become available, reconfigure udev or disable AutoAddDevices.
[    17.147] (II) Module ABI versions:
[    17.147] 	X.Org ANSI C Emulation: 0.4
[    17.147] 	X.Org Video Driver: 25.2
[    17.147] 	X.Org XInput driver : 24.4
[    17.147] 	X.Org Server Extension : 10.0
[    17.147] (++) using VT number 7

[    17.147] (II) systemd-logind: logind integration requires -keeptty and -keeptty was not provided, disabling logind integration
[    17.147] (II) xfree86: Adding drm device (/dev/dri/card0)
[    17.147] (II) Platform probe for /sys/devices/pci0000:00/0000:00:01.0/0000:01:00.0/drm/card0
[    17.148] (**) OutputClass "nvidia" ModulePath extended to "/usr/lib/nvidia/xorg,/usr/lib/xorg/modules,/usr/lib/xorg/modules"
[    17.149] (--) PCI:*(1@0:0:0) 10de:1b81:1458:3701 rev 161, Mem @ 0xde000000/16777216, 0xc0000000/268435456, 0xd0000000/33554432, I/O @ 0x0000e000/128, BIOS @ 0x????????/131072
[    17.149] (WW) Open ACPI failed (/var/run/acpid.socket) (No such file or directory)
[    17.149] (II) LoadModule: "glx"
[    17.154] (II) Loading /usr/lib/xorg/modules/extensions/libglx.so
[    17.161] (II) Module glx: vendor="X.Org Foundation"
[    17.161] 	compiled for 1.21.1.1, module version = 1.0.0
[    17.161] 	ABI class: X.Org Server Extension, version 10.0
[    17.161] (II) Applying OutputClass "nvidia" to /dev/dri/card0
[    17.161] 	loading driver: nvidia
[    17.161] (==) Matched nvidia as autoconfigured driver 0
[    17.161] (==) Matched nouveau as autoconfigured driver 1
[    17.161] (==) Matched nv as autoconfigured driver 2
[    17.161] (==) Matched modesetting as autoconfigured driver 3
[    17.161] (==) Matched fbdev as autoconfigured driver 4
[    17.161] (==) Matched vesa as autoconfigured driver 5
[    17.161] (==) Assigned the driver to the xf86ConfigLayout
[    17.161] (II) LoadModule: "nvidia"
[    17.161] (II) Loading /usr/lib/xorg/modules/drivers/nvidia_drv.so
[    17.169] (II) Module nvidia: vendor="NVIDIA Corporation"
[    17.169] 	compiled for 1.6.99.901, module version = 1.0.0
[    17.169] 	Module class: X.Org Video Driver
[    17.169] (II) LoadModule: "nouveau"
[    17.170] (WW) Warning, couldn't open module nouveau
[    17.170] (EE) Failed to load module "nouveau" (module does not exist, 0)
[    17.170] (II) LoadModule: "nv"
[    17.170] (WW) Warning, couldn't open module nv
[    17.170] (EE) Failed to load module "nv" (module does not exist, 0)
[    17.170] (II) LoadModule: "modesetting"
[    17.170] (II) Loading /usr/lib/xorg/modules/drivers/modesetting_drv.so
[    17.172] (II) Module modesetting: vendor="X.Org Foundation"
[    17.172] 	compiled for 1.21.1.1, module version = 1.21.1
[    17.172] 	Module class: X.Org Video Driver
[    17.172] 	ABI class: X.Org Video Driver, version 25.2
[    17.172] (II) LoadModule: "fbdev"
[    17.172] (WW) Warning, couldn't open module fbdev
[    17.172] (EE) Failed to load module "fbdev" (module does not exist, 0)
[    17.172] (II) LoadModule: "vesa"
[    17.172] (II) Loading /usr/lib/xorg/modules/drivers/vesa_drv.so
[    17.176] (II) Module vesa: vendor="X.Org Foundation"
[    17.176] 	compiled for 1.21.1.1, module version = 2.5.0
[    17.176] 	Module class: X.Org Video Driver
[    17.176] 	ABI class: X.Org Video Driver, version 25.2
[    17.176] (II) NVIDIA dlloader X Driver  495.44  Fri Oct 22 06:11:21 UTC 2021
[    17.176] (II) NVIDIA Unified Driver for all Supported NVIDIA GPUs
[    17.176] (II) modesetting: Driver for Modesetting Kernel Drivers: kms
[    17.176] (II) VESA: driver for VESA chipsets: vesa
[    17.177] (II) Loading sub module "fb"
[    17.177] (II) LoadModule: "fb"
[    17.177] (II) Module "fb" already built-in
[    17.177] (II) Loading sub module "wfb"
[    17.177] (II) LoadModule: "wfb"
[    17.177] (II) Loading /usr/lib/xorg/modules/libwfb.so
[    17.178] (II) Module wfb: vendor="X.Org Foundation"
[    17.178] 	compiled for 1.21.1.1, module version = 1.0.0
[    17.178] 	ABI class: X.Org ANSI C Emulation, version 0.4
[    17.178] (II) Loading sub module "ramdac"
[    17.178] (II) LoadModule: "ramdac"
[    17.178] (II) Module "ramdac" already built-in
[    17.179] (WW) Falling back to old probe method for modesetting
[    17.179] (II) NVIDIA(0): Creating default Display subsection in Screen section
	"Default Screen Section" for depth/fbbpp 24/32
[    17.179] (==) NVIDIA(0): Depth 24, (==) framebuffer bpp 32
[    17.179] (==) NVIDIA(0): RGB weight 888
[    17.179] (==) NVIDIA(0): Default visual is TrueColor
[    17.179] (==) NVIDIA(0): Using gamma correction (1.0, 1.0, 1.0)
[    17.179] (II) Applying OutputClass "nvidia" options to /dev/dri/card0
[    17.179] (**) NVIDIA(0): Option "AllowEmptyInitialConfiguration"
[    17.179] (**) NVIDIA(0): Enabling 2D acceleration
[    17.179] (II) Loading sub module "glxserver_nvidia"
[    17.179] (II) LoadModule: "glxserver_nvidia"
[    17.179] (II) Loading /usr/lib/nvidia/xorg/libglxserver_nvidia.so
[    17.212] (II) Module glxserver_nvidia: vendor="NVIDIA Corporation"
[    17.212] 	compiled for 1.6.99.901, module version = 1.0.0
[    17.212] 	Module class: X.Org Server Extension
[    17.212] (II) NVIDIA GLX Module  495.44  Fri Oct 22 06:08:29 UTC 2021
[    17.213] (II) NVIDIA: The X server supports PRIME Render Offload.
[    18.096] (--) NVIDIA(0): Valid display device(s) on GPU-0 at PCI:1:0:0
[    18.096] (--) NVIDIA(0):     DFP-0
[    18.096] (--) NVIDIA(0):     DFP-1
[    18.096] (--) NVIDIA(0):     DFP-2
[    18.096] (--) NVIDIA(0):     DFP-3
[    18.096] (--) NVIDIA(0):     DFP-4 (boot)
[    18.096] (--) NVIDIA(0):     DFP-5
[    18.096] (--) NVIDIA(0):     DFP-6
[    18.096] (--) NVIDIA(0):     DFP-7
[    18.097] (II) NVIDIA(0): NVIDIA GPU NVIDIA GeForce GTX 1070 (GP104-A) at PCI:1:0:0
[    18.097] (II) NVIDIA(0):     (GPU-0)
[    18.097] (--) NVIDIA(0): Memory: 8388608 kBytes
[    18.097] (--) NVIDIA(0): VideoBIOS: 86.04.26.00.56
[    18.097] (II) NVIDIA(0): Detected PCI Express Link width: 16X
[    18.097] (--) NVIDIA(GPU-0): DFP-0: disconnected
[    18.097] (--) NVIDIA(GPU-0): DFP-0: Internal TMDS
[    18.097] (--) NVIDIA(GPU-0): DFP-0: 330.0 MHz maximum pixel clock
[    18.097] (--) NVIDIA(GPU-0): 
[    18.097] (--) NVIDIA(GPU-0): DFP-1: disconnected
[    18.097] (--) NVIDIA(GPU-0): DFP-1: Internal TMDS
[    18.097] (--) NVIDIA(GPU-0): DFP-1: 165.0 MHz maximum pixel clock
[    18.097] (--) NVIDIA(GPU-0): 
[    18.097] (--) NVIDIA(GPU-0): DFP-2: disconnected
[    18.097] (--) NVIDIA(GPU-0): DFP-2: Internal DisplayPort
[    18.097] (--) NVIDIA(GPU-0): DFP-2: 1440.0 MHz maximum pixel clock
[    18.097] (--) NVIDIA(GPU-0): 
[    18.097] (--) NVIDIA(GPU-0): DFP-3: disconnected
[    18.097] (--) NVIDIA(GPU-0): DFP-3: Internal TMDS
[    18.097] (--) NVIDIA(GPU-0): DFP-3: 165.0 MHz maximum pixel clock
[    18.097] (--) NVIDIA(GPU-0): 
[    18.097] (--) NVIDIA(GPU-0): DELL U2715H (DFP-4): connected
[    18.097] (--) NVIDIA(GPU-0): DELL U2715H (DFP-4): Internal DisplayPort
[    18.097] (--) NVIDIA(GPU-0): DELL U2715H (DFP-4): 1440.0 MHz maximum pixel clock
[    18.097] (--) NVIDIA(GPU-0): 
[    18.102] (--) NVIDIA(GPU-0): DFP-5: disconnected
[    18.102] (--) NVIDIA(GPU-0): DFP-5: Internal TMDS
[    18.102] (--) NVIDIA(GPU-0): DFP-5: 165.0 MHz maximum pixel clock
[    18.102] (--) NVIDIA(GPU-0): 
[    18.102] (--) NVIDIA(GPU-0): DFP-6: disconnected
[    18.102] (--) NVIDIA(GPU-0): DFP-6: Internal DisplayPort
[    18.102] (--) NVIDIA(GPU-0): DFP-6: 1440.0 MHz maximum pixel clock
[    18.102] (--) NVIDIA(GPU-0): 
[    18.102] (--) NVIDIA(GPU-0): DFP-7: disconnected
[    18.102] (--) NVIDIA(GPU-0): DFP-7: Internal TMDS
[    18.102] (--) NVIDIA(GPU-0): DFP-7: 165.0 MHz maximum pixel clock
[    18.102] (--) NVIDIA(GPU-0): 
[    18.117] (==) NVIDIA(0): 
[    18.117] (==) NVIDIA(0): No modes were requested; the default mode "nvidia-auto-select"
[    18.117] (==) NVIDIA(0):     will be used as the requested mode.
[    18.117] (==) NVIDIA(0): 
[    18.117] (II) NVIDIA(0): Validated MetaModes:
[    18.117] (II) NVIDIA(0):     "DFP-4:nvidia-auto-select"
[    18.117] (II) NVIDIA(0): Virtual screen size determined to be 2560 x 1440
[    18.124] (--) NVIDIA(0): DPI set to (108, 107); computed from "UseEdidDpi" X config
[    18.124] (--) NVIDIA(0):     option
[    18.124] (II) UnloadModule: "modesetting"
[    18.124] (II) Unloading modesetting
[    18.124] (II) UnloadModule: "vesa"
[    18.124] (II) Unloading vesa
[    18.124] (II) NVIDIA: Reserving 24576.00 MB of virtual memory for indirect memory
[    18.124] (II) NVIDIA:     access.
[    18.126] (II) NVIDIA(0): ACPI: failed to connect to the ACPI event daemon; the daemon
[    18.126] (II) NVIDIA(0):     may not be running or the "AcpidSocketPath" X
[    18.126] (II) NVIDIA(0):     configuration option may not be set correctly.  When the
[    18.126] (II) NVIDIA(0):     ACPI event daemon is available, the NVIDIA X driver will
[    18.126] (II) NVIDIA(0):     try to use it to receive ACPI event notifications.  For
[    18.126] (II) NVIDIA(0):     details, please see the "ConnectToAcpid" and
[    18.126] (II) NVIDIA(0):     "AcpidSocketPath" X configuration options in Appendix B: X
[    18.126] (II) NVIDIA(0):     Config Options in the README.
[    18.144] (II) NVIDIA(0): Setting mode "DFP-4:nvidia-auto-select"
[    18.310] (==) NVIDIA(0): Disabling shared memory pixmaps
[    18.310] (==) NVIDIA(0): Backing store enabled
[    18.310] (==) NVIDIA(0): Silken mouse enabled
[    18.310] (==) NVIDIA(0): DPMS enabled
[    18.310] (II) Loading sub module "dri2"
[    18.310] (II) LoadModule: "dri2"
[    18.311] (II) Module "dri2" already built-in
[    18.311] (II) NVIDIA(0): [DRI2] Setup complete
[    18.311] (II) NVIDIA(0): [DRI2]   VDPAU driver: nvidia
[    18.311] (II) Initializing extension Generic Event Extension
[    18.311] (II) Initializing extension SHAPE
[    18.311] (II) Initializing extension MIT-SHM
[    18.311] (II) Initializing extension XInputExtension
[    18.312] (II) Initializing extension XTEST
[    18.312] (II) Initializing extension BIG-REQUESTS
[    18.312] (II) Initializing extension SYNC
[    18.312] (II) Initializing extension XKEYBOARD
[    18.312] (II) Initializing extension XC-MISC
[    18.312] (II) Initializing extension SECURITY
[    18.312] (II) Initializing extension XFIXES
[    18.312] (II) Initializing extension RENDER
[    18.312] (II) Initializing extension RANDR
[    18.312] (II) Initializing extension COMPOSITE
[    18.312] (II) Initializing extension DAMAGE
[    18.312] (II) Initializing extension MIT-SCREEN-SAVER
[    18.312] (II) Initializing extension DOUBLE-BUFFER
[    18.313] (II) Initializing extension RECORD
[    18.313] (II) Initializing extension DPMS
[    18.313] (II) Initializing extension Present
[    18.313] (II) Initializing extension DRI3
[    18.313] (II) Initializing extension X-Resource
[    18.313] (II) Initializing extension XVideo
[    18.313] (II) Initializing extension XVideo-MotionCompensation
[    18.313] (II) Initializing extension GLX
[    18.313] (II) Initializing extension GLX
[    18.313] (II) Indirect GLX disabled.
[    18.313] (II) GLX: Another vendor is already registered for screen 0
[    18.313] (II) Initializing extension XFree86-VidModeExtension
[    18.313] (II) Initializing extension XFree86-DGA
[    18.313] (II) Initializing extension XFree86-DRI
[    18.313] (II) Initializing extension DRI2
[    18.313] (II) Initializing extension NV-GLX
[    18.313] (II) Initializing extension NV-CONTROL
[    18.313] (II) Initializing extension XINERAMA
[    18.509] (II) config/udev: Adding input device Power Button (/dev/input/event2)
[    18.509] (**) Power Button: Applying InputClass "libinput keyboard catchall"
[    18.509] (II) LoadModule: "libinput"
[    18.509] (II) Loading /usr/lib/xorg/modules/input/libinput_drv.so
[    18.529] (II) Module libinput: vendor="X.Org Foundation"
[    18.529] 	compiled for 1.21.1, module version = 1.2.0
[    18.529] 	Module class: X.Org XInput Driver
[    18.529] 	ABI class: X.Org XInput driver, version 24.4
[    18.529] (II) Using input driver 'libinput' for 'Power Button'
[    18.529] (**) Power Button: always reports core events
[    18.529] (**) Option "Device" "/dev/input/event2"
[    18.529] (**) Option "_source" "server/udev"
[    18.532] (II) event2  - Power Button: is tagged by udev as: Keyboard
[    18.532] (II) event2  - Power Button: device is a keyboard
[    18.532] (II) event2  - Power Button: device removed
[    18.586] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/LNXPWRBN:00/input/input2/event2"
[    18.586] (II) XINPUT: Adding extended input device "Power Button" (type: KEYBOARD, id 6)
[    18.586] (II) event2  - Power Button: is tagged by udev as: Keyboard
[    18.586] (II) event2  - Power Button: device is a keyboard
[    18.587] (II) config/udev: Adding input device Power Button (/dev/input/event1)
[    18.587] (**) Power Button: Applying InputClass "libinput keyboard catchall"
[    18.587] (II) Using input driver 'libinput' for 'Power Button'
[    18.587] (**) Power Button: always reports core events
[    18.587] (**) Option "Device" "/dev/input/event1"
[    18.587] (**) Option "_source" "server/udev"
[    18.587] (II) event1  - Power Button: is tagged by udev as: Keyboard
[    18.587] (II) event1  - Power Button: device is a keyboard
[    18.587] (II) event1  - Power Button: device removed
[    18.666] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input1/event1"
[    18.666] (II) XINPUT: Adding extended input device "Power Button" (type: KEYBOARD, id 7)
[    18.666] (II) event1  - Power Button: is tagged by udev as: Keyboard
[    18.666] (II) event1  - Power Button: device is a keyboard
[    18.667] (II) config/udev: Adding input device Sleep Button (/dev/input/event0)
[    18.667] (**) Sleep Button: Applying InputClass "libinput keyboard catchall"
[    18.667] (II) Using input driver 'libinput' for 'Sleep Button'
[    18.667] (**) Sleep Button: always reports core events
[    18.667] (**) Option "Device" "/dev/input/event0"
[    18.667] (**) Option "_source" "server/udev"
[    18.667] (II) event0  - Sleep Button: is tagged by udev as: Keyboard
[    18.667] (II) event0  - Sleep Button: device is a keyboard
[    18.667] (II) event0  - Sleep Button: device removed
[    18.726] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0E:00/input/input0/event0"
[    18.726] (II) XINPUT: Adding extended input device "Sleep Button" (type: KEYBOARD, id 8)
[    18.726] (II) event0  - Sleep Button: is tagged by udev as: Keyboard
[    18.726] (II) event0  - Sleep Button: device is a keyboard
[    18.727] (II) config/udev: Adding input device HDA NVidia HDMI/DP,pcm=3 (/dev/input/event11)
[    18.727] (II) No input driver specified, ignoring this device.
[    18.727] (II) This device may have been added with another device file.
[    18.727] (II) config/udev: Adding input device HDA NVidia HDMI/DP,pcm=7 (/dev/input/event12)
[    18.727] (II) No input driver specified, ignoring this device.
[    18.727] (II) This device may have been added with another device file.
[    18.727] (II) config/udev: Adding input device HDA NVidia HDMI/DP,pcm=8 (/dev/input/event13)
[    18.727] (II) No input driver specified, ignoring this device.
[    18.727] (II) This device may have been added with another device file.
[    18.728] (II) config/udev: Adding input device HDA NVidia HDMI/DP,pcm=9 (/dev/input/event14)
[    18.728] (II) No input driver specified, ignoring this device.
[    18.728] (II) This device may have been added with another device file.
[    18.728] (II) config/udev: Adding input device HDA NVidia HDMI/DP,pcm=10 (/dev/input/event15)
[    18.728] (II) No input driver specified, ignoring this device.
[    18.728] (II) This device may have been added with another device file.
[    18.728] (II) config/udev: Adding input device HDA NVidia HDMI/DP,pcm=11 (/dev/input/event16)
[    18.728] (II) No input driver specified, ignoring this device.
[    18.728] (II) This device may have been added with another device file.
[    18.728] (II) config/udev: Adding input device HDA NVidia HDMI/DP,pcm=12 (/dev/input/event17)
[    18.728] (II) No input driver specified, ignoring this device.
[    18.728] (II) This device may have been added with another device file.
[    18.729] (II) config/udev: Adding input device Ducky Ducky One2 Mini RGB (/dev/input/event7)
[    18.729] (**) Ducky Ducky One2 Mini RGB: Applying InputClass "libinput keyboard catchall"
[    18.729] (II) Using input driver 'libinput' for 'Ducky Ducky One2 Mini RGB'
[    18.729] (**) Ducky Ducky One2 Mini RGB: always reports core events
[    18.729] (**) Option "Device" "/dev/input/event7"
[    18.729] (**) Option "_source" "server/udev"
[    18.730] (II) event7  - Ducky Ducky One2 Mini RGB: is tagged by udev as: Keyboard
[    18.730] (II) event7  - Ducky Ducky One2 Mini RGB: device is a keyboard
[    18.730] (II) event7  - Ducky Ducky One2 Mini RGB: device removed
[    18.796] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:14.0/usb1/1-12/1-12:1.0/0003:3233:6301.0004/input/input8/event7"
[    18.796] (II) XINPUT: Adding extended input device "Ducky Ducky One2 Mini RGB" (type: KEYBOARD, id 9)
[    18.797] (II) event7  - Ducky Ducky One2 Mini RGB: is tagged by udev as: Keyboard
[    18.797] (II) event7  - Ducky Ducky One2 Mini RGB: device is a keyboard
[    18.797] (II) config/udev: Adding input device Ducky Ducky One2 Mini RGB (/dev/input/event8)
[    18.797] (**) Ducky Ducky One2 Mini RGB: Applying InputClass "libinput pointer catchall"
[    18.797] (II) Using input driver 'libinput' for 'Ducky Ducky One2 Mini RGB'
[    18.797] (**) Ducky Ducky One2 Mini RGB: always reports core events
[    18.797] (**) Option "Device" "/dev/input/event8"
[    18.797] (**) Option "_source" "server/udev"
[    18.866] (II) event8  - Ducky Ducky One2 Mini RGB: is tagged by udev as: Mouse
[    18.866] (II) event8  - Ducky Ducky One2 Mini RGB: device is a pointer
[    18.867] (II) event8  - Ducky Ducky One2 Mini RGB: device removed
[    18.966] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:14.0/usb1/1-12/1-12:1.1/0003:3233:6301.0005/input/input9/event8"
[    18.966] (II) XINPUT: Adding extended input device "Ducky Ducky One2 Mini RGB" (type: MOUSE, id 10)
[    18.966] (**) Option "AccelerationScheme" "none"
[    18.966] (**) Ducky Ducky One2 Mini RGB: (accel) selected scheme none/0
[    18.966] (**) Ducky Ducky One2 Mini RGB: (accel) acceleration factor: 2.000
[    18.966] (**) Ducky Ducky One2 Mini RGB: (accel) acceleration threshold: 4
[    19.036] (II) event8  - Ducky Ducky One2 Mini RGB: is tagged by udev as: Mouse
[    19.036] (II) event8  - Ducky Ducky One2 Mini RGB: device is a pointer
[    19.037] (II) config/udev: Adding input device Ducky Ducky One2 Mini RGB (/dev/input/mouse1)
[    19.037] (II) No input driver specified, ignoring this device.
[    19.037] (II) This device may have been added with another device file.
[    19.037] (II) config/udev: Adding input device Ducky Ducky One2 Mini RGB (/dev/input/event9)
[    19.037] (**) Ducky Ducky One2 Mini RGB: Applying InputClass "libinput keyboard catchall"
[    19.037] (II) Using input driver 'libinput' for 'Ducky Ducky One2 Mini RGB'
[    19.037] (**) Ducky Ducky One2 Mini RGB: always reports core events
[    19.037] (**) Option "Device" "/dev/input/event9"
[    19.038] (**) Option "_source" "server/udev"
[    19.038] (II) event9  - Ducky Ducky One2 Mini RGB: is tagged by udev as: Keyboard
[    19.038] (II) event9  - Ducky Ducky One2 Mini RGB: device is a keyboard
[    19.038] (II) event9  - Ducky Ducky One2 Mini RGB: device removed
[    19.146] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:14.0/usb1/1-12/1-12:1.2/0003:3233:6301.0006/input/input10/event9"
[    19.146] (II) XINPUT: Adding extended input device "Ducky Ducky One2 Mini RGB" (type: KEYBOARD, id 11)
[    19.147] (II) event9  - Ducky Ducky One2 Mini RGB: is tagged by udev as: Keyboard
[    19.147] (II) event9  - Ducky Ducky One2 Mini RGB: device is a keyboard
[    19.147] (II) config/udev: Adding input device Ducky Ducky One2 Mini RGB (/dev/input/event10)
[    19.147] (**) Ducky Ducky One2 Mini RGB: Applying InputClass "libinput keyboard catchall"
[    19.147] (II) Using input driver 'libinput' for 'Ducky Ducky One2 Mini RGB'
[    19.147] (**) Ducky Ducky One2 Mini RGB: always reports core events
[    19.147] (**) Option "Device" "/dev/input/event10"
[    19.147] (**) Option "_source" "server/udev"
[    19.148] (II) event10 - Ducky Ducky One2 Mini RGB: is tagged by udev as: Keyboard
[    19.148] (II) event10 - Ducky Ducky One2 Mini RGB: device is a keyboard
[    19.148] (II) event10 - Ducky Ducky One2 Mini RGB: device removed
[    19.266] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:14.0/usb1/1-12/1-12:1.3/0003:3233:6301.0007/input/input11/event10"
[    19.266] (II) XINPUT: Adding extended input device "Ducky Ducky One2 Mini RGB" (type: KEYBOARD, id 12)
[    19.267] (II) event10 - Ducky Ducky One2 Mini RGB: is tagged by udev as: Keyboard
[    19.267] (II) event10 - Ducky Ducky One2 Mini RGB: device is a keyboard
[    19.267] (II) config/udev: Adding input device Ducky Ducky Secret M Optical Mouse (/dev/input/event3)
[    19.267] (**) Ducky Ducky Secret M Optical Mouse: Applying InputClass "libinput pointer catchall"
[    19.267] (II) Using input driver 'libinput' for 'Ducky Ducky Secret M Optical Mouse'
[    19.267] (**) Ducky Ducky Secret M Optical Mouse: always reports core events
[    19.267] (**) Option "Device" "/dev/input/event3"
[    19.267] (**) Option "_source" "server/udev"
[    19.336] (II) event3  - Ducky Ducky Secret M Optical Mouse: is tagged by udev as: Mouse
[    19.337] (II) event3  - Ducky Ducky Secret M Optical Mouse: device is a pointer
[    19.337] (II) event3  - Ducky Ducky Secret M Optical Mouse: device removed
[    19.466] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:14.0/usb1/1-4/1-4:1.0/0003:0627:0003.0001/input/input3/event3"
[    19.466] (II) XINPUT: Adding extended input device "Ducky Ducky Secret M Optical Mouse" (type: MOUSE, id 13)
[    19.466] (**) Option "AccelerationScheme" "none"
[    19.466] (**) Ducky Ducky Secret M Optical Mouse: (accel) selected scheme none/0
[    19.466] (**) Ducky Ducky Secret M Optical Mouse: (accel) acceleration factor: 2.000
[    19.466] (**) Ducky Ducky Secret M Optical Mouse: (accel) acceleration threshold: 4
[    19.537] (II) event3  - Ducky Ducky Secret M Optical Mouse: is tagged by udev as: Mouse
[    19.537] (II) event3  - Ducky Ducky Secret M Optical Mouse: device is a pointer
[    19.537] (II) config/udev: Adding input device Ducky Ducky Secret M Optical Mouse (/dev/input/mouse0)
[    19.537] (II) No input driver specified, ignoring this device.
[    19.537] (II) This device may have been added with another device file.
[    19.538] (II) config/udev: Adding input device Ducky Ducky Secret M Optical Mouse Keyboard (/dev/input/event4)
[    19.538] (**) Ducky Ducky Secret M Optical Mouse Keyboard: Applying InputClass "libinput keyboard catchall"
[    19.538] (II) Using input driver 'libinput' for 'Ducky Ducky Secret M Optical Mouse Keyboard'
[    19.538] (**) Ducky Ducky Secret M Optical Mouse Keyboard: always reports core events
[    19.538] (**) Option "Device" "/dev/input/event4"
[    19.538] (**) Option "_source" "server/udev"
[    19.538] (II) event4  - Ducky Ducky Secret M Optical Mouse Keyboard: is tagged by udev as: Keyboard
[    19.539] (II) event4  - Ducky Ducky Secret M Optical Mouse Keyboard: device is a keyboard
[    19.539] (II) event4  - Ducky Ducky Secret M Optical Mouse Keyboard: device removed
[    19.596] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:14.0/usb1/1-4/1-4:1.1/0003:0627:0003.0002/input/input4/event4"
[    19.596] (II) XINPUT: Adding extended input device "Ducky Ducky Secret M Optical Mouse Keyboard" (type: KEYBOARD, id 14)
[    19.597] (II) event4  - Ducky Ducky Secret M Optical Mouse Keyboard: is tagged by udev as: Keyboard
[    19.597] (II) event4  - Ducky Ducky Secret M Optical Mouse Keyboard: device is a keyboard
[    19.598] (II) config/udev: Adding input device Ducky Ducky Secret M Optical Mouse System Control (/dev/input/event5)
[    19.598] (**) Ducky Ducky Secret M Optical Mouse System Control: Applying InputClass "libinput keyboard catchall"
[    19.598] (II) Using input driver 'libinput' for 'Ducky Ducky Secret M Optical Mouse System Control'
[    19.598] (**) Ducky Ducky Secret M Optical Mouse System Control: always reports core events
[    19.598] (**) Option "Device" "/dev/input/event5"
[    19.598] (**) Option "_source" "server/udev"
[    19.598] (II) event5  - Ducky Ducky Secret M Optical Mouse System Control: is tagged by udev as: Keyboard
[    19.598] (II) event5  - Ducky Ducky Secret M Optical Mouse System Control: device is a keyboard
[    19.599] (II) event5  - Ducky Ducky Secret M Optical Mouse System Control: device removed
[    19.666] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:14.0/usb1/1-4/1-4:1.1/0003:0627:0003.0002/input/input5/event5"
[    19.666] (II) XINPUT: Adding extended input device "Ducky Ducky Secret M Optical Mouse System Control" (type: KEYBOARD, id 15)
[    19.668] (II) event5  - Ducky Ducky Secret M Optical Mouse System Control: is tagged by udev as: Keyboard
[    19.668] (II) event5  - Ducky Ducky Secret M Optical Mouse System Control: device is a keyboard
[    19.669] (II) config/udev: Adding input device Ducky Ducky Secret M Optical Mouse Consumer Control (/dev/input/event6)
[    19.669] (**) Ducky Ducky Secret M Optical Mouse Consumer Control: Applying InputClass "libinput keyboard catchall"
[    19.669] (II) Using input driver 'libinput' for 'Ducky Ducky Secret M Optical Mouse Consumer Control'
[    19.669] (**) Ducky Ducky Secret M Optical Mouse Consumer Control: always reports core events
[    19.669] (**) Option "Device" "/dev/input/event6"
[    19.669] (**) Option "_source" "server/udev"
[    19.670] (II) event6  - Ducky Ducky Secret M Optical Mouse Consumer Control: is tagged by udev as: Keyboard
[    19.670] (II) event6  - Ducky Ducky Secret M Optical Mouse Consumer Control: device is a keyboard
[    19.670] (II) event6  - Ducky Ducky Secret M Optical Mouse Consumer Control: device removed
[    19.746] (II) libinput: Ducky Ducky Secret M Optical Mouse Consumer Control: needs a virtual subdevice
[    19.746] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:14.0/usb1/1-4/1-4:1.1/0003:0627:0003.0002/input/input6/event6"
[    19.746] (II) XINPUT: Adding extended input device "Ducky Ducky Secret M Optical Mouse Consumer Control" (type: MOUSE, id 16)
[    19.746] (**) Option "AccelerationScheme" "none"
[    19.746] (**) Ducky Ducky Secret M Optical Mouse Consumer Control: (accel) selected scheme none/0
[    19.746] (**) Ducky Ducky Secret M Optical Mouse Consumer Control: (accel) acceleration factor: 2.000
[    19.747] (**) Ducky Ducky Secret M Optical Mouse Consumer Control: (accel) acceleration threshold: 4
[    19.750] (II) event6  - Ducky Ducky Secret M Optical Mouse Consumer Control: is tagged by udev as: Keyboard
[    19.750] (II) event6  - Ducky Ducky Secret M Optical Mouse Consumer Control: device is a keyboard
[    19.752] (II) config/udev: Adding input device HDA Intel PCH Front Mic (/dev/input/event18)
[    19.753] (II) No input driver specified, ignoring this device.
[    19.753] (II) This device may have been added with another device file.
[    19.754] (II) config/udev: Adding input device HDA Intel PCH Rear Mic (/dev/input/event19)
[    19.754] (II) No input driver specified, ignoring this device.
[    19.754] (II) This device may have been added with another device file.
[    19.755] (II) config/udev: Adding input device HDA Intel PCH Line (/dev/input/event20)
[    19.755] (II) No input driver specified, ignoring this device.
[    19.755] (II) This device may have been added with another device file.
[    19.756] (II) config/udev: Adding input device HDA Intel PCH Line Out Front (/dev/input/event21)
[    19.756] (II) No input driver specified, ignoring this device.
[    19.756] (II) This device may have been added with another device file.
[    19.757] (II) config/udev: Adding input device HDA Intel PCH Line Out Surround (/dev/input/event22)
[    19.757] (II) No input driver specified, ignoring this device.
[    19.757] (II) This device may have been added with another device file.
[    19.758] (II) config/udev: Adding input device HDA Intel PCH Line Out CLFE (/dev/input/event23)
[    19.758] (II) No input driver specified, ignoring this device.
[    19.758] (II) This device may have been added with another device file.
[    19.759] (II) config/udev: Adding input device HDA Intel PCH Front Headphone (/dev/input/event24)
[    19.759] (II) No input driver specified, ignoring this device.
[    19.759] (II) This device may have been added with another device file.
[    19.760] (II) config/udev: Adding input device PC Speaker (/dev/input/event25)
[    19.760] (II) No input driver specified, ignoring this device.
[    19.760] (II) This device may have been added with another device file.
[    19.777] (**) Ducky Ducky Secret M Optical Mouse Consumer Control: Applying InputClass "libinput keyboard catchall"
[    19.777] (II) Using input driver 'libinput' for 'Ducky Ducky Secret M Optical Mouse Consumer Control'
[    19.777] (**) Ducky Ducky Secret M Optical Mouse Consumer Control: always reports core events
[    19.777] (**) Option "Device" "/dev/input/event6"
[    19.777] (**) Option "_source" "_driver/libinput"
[    19.777] (II) libinput: Ducky Ducky Secret M Optical Mouse Consumer Control: is a virtual subdevice
[    19.778] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:14.0/usb1/1-4/1-4:1.1/0003:0627:0003.0002/input/input6/event6"
[    19.778] (II) XINPUT: Adding extended input device "Ducky Ducky Secret M Optical Mouse Consumer Control" (type: KEYBOARD, id 17)
[    19.780] (II) config/udev: Adding input device Ducky Ducky One2 Mini RGB (/dev/input/mouse1)
[    19.780] (II) No input driver specified, ignoring this device.
[    19.780] (II) This device may have been added with another device file.
[    19.782] (II) config/udev: Adding input device Ducky Ducky Secret M Optical Mouse (/dev/input/mouse0)
[    19.782] (II) No input driver specified, ignoring this device.
[    19.782] (II) This device may have been added with another device file.
[    19.784] (II) config/udev: Adding input device HDA NVidia HDMI/DP,pcm=9 (/dev/input/event14)
[    19.784] (II) No input driver specified, ignoring this device.
[    19.784] (II) This device may have been added with another device file.
[    19.785] (II) config/udev: Adding input device HDA NVidia HDMI/DP,pcm=12 (/dev/input/event17)
[    19.785] (II) No input driver specified, ignoring this device.
[    19.785] (II) This device may have been added with another device file.
[    19.786] (II) config/udev: Adding input device HDA NVidia HDMI/DP,pcm=11 (/dev/input/event16)
[    19.786] (II) No input driver specified, ignoring this device.
[    19.786] (II) This device may have been added with another device file.
[    19.787] (II) config/udev: Adding input device HDA NVidia HDMI/DP,pcm=7 (/dev/input/event12)
[    19.787] (II) No input driver specified, ignoring this device.
[    19.787] (II) This device may have been added with another device file.
[    19.788] (II) config/udev: Adding input device HDA NVidia HDMI/DP,pcm=3 (/dev/input/event11)
[    19.788] (II) No input driver specified, ignoring this device.
[    19.788] (II) This device may have been added with another device file.
[    19.788] (II) config/udev: Adding input device HDA NVidia HDMI/DP,pcm=10 (/dev/input/event15)
[    19.788] (II) No input driver specified, ignoring this device.
[    19.788] (II) This device may have been added with another device file.
[    19.789] (II) config/udev: Adding input device HDA NVidia HDMI/DP,pcm=8 (/dev/input/event13)
[    19.789] (II) No input driver specified, ignoring this device.
[    19.789] (II) This device may have been added with another device file.
[    19.789] (II) config/udev: Adding input device HDA Intel PCH Line (/dev/input/event20)
[    19.789] (II) No input driver specified, ignoring this device.
[    19.789] (II) This device may have been added with another device file.
[    19.790] (II) config/udev: Adding input device HDA Intel PCH Front Mic (/dev/input/event18)
[    19.790] (II) No input driver specified, ignoring this device.
[    19.790] (II) This device may have been added with another device file.
[    19.790] (II) config/udev: Adding input device HDA Intel PCH Line Out Front (/dev/input/event21)
[    19.790] (II) No input driver specified, ignoring this device.
[    19.790] (II) This device may have been added with another device file.
[    19.791] (II) config/udev: Adding input device HDA Intel PCH Rear Mic (/dev/input/event19)
[    19.791] (II) No input driver specified, ignoring this device.
[    19.791] (II) This device may have been added with another device file.
[    19.791] (II) config/udev: Adding input device HDA Intel PCH Line Out Surround (/dev/input/event22)
[    19.791] (II) No input driver specified, ignoring this device.
[    19.791] (II) This device may have been added with another device file.
[    19.792] (II) config/udev: Adding input device HDA Intel PCH Line Out CLFE (/dev/input/event23)
[    19.792] (II) No input driver specified, ignoring this device.
[    19.792] (II) This device may have been added with another device file.
[    19.792] (II) config/udev: Adding input device HDA Intel PCH Front Headphone (/dev/input/event24)
[    19.793] (II) No input driver specified, ignoring this device.
[    19.793] (II) This device may have been added with another device file.
[    19.793] (II) config/udev: Adding input device PC Speaker (/dev/input/event25)
[    19.793] (II) No input driver specified, ignoring this device.
[    19.793] (II) This device may have been added with another device file.
[    51.331] (--) NVIDIA(GPU-0): DFP-0: disconnected
[    51.331] (--) NVIDIA(GPU-0): DFP-0: Internal TMDS
[    51.331] (--) NVIDIA(GPU-0): DFP-0: 330.0 MHz maximum pixel clock
[    51.331] (--) NVIDIA(GPU-0): 
[    51.331] (--) NVIDIA(GPU-0): DFP-1: disconnected
[    51.331] (--) NVIDIA(GPU-0): DFP-1: Internal TMDS
[    51.331] (--) NVIDIA(GPU-0): DFP-1: 165.0 MHz maximum pixel clock
[    51.331] (--) NVIDIA(GPU-0): 
[    51.332] (--) NVIDIA(GPU-0): DFP-2: disconnected
[    51.332] (--) NVIDIA(GPU-0): DFP-2: Internal DisplayPort
[    51.332] (--) NVIDIA(GPU-0): DFP-2: 1440.0 MHz maximum pixel clock
[    51.332] (--) NVIDIA(GPU-0): 
[    51.332] (--) NVIDIA(GPU-0): DFP-3: disconnected
[    51.332] (--) NVIDIA(GPU-0): DFP-3: Internal TMDS
[    51.332] (--) NVIDIA(GPU-0): DFP-3: 165.0 MHz maximum pixel clock
[    51.332] (--) NVIDIA(GPU-0): 
[    51.332] (--) NVIDIA(GPU-0): DELL U2715H (DFP-4): connected
[    51.332] (--) NVIDIA(GPU-0): DELL U2715H (DFP-4): Internal DisplayPort
[    51.332] (--) NVIDIA(GPU-0): DELL U2715H (DFP-4): 1440.0 MHz maximum pixel clock
[    51.332] (--) NVIDIA(GPU-0): 
[    51.337] (--) NVIDIA(GPU-0): DFP-5: disconnected
[    51.337] (--) NVIDIA(GPU-0): DFP-5: Internal TMDS
[    51.337] (--) NVIDIA(GPU-0): DFP-5: 165.0 MHz maximum pixel clock
[    51.337] (--) NVIDIA(GPU-0): 
[    51.337] (--) NVIDIA(GPU-0): DFP-6: disconnected
[    51.337] (--) NVIDIA(GPU-0): DFP-6: Internal DisplayPort
[    51.337] (--) NVIDIA(GPU-0): DFP-6: 1440.0 MHz maximum pixel clock
[    51.337] (--) NVIDIA(GPU-0): 
[    51.337] (--) NVIDIA(GPU-0): DFP-7: disconnected
[    51.337] (--) NVIDIA(GPU-0): DFP-7: Internal TMDS
[    51.337] (--) NVIDIA(GPU-0): DFP-7: 165.0 MHz maximum pixel clock
[    51.337] (--) NVIDIA(GPU-0): 
[   275.835] (EE) event7  - Ducky Ducky One2 Mini RGB: client bug: event processing lagging behind by 29ms, your system is too slow

Xorg.1.log:

[ 19095.353] 
This is a pre-release version of the X server from The X.Org Foundation.
It is not supported in any way.
Bugs may be filed in the bugzilla at http://bugs.freedesktop.org/.
Select the "xorg" product for bugs you find in this release.
Before reporting bugs in pre-release versions please check the
latest version in the X.Org Foundation git repository.
See http://wiki.x.org/wiki/GitPage for git access instructions.
[ 19095.354] 
X.Org X Server 1.21.1.1
X Protocol Version 11, Revision 0
[ 19095.354] Current Operating System: Linux dpc 5.10.83-1-lts #1 SMP Wed, 01 Dec 2021 12:35:24 +0000 x86_64
[ 19095.354] Kernel command line: BOOT_IMAGE=/vmlinuz-linux-lts root=/dev/mapper/volgroup0-lv_root rw cryptdevice=UUID=49bb1478-8b71-49fb-9386-cccc6a65b04c:encrypted_lvm root=/dev/volgroup0/lv_root loglevel=3 quiet
[ 19095.354]  
[ 19095.354] Current version of pixman: 0.40.0
[ 19095.354] 	Before reporting problems, check http://wiki.x.org
	to make sure that you have the latest version.
[ 19095.354] Markers: (--) probed, (**) from config file, (==) default setting,
	(++) from command line, (!!) notice, (II) informational,
	(WW) warning, (EE) error, (NI) not implemented, (??) unknown.
[ 19095.354] (==) Log file: "/var/log/Xorg.1.log", Time: Mon Dec  6 13:58:33 2021
[ 19095.354] (==) Using system config directory "/usr/share/X11/xorg.conf.d"
[ 19095.355] (==) No Layout section.  Using the first Screen section.
[ 19095.355] (==) No screen section available. Using defaults.
[ 19095.355] (**) |-->Screen "Default Screen Section" (0)
[ 19095.355] (**) |   |-->Monitor "<default monitor>"
[ 19095.355] (==) No monitor specified for screen "Default Screen Section".
	Using a default monitor configuration.
[ 19095.355] (==) Automatically adding devices
[ 19095.355] (==) Automatically enabling devices
[ 19095.355] (==) Automatically adding GPU devices
[ 19095.355] (==) Automatically binding GPU devices
[ 19095.355] (==) Max clients allowed: 256, resource mask: 0x1fffff
[ 19095.355] (WW) The directory "/usr/share/fonts/misc" does not exist.
[ 19095.355] 	Entry deleted from font path.
[ 19095.355] (WW) The directory "/usr/share/fonts/OTF" does not exist.
[ 19095.355] 	Entry deleted from font path.
[ 19095.355] (WW) The directory "/usr/share/fonts/Type1" does not exist.
[ 19095.355] 	Entry deleted from font path.
[ 19095.355] (==) FontPath set to:
	/usr/share/fonts/TTF,
	/usr/share/fonts/100dpi,
	/usr/share/fonts/75dpi
[ 19095.355] (==) ModulePath set to "/usr/lib/xorg/modules"
[ 19095.355] (II) The server relies on udev to provide the list of input devices.
	If no devices become available, reconfigure udev or disable AutoAddDevices.
[ 19095.355] (II) Module ABI versions:
[ 19095.355] 	X.Org ANSI C Emulation: 0.4
[ 19095.355] 	X.Org Video Driver: 25.2
[ 19095.355] 	X.Org XInput driver : 24.4
[ 19095.355] 	X.Org Server Extension : 10.0
[ 19095.356] (++) using VT number 8

[ 19095.356] (II) systemd-logind: logind integration requires -keeptty and -keeptty was not provided, disabling logind integration
[ 19095.357] (II) xfree86: Adding drm device (/dev/dri/card0)
[ 19095.357] (II) Platform probe for /sys/devices/pci0000:00/0000:00:01.0/0000:01:00.0/drm/card0
[ 19095.359] (**) OutputClass "nvidia" ModulePath extended to "/usr/lib/nvidia/xorg,/usr/lib/xorg/modules,/usr/lib/xorg/modules"
[ 19095.361] (--) PCI:*(1@0:0:0) 10de:1b81:1458:3701 rev 161, Mem @ 0xde000000/16777216, 0xc0000000/268435456, 0xd0000000/33554432, I/O @ 0x0000e000/128, BIOS @ 0x????????/131072
[ 19095.361] (WW) Open ACPI failed (/var/run/acpid.socket) (No such file or directory)
[ 19095.361] (II) LoadModule: "glx"
[ 19095.362] (II) Loading /usr/lib/xorg/modules/extensions/libglx.so
[ 19095.364] (II) Module glx: vendor="X.Org Foundation"
[ 19095.364] 	compiled for 1.21.1.1, module version = 1.0.0
[ 19095.364] 	ABI class: X.Org Server Extension, version 10.0
[ 19095.364] (II) Applying OutputClass "nvidia" to /dev/dri/card0
[ 19095.364] 	loading driver: nvidia
[ 19095.364] (==) Matched nvidia as autoconfigured driver 0
[ 19095.364] (==) Matched nouveau as autoconfigured driver 1
[ 19095.364] (==) Matched nv as autoconfigured driver 2
[ 19095.364] (==) Matched modesetting as autoconfigured driver 3
[ 19095.364] (==) Matched fbdev as autoconfigured driver 4
[ 19095.364] (==) Matched vesa as autoconfigured driver 5
[ 19095.364] (==) Assigned the driver to the xf86ConfigLayout
[ 19095.364] (II) LoadModule: "nvidia"
[ 19095.364] (II) Loading /usr/lib/xorg/modules/drivers/nvidia_drv.so
[ 19095.365] (II) Module nvidia: vendor="NVIDIA Corporation"
[ 19095.365] 	compiled for 1.6.99.901, module version = 1.0.0
[ 19095.365] 	Module class: X.Org Video Driver
[ 19095.365] (II) LoadModule: "nouveau"
[ 19095.365] (WW) Warning, couldn't open module nouveau
[ 19095.366] (EE) Failed to load module "nouveau" (module does not exist, 0)
[ 19095.366] (II) LoadModule: "nv"
[ 19095.366] (WW) Warning, couldn't open module nv
[ 19095.366] (EE) Failed to load module "nv" (module does not exist, 0)
[ 19095.366] (II) LoadModule: "modesetting"
[ 19095.366] (II) Loading /usr/lib/xorg/modules/drivers/modesetting_drv.so
[ 19095.367] (II) Module modesetting: vendor="X.Org Foundation"
[ 19095.367] 	compiled for 1.21.1.1, module version = 1.21.1
[ 19095.367] 	Module class: X.Org Video Driver
[ 19095.367] 	ABI class: X.Org Video Driver, version 25.2
[ 19095.367] (II) LoadModule: "fbdev"
[ 19095.368] (WW) Warning, couldn't open module fbdev
[ 19095.368] (EE) Failed to load module "fbdev" (module does not exist, 0)
[ 19095.368] (II) LoadModule: "vesa"
[ 19095.368] (II) Loading /usr/lib/xorg/modules/drivers/vesa_drv.so
[ 19095.368] (II) Module vesa: vendor="X.Org Foundation"
[ 19095.368] 	compiled for 1.21.1.1, module version = 2.5.0
[ 19095.368] 	Module class: X.Org Video Driver
[ 19095.368] 	ABI class: X.Org Video Driver, version 25.2
[ 19095.368] (II) NVIDIA dlloader X Driver  495.44  Fri Oct 22 06:11:21 UTC 2021
[ 19095.368] (II) NVIDIA Unified Driver for all Supported NVIDIA GPUs
[ 19095.368] (II) modesetting: Driver for Modesetting Kernel Drivers: kms
[ 19095.368] (II) VESA: driver for VESA chipsets: vesa
[ 19096.143] (II) Loading sub module "fb"
[ 19096.143] (II) LoadModule: "fb"
[ 19096.143] (II) Module "fb" already built-in
[ 19096.143] (II) Loading sub module "wfb"
[ 19096.143] (II) LoadModule: "wfb"
[ 19096.143] (II) Loading /usr/lib/xorg/modules/libwfb.so
[ 19096.143] (II) Module wfb: vendor="X.Org Foundation"
[ 19096.143] 	compiled for 1.21.1.1, module version = 1.0.0
[ 19096.143] 	ABI class: X.Org ANSI C Emulation, version 0.4
[ 19096.143] (II) Loading sub module "ramdac"
[ 19096.143] (II) LoadModule: "ramdac"
[ 19096.143] (II) Module "ramdac" already built-in
[ 19096.144] (WW) Falling back to old probe method for modesetting
[ 19096.144] (II) NVIDIA(0): Creating default Display subsection in Screen section
	"Default Screen Section" for depth/fbbpp 24/32
[ 19096.144] (==) NVIDIA(0): Depth 24, (==) framebuffer bpp 32
[ 19096.144] (==) NVIDIA(0): RGB weight 888
[ 19096.144] (==) NVIDIA(0): Default visual is TrueColor
[ 19096.144] (==) NVIDIA(0): Using gamma correction (1.0, 1.0, 1.0)
[ 19096.144] (II) Applying OutputClass "nvidia" options to /dev/dri/card0
[ 19096.144] (**) NVIDIA(0): Option "AllowEmptyInitialConfiguration"
[ 19096.144] (**) NVIDIA(0): Enabling 2D acceleration
[ 19096.144] (II) Loading sub module "glxserver_nvidia"
[ 19096.144] (II) LoadModule: "glxserver_nvidia"
[ 19096.144] (II) Loading /usr/lib/nvidia/xorg/libglxserver_nvidia.so
[ 19096.150] (II) Module glxserver_nvidia: vendor="NVIDIA Corporation"
[ 19096.150] 	compiled for 1.6.99.901, module version = 1.0.0
[ 19096.150] 	Module class: X.Org Server Extension
[ 19096.151] (II) NVIDIA GLX Module  495.44  Fri Oct 22 06:08:29 UTC 2021
[ 19096.151] (II) NVIDIA: The X server supports PRIME Render Offload.
[ 19096.152] (--) NVIDIA(0): Valid display device(s) on GPU-0 at PCI:1:0:0
[ 19096.152] (--) NVIDIA(0):     DFP-0
[ 19096.152] (--) NVIDIA(0):     DFP-1
[ 19096.152] (--) NVIDIA(0):     DFP-2
[ 19096.152] (--) NVIDIA(0):     DFP-3
[ 19096.152] (--) NVIDIA(0):     DFP-4 (boot)
[ 19096.152] (--) NVIDIA(0):     DFP-5
[ 19096.152] (--) NVIDIA(0):     DFP-6
[ 19096.152] (--) NVIDIA(0):     DFP-7
[ 19096.153] (II) NVIDIA(0): NVIDIA GPU NVIDIA GeForce GTX 1070 (GP104-A) at PCI:1:0:0
[ 19096.153] (II) NVIDIA(0):     (GPU-0)
[ 19096.153] (--) NVIDIA(0): Memory: 8388608 kBytes
[ 19096.153] (--) NVIDIA(0): VideoBIOS: 86.04.26.00.56
[ 19096.153] (II) NVIDIA(0): Detected PCI Express Link width: 16X
[ 19096.153] (--) NVIDIA(GPU-0): DFP-0: disconnected
[ 19096.153] (--) NVIDIA(GPU-0): DFP-0: Internal TMDS
[ 19096.153] (--) NVIDIA(GPU-0): DFP-0: 330.0 MHz maximum pixel clock
[ 19096.153] (--) NVIDIA(GPU-0): 
[ 19096.153] (--) NVIDIA(GPU-0): DFP-1: disconnected
[ 19096.153] (--) NVIDIA(GPU-0): DFP-1: Internal TMDS
[ 19096.153] (--) NVIDIA(GPU-0): DFP-1: 165.0 MHz maximum pixel clock
[ 19096.153] (--) NVIDIA(GPU-0): 
[ 19096.153] (--) NVIDIA(GPU-0): DFP-2: disconnected
[ 19096.153] (--) NVIDIA(GPU-0): DFP-2: Internal DisplayPort
[ 19096.153] (--) NVIDIA(GPU-0): DFP-2: 1440.0 MHz maximum pixel clock
[ 19096.153] (--) NVIDIA(GPU-0): 
[ 19096.154] (--) NVIDIA(GPU-0): DFP-3: disconnected
[ 19096.154] (--) NVIDIA(GPU-0): DFP-3: Internal TMDS
[ 19096.154] (--) NVIDIA(GPU-0): DFP-3: 165.0 MHz maximum pixel clock
[ 19096.154] (--) NVIDIA(GPU-0): 
[ 19096.154] (--) NVIDIA(GPU-0): DELL U2715H (DFP-4): connected
[ 19096.154] (--) NVIDIA(GPU-0): DELL U2715H (DFP-4): Internal DisplayPort
[ 19096.154] (--) NVIDIA(GPU-0): DELL U2715H (DFP-4): 1440.0 MHz maximum pixel clock
[ 19096.154] (--) NVIDIA(GPU-0): 
[ 19096.159] (--) NVIDIA(GPU-0): DFP-5: disconnected
[ 19096.159] (--) NVIDIA(GPU-0): DFP-5: Internal TMDS
[ 19096.159] (--) NVIDIA(GPU-0): DFP-5: 165.0 MHz maximum pixel clock
[ 19096.159] (--) NVIDIA(GPU-0): 
[ 19096.159] (--) NVIDIA(GPU-0): DFP-6: disconnected
[ 19096.159] (--) NVIDIA(GPU-0): DFP-6: Internal DisplayPort
[ 19096.159] (--) NVIDIA(GPU-0): DFP-6: 1440.0 MHz maximum pixel clock
[ 19096.159] (--) NVIDIA(GPU-0): 
[ 19096.159] (--) NVIDIA(GPU-0): DFP-7: disconnected
[ 19096.159] (--) NVIDIA(GPU-0): DFP-7: Internal TMDS
[ 19096.159] (--) NVIDIA(GPU-0): DFP-7: 165.0 MHz maximum pixel clock
[ 19096.159] (--) NVIDIA(GPU-0): 
[ 19096.166] (==) NVIDIA(0): 
[ 19096.166] (==) NVIDIA(0): No modes were requested; the default mode "nvidia-auto-select"
[ 19096.166] (==) NVIDIA(0):     will be used as the requested mode.
[ 19096.166] (==) NVIDIA(0): 
[ 19096.166] (II) NVIDIA(0): Validated MetaModes:
[ 19096.166] (II) NVIDIA(0):     "DFP-4:nvidia-auto-select"
[ 19096.166] (II) NVIDIA(0): Virtual screen size determined to be 2560 x 1440
[ 19096.174] (--) NVIDIA(0): DPI set to (108, 107); computed from "UseEdidDpi" X config
[ 19096.174] (--) NVIDIA(0):     option
[ 19096.174] (II) UnloadModule: "modesetting"
[ 19096.174] (II) Unloading modesetting
[ 19096.174] (II) UnloadModule: "vesa"
[ 19096.174] (II) Unloading vesa
[ 19096.175] (II) NVIDIA: Reserving 24576.00 MB of virtual memory for indirect memory
[ 19096.175] (II) NVIDIA:     access.
[ 19096.177] (II) NVIDIA(0): ACPI: failed to connect to the ACPI event daemon; the daemon
[ 19096.177] (II) NVIDIA(0):     may not be running or the "AcpidSocketPath" X
[ 19096.177] (II) NVIDIA(0):     configuration option may not be set correctly.  When the
[ 19096.177] (II) NVIDIA(0):     ACPI event daemon is available, the NVIDIA X driver will
[ 19096.177] (II) NVIDIA(0):     try to use it to receive ACPI event notifications.  For
[ 19096.177] (II) NVIDIA(0):     details, please see the "ConnectToAcpid" and
[ 19096.177] (II) NVIDIA(0):     "AcpidSocketPath" X configuration options in Appendix B: X
[ 19096.177] (II) NVIDIA(0):     Config Options in the README.
[ 19096.192] (II) NVIDIA(0): Setting mode "DFP-4:nvidia-auto-select"
[ 19096.269] (==) NVIDIA(0): Disabling shared memory pixmaps
[ 19096.269] (==) NVIDIA(0): Backing store enabled
[ 19096.269] (==) NVIDIA(0): Silken mouse enabled
[ 19096.270] (==) NVIDIA(0): DPMS enabled
[ 19096.270] (II) Loading sub module "dri2"
[ 19096.270] (II) LoadModule: "dri2"
[ 19096.270] (II) Module "dri2" already built-in
[ 19096.270] (II) NVIDIA(0): [DRI2] Setup complete
[ 19096.270] (II) NVIDIA(0): [DRI2]   VDPAU driver: nvidia
[ 19096.270] (II) Initializing extension Generic Event Extension
[ 19096.270] (II) Initializing extension SHAPE
[ 19096.270] (II) Initializing extension MIT-SHM
[ 19096.270] (II) Initializing extension XInputExtension
[ 19096.270] (II) Initializing extension XTEST
[ 19096.270] (II) Initializing extension BIG-REQUESTS
[ 19096.270] (II) Initializing extension SYNC
[ 19096.270] (II) Initializing extension XKEYBOARD
[ 19096.270] (II) Initializing extension XC-MISC
[ 19096.270] (II) Initializing extension SECURITY
[ 19096.270] (II) Initializing extension XFIXES
[ 19096.271] (II) Initializing extension RENDER
[ 19096.271] (II) Initializing extension RANDR
[ 19096.271] (II) Initializing extension COMPOSITE
[ 19096.271] (II) Initializing extension DAMAGE
[ 19096.271] (II) Initializing extension MIT-SCREEN-SAVER
[ 19096.271] (II) Initializing extension DOUBLE-BUFFER
[ 19096.271] (II) Initializing extension RECORD
[ 19096.271] (II) Initializing extension DPMS
[ 19096.271] (II) Initializing extension Present
[ 19096.271] (II) Initializing extension DRI3
[ 19096.271] (II) Initializing extension X-Resource
[ 19096.272] (II) Initializing extension XVideo
[ 19096.272] (II) Initializing extension XVideo-MotionCompensation
[ 19096.272] (II) Initializing extension GLX
[ 19096.272] (II) Initializing extension GLX
[ 19096.272] (II) Indirect GLX disabled.
[ 19096.272] (II) GLX: Another vendor is already registered for screen 0
[ 19096.272] (II) Initializing extension XFree86-VidModeExtension
[ 19096.272] (II) Initializing extension XFree86-DGA
[ 19096.272] (II) Initializing extension XFree86-DRI
[ 19096.272] (II) Initializing extension DRI2
[ 19096.272] (II) Initializing extension NV-GLX
[ 19096.272] (II) Initializing extension NV-CONTROL
[ 19096.272] (II) Initializing extension XINERAMA
[ 19096.326] (II) config/udev: Adding input device Power Button (/dev/input/event2)
[ 19096.326] (**) Power Button: Applying InputClass "libinput keyboard catchall"
[ 19096.326] (II) LoadModule: "libinput"
[ 19096.326] (II) Loading /usr/lib/xorg/modules/input/libinput_drv.so
[ 19096.327] (II) Module libinput: vendor="X.Org Foundation"
[ 19096.327] 	compiled for 1.21.1, module version = 1.2.0
[ 19096.327] 	Module class: X.Org XInput Driver
[ 19096.327] 	ABI class: X.Org XInput driver, version 24.4
[ 19096.327] (II) Using input driver 'libinput' for 'Power Button'
[ 19096.327] (**) Power Button: always reports core events
[ 19096.327] (**) Option "Device" "/dev/input/event2"
[ 19096.327] (**) Option "_source" "server/udev"
[ 19096.328] (II) event2  - Power Button: is tagged by udev as: Keyboard
[ 19096.328] (II) event2  - Power Button: device is a keyboard
[ 19096.328] (II) event2  - Power Button: device removed
[ 19096.366] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/LNXPWRBN:00/input/input2/event2"
[ 19096.366] (II) XINPUT: Adding extended input device "Power Button" (type: KEYBOARD, id 6)
[ 19096.367] (II) event2  - Power Button: is tagged by udev as: Keyboard
[ 19096.367] (II) event2  - Power Button: device is a keyboard
[ 19096.367] (II) config/udev: Adding input device Power Button (/dev/input/event1)
[ 19096.367] (**) Power Button: Applying InputClass "libinput keyboard catchall"
[ 19096.367] (II) Using input driver 'libinput' for 'Power Button'
[ 19096.367] (**) Power Button: always reports core events
[ 19096.367] (**) Option "Device" "/dev/input/event1"
[ 19096.367] (**) Option "_source" "server/udev"
[ 19096.368] (II) event1  - Power Button: is tagged by udev as: Keyboard
[ 19096.368] (II) event1  - Power Button: device is a keyboard
[ 19096.368] (II) event1  - Power Button: device removed
[ 19096.406] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input1/event1"
[ 19096.406] (II) XINPUT: Adding extended input device "Power Button" (type: KEYBOARD, id 7)
[ 19096.406] (II) event1  - Power Button: is tagged by udev as: Keyboard
[ 19096.406] (II) event1  - Power Button: device is a keyboard
[ 19096.407] (II) config/udev: Adding input device Sleep Button (/dev/input/event0)
[ 19096.407] (**) Sleep Button: Applying InputClass "libinput keyboard catchall"
[ 19096.407] (II) Using input driver 'libinput' for 'Sleep Button'
[ 19096.407] (**) Sleep Button: always reports core events
[ 19096.407] (**) Option "Device" "/dev/input/event0"
[ 19096.407] (**) Option "_source" "server/udev"
[ 19096.407] (II) event0  - Sleep Button: is tagged by udev as: Keyboard
[ 19096.407] (II) event0  - Sleep Button: device is a keyboard
[ 19096.407] (II) event0  - Sleep Button: device removed
[ 19096.446] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0E:00/input/input0/event0"
[ 19096.446] (II) XINPUT: Adding extended input device "Sleep Button" (type: KEYBOARD, id 8)
[ 19096.446] (II) event0  - Sleep Button: is tagged by udev as: Keyboard
[ 19096.446] (II) event0  - Sleep Button: device is a keyboard
[ 19096.447] (II) config/udev: Adding input device HDA NVidia HDMI/DP,pcm=3 (/dev/input/event19)
[ 19096.447] (II) No input driver specified, ignoring this device.
[ 19096.447] (II) This device may have been added with another device file.
[ 19096.447] (II) config/udev: Adding input device HDA NVidia HDMI/DP,pcm=7 (/dev/input/event20)
[ 19096.447] (II) No input driver specified, ignoring this device.
[ 19096.447] (II) This device may have been added with another device file.
[ 19096.447] (II) config/udev: Adding input device HDA NVidia HDMI/DP,pcm=8 (/dev/input/event21)
[ 19096.447] (II) No input driver specified, ignoring this device.
[ 19096.447] (II) This device may have been added with another device file.
[ 19096.448] (II) config/udev: Adding input device HDA NVidia HDMI/DP,pcm=9 (/dev/input/event22)
[ 19096.448] (II) No input driver specified, ignoring this device.
[ 19096.448] (II) This device may have been added with another device file.
[ 19096.448] (II) config/udev: Adding input device HDA NVidia HDMI/DP,pcm=10 (/dev/input/event23)
[ 19096.448] (II) No input driver specified, ignoring this device.
[ 19096.448] (II) This device may have been added with another device file.
[ 19096.448] (II) config/udev: Adding input device HDA NVidia HDMI/DP,pcm=11 (/dev/input/event24)
[ 19096.448] (II) No input driver specified, ignoring this device.
[ 19096.448] (II) This device may have been added with another device file.
[ 19096.448] (II) config/udev: Adding input device HDA NVidia HDMI/DP,pcm=12 (/dev/input/event25)
[ 19096.448] (II) No input driver specified, ignoring this device.
[ 19096.448] (II) This device may have been added with another device file.
[ 19096.449] (II) config/udev: Adding input device Ducky Ducky One2 Mini RGB (/dev/input/event7)
[ 19096.449] (**) Ducky Ducky One2 Mini RGB: Applying InputClass "libinput keyboard catchall"
[ 19096.449] (II) Using input driver 'libinput' for 'Ducky Ducky One2 Mini RGB'
[ 19096.449] (**) Ducky Ducky One2 Mini RGB: always reports core events
[ 19096.449] (**) Option "Device" "/dev/input/event7"
[ 19096.449] (**) Option "_source" "server/udev"
[ 19096.450] (II) event7  - Ducky Ducky One2 Mini RGB: is tagged by udev as: Keyboard
[ 19096.450] (II) event7  - Ducky Ducky One2 Mini RGB: device is a keyboard
[ 19096.450] (II) event7  - Ducky Ducky One2 Mini RGB: device removed
[ 19096.506] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:14.0/usb1/1-12/1-12:1.0/0003:3233:6301.0004/input/input8/event7"
[ 19096.506] (II) XINPUT: Adding extended input device "Ducky Ducky One2 Mini RGB" (type: KEYBOARD, id 9)
[ 19096.507] (II) event7  - Ducky Ducky One2 Mini RGB: is tagged by udev as: Keyboard
[ 19096.507] (II) event7  - Ducky Ducky One2 Mini RGB: device is a keyboard
[ 19096.507] (II) config/udev: Adding input device Ducky Ducky One2 Mini RGB (/dev/input/event8)
[ 19096.507] (**) Ducky Ducky One2 Mini RGB: Applying InputClass "libinput pointer catchall"
[ 19096.507] (II) Using input driver 'libinput' for 'Ducky Ducky One2 Mini RGB'
[ 19096.507] (**) Ducky Ducky One2 Mini RGB: always reports core events
[ 19096.507] (**) Option "Device" "/dev/input/event8"
[ 19096.507] (**) Option "_source" "server/udev"
[ 19096.577] (II) event8  - Ducky Ducky One2 Mini RGB: is tagged by udev as: Mouse
[ 19096.577] (II) event8  - Ducky Ducky One2 Mini RGB: device is a pointer
[ 19096.577] (II) event8  - Ducky Ducky One2 Mini RGB: device removed
[ 19096.656] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:14.0/usb1/1-12/1-12:1.1/0003:3233:6301.0005/input/input9/event8"
[ 19096.656] (II) XINPUT: Adding extended input device "Ducky Ducky One2 Mini RGB" (type: MOUSE, id 10)
[ 19096.656] (**) Option "AccelerationScheme" "none"
[ 19096.656] (**) Ducky Ducky One2 Mini RGB: (accel) selected scheme none/0
[ 19096.656] (**) Ducky Ducky One2 Mini RGB: (accel) acceleration factor: 2.000
[ 19096.656] (**) Ducky Ducky One2 Mini RGB: (accel) acceleration threshold: 4
[ 19096.729] (II) event8  - Ducky Ducky One2 Mini RGB: is tagged by udev as: Mouse
[ 19096.729] (II) event8  - Ducky Ducky One2 Mini RGB: device is a pointer
[ 19096.731] (II) config/udev: Adding input device Ducky Ducky One2 Mini RGB (/dev/input/mouse1)
[ 19096.731] (II) No input driver specified, ignoring this device.
[ 19096.731] (II) This device may have been added with another device file.
[ 19096.732] (II) config/udev: Adding input device Ducky Ducky One2 Mini RGB (/dev/input/event9)
[ 19096.732] (**) Ducky Ducky One2 Mini RGB: Applying InputClass "libinput keyboard catchall"
[ 19096.732] (II) Using input driver 'libinput' for 'Ducky Ducky One2 Mini RGB'
[ 19096.732] (**) Ducky Ducky One2 Mini RGB: always reports core events
[ 19096.732] (**) Option "Device" "/dev/input/event9"
[ 19096.732] (**) Option "_source" "server/udev"
[ 19096.732] (II) event9  - Ducky Ducky One2 Mini RGB: is tagged by udev as: Keyboard
[ 19096.732] (II) event9  - Ducky Ducky One2 Mini RGB: device is a keyboard
[ 19096.733] (II) event9  - Ducky Ducky One2 Mini RGB: device removed
[ 19096.806] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:14.0/usb1/1-12/1-12:1.2/0003:3233:6301.0006/input/input10/event9"
[ 19096.806] (II) XINPUT: Adding extended input device "Ducky Ducky One2 Mini RGB" (type: KEYBOARD, id 11)
[ 19096.810] (II) event9  - Ducky Ducky One2 Mini RGB: is tagged by udev as: Keyboard
[ 19096.810] (II) event9  - Ducky Ducky One2 Mini RGB: device is a keyboard
[ 19096.813] (II) config/udev: Adding input device Ducky Ducky One2 Mini RGB (/dev/input/event10)
[ 19096.813] (**) Ducky Ducky One2 Mini RGB: Applying InputClass "libinput keyboard catchall"
[ 19096.813] (II) Using input driver 'libinput' for 'Ducky Ducky One2 Mini RGB'
[ 19096.813] (**) Ducky Ducky One2 Mini RGB: always reports core events
[ 19096.813] (**) Option "Device" "/dev/input/event10"
[ 19096.813] (**) Option "_source" "server/udev"
[ 19096.817] (II) event10 - Ducky Ducky One2 Mini RGB: is tagged by udev as: Keyboard
[ 19096.817] (II) event10 - Ducky Ducky One2 Mini RGB: device is a keyboard
[ 19096.817] (II) event10 - Ducky Ducky One2 Mini RGB: device removed
[ 19096.936] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:14.0/usb1/1-12/1-12:1.3/0003:3233:6301.0007/input/input11/event10"
[ 19096.936] (II) XINPUT: Adding extended input device "Ducky Ducky One2 Mini RGB" (type: KEYBOARD, id 12)
[ 19096.940] (II) event10 - Ducky Ducky One2 Mini RGB: is tagged by udev as: Keyboard
[ 19096.940] (II) event10 - Ducky Ducky One2 Mini RGB: device is a keyboard
[ 19096.943] (II) config/udev: Adding input device Ducky Ducky Secret M Optical Mouse (/dev/input/event3)
[ 19096.943] (**) Ducky Ducky Secret M Optical Mouse: Applying InputClass "libinput pointer catchall"
[ 19096.943] (II) Using input driver 'libinput' for 'Ducky Ducky Secret M Optical Mouse'
[ 19096.943] (**) Ducky Ducky Secret M Optical Mouse: always reports core events
[ 19096.943] (**) Option "Device" "/dev/input/event3"
[ 19096.943] (**) Option "_source" "server/udev"
[ 19097.009] (II) event3  - Ducky Ducky Secret M Optical Mouse: is tagged by udev as: Mouse
[ 19097.009] (II) event3  - Ducky Ducky Secret M Optical Mouse: device is a pointer
[ 19097.010] (II) event3  - Ducky Ducky Secret M Optical Mouse: device removed
[ 19097.086] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:14.0/usb1/1-4/1-4:1.0/0003:0627:0003.0001/input/input3/event3"
[ 19097.086] (II) XINPUT: Adding extended input device "Ducky Ducky Secret M Optical Mouse" (type: MOUSE, id 13)
[ 19097.086] (**) Option "AccelerationScheme" "none"
[ 19097.086] (**) Ducky Ducky Secret M Optical Mouse: (accel) selected scheme none/0
[ 19097.086] (**) Ducky Ducky Secret M Optical Mouse: (accel) acceleration factor: 2.000
[ 19097.086] (**) Ducky Ducky Secret M Optical Mouse: (accel) acceleration threshold: 4
[ 19097.159] (II) event3  - Ducky Ducky Secret M Optical Mouse: is tagged by udev as: Mouse
[ 19097.159] (II) event3  - Ducky Ducky Secret M Optical Mouse: device is a pointer
[ 19097.162] (II) config/udev: Adding input device Ducky Ducky Secret M Optical Mouse (/dev/input/mouse0)
[ 19097.162] (II) No input driver specified, ignoring this device.
[ 19097.162] (II) This device may have been added with another device file.
[ 19097.164] (II) config/udev: Adding input device Ducky Ducky Secret M Optical Mouse Keyboard (/dev/input/event4)
[ 19097.164] (**) Ducky Ducky Secret M Optical Mouse Keyboard: Applying InputClass "libinput keyboard catchall"
[ 19097.164] (II) Using input driver 'libinput' for 'Ducky Ducky Secret M Optical Mouse Keyboard'
[ 19097.164] (**) Ducky Ducky Secret M Optical Mouse Keyboard: always reports core events
[ 19097.164] (**) Option "Device" "/dev/input/event4"
[ 19097.164] (**) Option "_source" "server/udev"
[ 19097.168] (II) event4  - Ducky Ducky Secret M Optical Mouse Keyboard: is tagged by udev as: Keyboard
[ 19097.168] (II) event4  - Ducky Ducky Secret M Optical Mouse Keyboard: device is a keyboard
[ 19097.168] (II) event4  - Ducky Ducky Secret M Optical Mouse Keyboard: device removed
[ 19097.226] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:14.0/usb1/1-4/1-4:1.1/0003:0627:0003.0002/input/input4/event4"
[ 19097.226] (II) XINPUT: Adding extended input device "Ducky Ducky Secret M Optical Mouse Keyboard" (type: KEYBOARD, id 14)
[ 19097.229] (II) event4  - Ducky Ducky Secret M Optical Mouse Keyboard: is tagged by udev as: Keyboard
[ 19097.229] (II) event4  - Ducky Ducky Secret M Optical Mouse Keyboard: device is a keyboard
[ 19097.231] (II) config/udev: Adding input device Ducky Ducky Secret M Optical Mouse System Control (/dev/input/event5)
[ 19097.231] (**) Ducky Ducky Secret M Optical Mouse System Control: Applying InputClass "libinput keyboard catchall"
[ 19097.231] (II) Using input driver 'libinput' for 'Ducky Ducky Secret M Optical Mouse System Control'
[ 19097.231] (**) Ducky Ducky Secret M Optical Mouse System Control: always reports core events
[ 19097.231] (**) Option "Device" "/dev/input/event5"
[ 19097.231] (**) Option "_source" "server/udev"
[ 19097.234] (II) event5  - Ducky Ducky Secret M Optical Mouse System Control: is tagged by udev as: Keyboard
[ 19097.234] (II) event5  - Ducky Ducky Secret M Optical Mouse System Control: device is a keyboard
[ 19097.235] (II) event5  - Ducky Ducky Secret M Optical Mouse System Control: device removed
[ 19097.266] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:14.0/usb1/1-4/1-4:1.1/0003:0627:0003.0002/input/input5/event5"
[ 19097.266] (II) XINPUT: Adding extended input device "Ducky Ducky Secret M Optical Mouse System Control" (type: KEYBOARD, id 15)
[ 19097.270] (II) event5  - Ducky Ducky Secret M Optical Mouse System Control: is tagged by udev as: Keyboard
[ 19097.271] (II) event5  - Ducky Ducky Secret M Optical Mouse System Control: device is a keyboard
[ 19097.273] (II) config/udev: Adding input device Ducky Ducky Secret M Optical Mouse Consumer Control (/dev/input/event6)
[ 19097.273] (**) Ducky Ducky Secret M Optical Mouse Consumer Control: Applying InputClass "libinput keyboard catchall"
[ 19097.273] (II) Using input driver 'libinput' for 'Ducky Ducky Secret M Optical Mouse Consumer Control'
[ 19097.274] (**) Ducky Ducky Secret M Optical Mouse Consumer Control: always reports core events
[ 19097.274] (**) Option "Device" "/dev/input/event6"
[ 19097.274] (**) Option "_source" "server/udev"
[ 19097.277] (II) event6  - Ducky Ducky Secret M Optical Mouse Consumer Control: is tagged by udev as: Keyboard
[ 19097.277] (II) event6  - Ducky Ducky Secret M Optical Mouse Consumer Control: device is a keyboard
[ 19097.278] (II) event6  - Ducky Ducky Secret M Optical Mouse Consumer Control: device removed
[ 19097.326] (II) libinput: Ducky Ducky Secret M Optical Mouse Consumer Control: needs a virtual subdevice
[ 19097.326] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:14.0/usb1/1-4/1-4:1.1/0003:0627:0003.0002/input/input6/event6"
[ 19097.326] (II) XINPUT: Adding extended input device "Ducky Ducky Secret M Optical Mouse Consumer Control" (type: MOUSE, id 16)
[ 19097.326] (**) Option "AccelerationScheme" "none"
[ 19097.326] (**) Ducky Ducky Secret M Optical Mouse Consumer Control: (accel) selected scheme none/0
[ 19097.326] (**) Ducky Ducky Secret M Optical Mouse Consumer Control: (accel) acceleration factor: 2.000
[ 19097.326] (**) Ducky Ducky Secret M Optical Mouse Consumer Control: (accel) acceleration threshold: 4
[ 19097.330] (II) event6  - Ducky Ducky Secret M Optical Mouse Consumer Control: is tagged by udev as: Keyboard
[ 19097.330] (II) event6  - Ducky Ducky Secret M Optical Mouse Consumer Control: device is a keyboard
[ 19097.332] (II) config/udev: Adding input device HDA Intel PCH Front Mic (/dev/input/event12)
[ 19097.332] (II) No input driver specified, ignoring this device.
[ 19097.332] (II) This device may have been added with another device file.
[ 19097.333] (II) config/udev: Adding input device HDA Intel PCH Rear Mic (/dev/input/event13)
[ 19097.333] (II) No input driver specified, ignoring this device.
[ 19097.333] (II) This device may have been added with another device file.
[ 19097.335] (II) config/udev: Adding input device HDA Intel PCH Line (/dev/input/event14)
[ 19097.335] (II) No input driver specified, ignoring this device.
[ 19097.335] (II) This device may have been added with another device file.
[ 19097.336] (II) config/udev: Adding input device HDA Intel PCH Line Out Front (/dev/input/event15)
[ 19097.336] (II) No input driver specified, ignoring this device.
[ 19097.336] (II) This device may have been added with another device file.
[ 19097.337] (II) config/udev: Adding input device HDA Intel PCH Line Out Surround (/dev/input/event16)
[ 19097.337] (II) No input driver specified, ignoring this device.
[ 19097.337] (II) This device may have been added with another device file.
[ 19097.338] (II) config/udev: Adding input device HDA Intel PCH Line Out CLFE (/dev/input/event17)
[ 19097.338] (II) No input driver specified, ignoring this device.
[ 19097.338] (II) This device may have been added with another device file.
[ 19097.339] (II) config/udev: Adding input device HDA Intel PCH Front Headphone (/dev/input/event18)
[ 19097.339] (II) No input driver specified, ignoring this device.
[ 19097.339] (II) This device may have been added with another device file.
[ 19097.340] (II) config/udev: Adding input device PC Speaker (/dev/input/event11)
[ 19097.340] (II) No input driver specified, ignoring this device.
[ 19097.340] (II) This device may have been added with another device file.
[ 19097.357] (**) Ducky Ducky Secret M Optical Mouse Consumer Control: Applying InputClass "libinput keyboard catchall"
[ 19097.357] (II) Using input driver 'libinput' for 'Ducky Ducky Secret M Optical Mouse Consumer Control'
[ 19097.357] (**) Ducky Ducky Secret M Optical Mouse Consumer Control: always reports core events
[ 19097.357] (**) Option "Device" "/dev/input/event6"
[ 19097.357] (**) Option "_source" "_driver/libinput"
[ 19097.357] (II) libinput: Ducky Ducky Secret M Optical Mouse Consumer Control: is a virtual subdevice
[ 19097.357] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:14.0/usb1/1-4/1-4:1.1/0003:0627:0003.0002/input/input6/event6"
[ 19097.357] (II) XINPUT: Adding extended input device "Ducky Ducky Secret M Optical Mouse Consumer Control" (type: KEYBOARD, id 17)
[ 19100.913] (II) event2  - Power Button: device removed
[ 19100.956] (II) event1  - Power Button: device removed
[ 19101.016] (II) event0  - Sleep Button: device removed
[ 19101.066] (II) event7  - Ducky Ducky One2 Mini RGB: device removed
[ 19101.106] (II) event8  - Ducky Ducky One2 Mini RGB: device removed
[ 19101.186] (II) event9  - Ducky Ducky One2 Mini RGB: device removed
[ 19101.276] (II) event10 - Ducky Ducky One2 Mini RGB: device removed
[ 19101.356] (II) event3  - Ducky Ducky Secret M Optical Mouse: device removed
[ 19101.456] (II) event4  - Ducky Ducky Secret M Optical Mouse Keyboard: device removed
[ 19101.496] (II) event5  - Ducky Ducky Secret M Optical Mouse System Control: device removed
[ 19101.536] (II) event6  - Ducky Ducky Secret M Optical Mouse Consumer Control: device removed
[ 19101.753] (II) UnloadModule: "libinput"
[ 19101.753] (II) UnloadModule: "libinput"
[ 19101.754] (II) UnloadModule: "libinput"
[ 19101.754] (II) UnloadModule: "libinput"
[ 19101.754] (II) UnloadModule: "libinput"
[ 19101.754] (II) UnloadModule: "libinput"
[ 19101.754] (II) UnloadModule: "libinput"
[ 19101.754] (II) UnloadModule: "libinput"
[ 19101.754] (II) UnloadModule: "libinput"
[ 19101.754] (II) UnloadModule: "libinput"
[ 19101.754] (II) UnloadModule: "libinput"
[ 19101.754] (II) UnloadModule: "libinput"
[ 19101.850] (II) NVIDIA(GPU-0): Deleting GPU-0
[ 19101.851] (II) Server terminated successfully (0). Closing log file.

Last edited by pepper (2021-12-11 10:04:27)

Offline

#4 2021-12-11 12:52:42

seth
Member
Registered: 2012-09-03
Posts: 52,199

Re: [SOLVED] Picom glitches

Only one GPU and output and the nvidia driver and glx module is correclty loaded.
Does it go away w/ either
- "xrender-sync-fence = false"
- "use-damage = false"

Offline

#5 2021-12-11 19:24:18

pepper
Member
Registered: 2017-12-09
Posts: 116

Re: [SOLVED] Picom glitches

using glx as backend and:
xrender-sync-fence = false
use-damage=false

Glitches are no more present and I've no tearing, thank you!

Last edited by pepper (2021-12-11 19:24:35)

Offline

#6 2021-12-11 19:49:57

seth
Member
Registered: 2012-09-03
Posts: 52,199

Re: [SOLVED] Picom glitches

You probably don't need "use-damage=false" and since itmplies quite some overhead, you might want to try w/o.

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

Offline

Board footer

Powered by FluxBB