Nvidia prime-run returns error

Here you go :

nvidia-smi

Thu Jan 21 01:03:02 2021       
+-----------------------------------------------------------------------------+
| NVIDIA-SMI 460.32.03    Driver Version: 460.32.03    CUDA Version: 11.2     |
|-------------------------------+----------------------+----------------------+
| GPU  Name        Persistence-M| Bus-Id        Disp.A | Volatile Uncorr. ECC |
| Fan  Temp  Perf  Pwr:Usage/Cap|         Memory-Usage | GPU-Util  Compute M. |
|                               |                      |               MIG M. |
|===============================+======================+======================|
|   0  GeForce 940MX       Off  | 00000000:01:00.0 Off |                  N/A |
| N/A   39C    P8    N/A /  N/A |      0MiB /  4046MiB |      0%      Default |
|                               |                      |                  N/A |
+-------------------------------+----------------------+----------------------+
                                                                               
+-----------------------------------------------------------------------------+
| Processes:                                                                  |
|  GPU   GI   CI        PID   Type   Process name                  GPU Memory |
|        ID   ID                                                   Usage      |
|=============================================================================|
|  No running processes found                                                 |
+-----------------------------------------------------------------------------+
xrandr --listproviders

Providers: number : 2
Provider 0: id: 0x44 cap: 0xf, Source Output, Sink Output, Source Offload, Sink Offload crtcs: 3 outputs: 2 associated providers: 0 name:modesetting
Provider 1: id: 0xc7 cap: 0x0 crtcs: 0 outputs: 0 associated providers: 0 name:modesetting
head -n999 /etc/X11/xorg.conf /etc/X11/xorg.conf.d/*

head: cannot open '/etc/X11/xorg.conf' for reading: No such file or directory
==> /etc/X11/xorg.conf.d/00-keyboard.conf <==
# Read and parsed by systemd-localed. It's probably wise not to edit this file
# manually too freely.
Section "InputClass"
        Identifier "system-keyboard"
        MatchIsKeyboard "on"
        Option "XkbLayout" "us"
        Option "XkbModel" "pc105"
EndSection

==> /etc/X11/xorg.conf.d/11-huion-tablet.conf <==
# Huion tablets
Section "InputClass"
    Identifier "Huion class"
    MatchProduct "TABLET"
    MatchIsTablet "on"
    MatchDevicePath "/dev/input/event*"
    Driver "wacom"
EndSection

Section "InputClass"
    Identifier "Huion buttons"
    MatchProduct "TABLET"
    MatchIsKeyboard "on"
    MatchDevicePath "/dev/input/event*"
    Driver "evdev"
EndSection

Section "InputClass"
    Identifier "Huion scroll"
    MatchProduct "TABLET"
    MatchIsPointer "off"
    MatchIsKeyboard "off"
    MatchIsTouchpad "off"
    MatchIsTablet "off"
    MatchIsTouchscreen "off"
    MatchDevicePath "/dev/input/event*"
    Driver "evdev"
EndSection

==> /etc/X11/xorg.conf.d/90-mhwd.conf <==
##
## Generated by mhwd - Manjaro Hardware Detection
##
`head -n999 /usr/share/X11/xorg.conf.d/*`

==> /usr/share/X11/xorg.conf.d/10-amdgpu-nvidia-drm-outputclass.conf <==
Section "ServerLayout"
    Identifier "layout"
    Option "AllowNVIDIAGPUScreens"
EndSection

Section "OutputClass"
    Identifier "AMDgpu"
    MatchDriver "amdgpu"
    Driver "amdgpu"
EndSection

Section "OutputClass"
    Identifier "nvidia"
    MatchDriver "nvidia-drm"
    Driver "nvidia"
    Option "AllowEmptyInitialConfiguration"
    ModulePath "/usr/lib/nvidia/xorg"
    ModulePath "/usr/lib/xorg/modules"
EndSection

==> /usr/share/X11/xorg.conf.d/10-evdev.conf <==
#
# Catch-all evdev loader for udev-based systems
# We don't simply match on any device since that also adds accelerometers
# and other devices that we don't really want to use. The list below
# matches everything but joysticks.

Section "InputClass"
        Identifier "evdev pointer catchall"
        MatchIsPointer "on"
        MatchDevicePath "/dev/input/event*"
        Driver "evdev"
EndSection

Section "InputClass"
        Identifier "evdev keyboard catchall"
        MatchIsKeyboard "on"
        MatchDevicePath "/dev/input/event*"
        Driver "evdev"
EndSection

Section "InputClass"
        Identifier "evdev touchpad catchall"
        MatchIsTouchpad "on"
        MatchDevicePath "/dev/input/event*"
        Driver "evdev"
EndSection

Section "InputClass"
        Identifier "evdev tablet catchall"
        MatchIsTablet "on"
        MatchDevicePath "/dev/input/event*"
        Driver "evdev"
EndSection

Section "InputClass"
        Identifier "evdev touchscreen catchall"
        MatchIsTouchscreen "on"
        MatchDevicePath "/dev/input/event*"
        Driver "evdev"
EndSection

==> /usr/share/X11/xorg.conf.d/10-intel-nvidia-drm-outputclass.conf <==
Section "ServerLayout"
    Identifier "layout"
    Option "AllowNVIDIAGPUScreens"
EndSection

Section "OutputClass"
    Identifier "intel"
    MatchDriver "i915"
    Driver "modesetting"
EndSection

Section "OutputClass"
    Identifier "nvidia"
    MatchDriver "nvidia-drm"
    Driver "nvidia"
    Option "AllowEmptyInitialConfiguration"
    ModulePath "/usr/lib/nvidia/xorg"
    ModulePath "/usr/lib/xorg/modules"
EndSection

==> /usr/share/X11/xorg.conf.d/10-quirks.conf <==
# Collection of quirks and blacklist/whitelists for specific devices.


# Accelerometer device, posts data through ABS_X/ABS_Y, making X unusable
# http://bugs.freedesktop.org/show_bug.cgi?id=22442 
Section "InputClass"
        Identifier "ThinkPad HDAPS accelerometer blacklist"
        MatchProduct "ThinkPad HDAPS accelerometer data"
        Option "Ignore" "on"
EndSection

# https://bugzilla.redhat.com/show_bug.cgi?id=523914
# Mouse does not move in PV Xen guest
# Explicitly tell evdev to not ignore the absolute axes.
Section "InputClass"
        Identifier "Xen Virtual Pointer axis blacklist"
        MatchProduct "Xen Virtual Pointer"
        Option "IgnoreAbsoluteAxes" "off"
        Option "IgnoreRelativeAxes" "off"
EndSection

# https://bugs.freedesktop.org/show_bug.cgi?id=55867
# Bug 55867 - Doesn't know how to tag XI_TRACKBALL
Section "InputClass"
        Identifier "Tag trackballs as XI_TRACKBALL"
        MatchProduct "trackball"
        MatchDriver "evdev"
        Option "TypeName" "TRACKBALL"
EndSection

# https://bugs.freedesktop.org/show_bug.cgi?id=62831
# Bug 62831 - Mionix Naos 5000 mouse detected incorrectly
Section "InputClass"
        Identifier "Tag Mionix Naos 5000 mouse XI_MOUSE"
        MatchProduct "La-VIEW Technology Naos 5000 Mouse"
        MatchDriver "evdev"
        Option "TypeName" "MOUSE"
EndSection

==> /usr/share/X11/xorg.conf.d/40-libinput.conf <==
# Match on all types of devices but joysticks
#
# If you want to configure your devices, do not copy this file.
# Instead, use a config snippet that contains something like this:
#
# Section "InputClass"
#   Identifier "something or other"
#   MatchDriver "libinput"
#
#   MatchIsTouchpad "on"
#   ... other Match directives ...
#   Option "someoption" "value"
# EndSection
#
# This applies the option any libinput device also matched by the other
# directives. See the xorg.conf(5) man page for more info on
# matching devices.

Section "InputClass"
        Identifier "libinput pointer catchall"
        MatchIsPointer "on"
        MatchDevicePath "/dev/input/event*"
        Driver "libinput"
EndSection

Section "InputClass"
        Identifier "libinput keyboard catchall"
        MatchIsKeyboard "on"
        MatchDevicePath "/dev/input/event*"
        Driver "libinput"
EndSection

Section "InputClass"
        Identifier "libinput touchpad catchall"
        MatchIsTouchpad "on"
        MatchDevicePath "/dev/input/event*"
        Driver "libinput"
EndSection

Section "InputClass"
        Identifier "libinput touchscreen catchall"
        MatchIsTouchscreen "on"
        MatchDevicePath "/dev/input/event*"
        Driver "libinput"
EndSection

Section "InputClass"
        Identifier "libinput tablet catchall"
        MatchIsTablet "on"
        MatchDevicePath "/dev/input/event*"
        Driver "libinput"
EndSection

==> /usr/share/X11/xorg.conf.d/50-digimend.conf <==
#
# InputClass sections for some tablets supported by the DIGImend kernel
# drivers. Organized into separate InputClass sections based on (one of) the
# advertised brands. Mostly because the MatchUSBID options would become too
# long otherwise.
#
Section "InputClass"
	Identifier "Huion tablets with Wacom driver"
	MatchUSBID "5543:006e|256c:006e|256c:006d"
	MatchDevicePath "/dev/input/event*"
	MatchIsKeyboard "false"
	Driver "wacom"
EndSection

Section "InputClass"
	Identifier "Tablet low-res touch controls with Wacom driver"
	MatchUSBID "256c:*"
	MatchDevicePath "/dev/input/event*"
	MatchTag "low_res_touch"
	Driver "wacom"
	Option "Suppress" "0"
EndSection

Section "InputClass"
	Identifier "Ugee/XP-Pen tablets with Wacom driver"
	MatchUSBID "28bd:007[1458]|28bd:0094|28bd:0042|5543:004[57]|5543:0081|5543:0004|5543:3031"
	MatchDevicePath "/dev/input/event*"
	Driver "wacom"
EndSection

Section "InputClass"
	Identifier "Ugtizer tablets with Wacom driver"
	MatchUSBID "2179:0053"
	MatchDevicePath "/dev/input/event*"
	Driver "wacom"
EndSection

Section "InputClass"
	Identifier "Yiynova tablets with Wacom driver"
	MatchUSBID "5543:004d"
	MatchDevicePath "/dev/input/event*"
	Driver "wacom"
EndSection

==> /usr/share/X11/xorg.conf.d/70-wacom.conf <==
# Some of the below input classes appear 3x times, once for each of
# "tablet", "touchscreen", and "touchpad" to ensure that the Wacom
# driver is not accidentally bound to other types of hardware that
# Wacom has made which are not handled by the wacom driver (e.g the
# Wacom Bluetooth Keyboard)
#
# https://sourceforge.net/p/linuxwacom/bugs/294/

Section "InputClass"
        Identifier "Wacom USB tablet class"
        MatchUSBID "056a:*"
        MatchDevicePath "/dev/input/event*"
        MatchIsTablet "true"
        Driver "wacom"
EndSection

Section "InputClass"
        Identifier "Wacom USB touchscreen class"
        MatchUSBID "056a:*"
        MatchDevicePath "/dev/input/event*"
        MatchIsTouchscreen "true"
        Driver "wacom"
EndSection

Section "InputClass"
        Identifier "Wacom USB touchpad class"
        MatchUSBID "056a:*"
        MatchDevicePath "/dev/input/event*"
        MatchIsTouchpad "true"
        Driver "wacom"
EndSection

Section "InputClass"
	Identifier "Wacom tablet class"
	MatchProduct "Wacom|WACOM|PTK-540WL|ISD-V4"
	MatchDevicePath "/dev/input/event*"
	MatchIsTablet "true"
	Driver "wacom"
EndSection

Section "InputClass"
	Identifier "Wacom touchscreen class"
	MatchProduct "Wacom|WACOM|PTK-540WL|ISD-V4"
	MatchDevicePath "/dev/input/event*"
	MatchIsTouchscreen "true"
	Driver "wacom"
EndSection

Section "InputClass"
	Identifier "Wacom touchpad class"
	MatchProduct "Wacom|WACOM|PTK-540WL|ISD-V4"
	MatchDevicePath "/dev/input/event*"
	MatchIsTouchpad "true"
	Driver "wacom"
EndSection

# Serial Wacom devices should always be one of tablet, touchscreen, or
# touchpad so we can safely get away with just one match section in
# these cases
Section "InputClass"
        Identifier "Wacom PnP device class"
        MatchPnPID "WACf*|WCOM*|WACM*|FUJ02e5|FUJ02e7|FUJ02e9"
        MatchDevicePath "/dev/input/event*"
        Driver "wacom"
EndSection

Section "InputClass"
	Identifier "Wacom serial class"
	MatchProduct "Serial Wacom Tablet"
	Driver "wacom"
EndSection

Section "InputClass"
        Identifier "Wacom serial class identifiers"
        MatchProduct "WACf|FUJ02e5|FUJ02e7|FUJ02e9"
        Driver "wacom"
EndSection

# Hanwang tablets
Section "InputClass"
	Identifier "Hanwang class"
	MatchProduct "Hanwang"
	MatchDevicePath "/dev/input/event*"
	Driver "wacom"
EndSection

# Waltop tablets
Section "InputClass"
	Identifier "Waltop class"
	MatchProduct "WALTOP"
	MatchIsTablet "on"
	MatchDevicePath "/dev/input/event*"
	Driver "wacom"
EndSection

# N-Trig Duosense Electromagnetic Digitizer
Section "InputClass"
	Identifier "Wacom N-Trig class"
	MatchProduct "HID 1b96:0001|N-Trig Pen|N-Trig DuoSense"
	MatchDevicePath "/dev/input/event*"
	Driver "wacom"
	Option "Button2" "3"
EndSection

# Dell Canvas 27 (touch part is an Advanced Silicon, pen part a Wacom)
Section "InputClass"
        Identifier "Dell Canvas 27 Touch"
        MatchUSBID "2575:0204"
        MatchDevicePath "/dev/input/event*"
        MatchIsTouchscreen "true"
        Driver "wacom"
EndSection

# Surface Go
Section "InputClass"
        Identifier "SurfaceGo Touch"
        MatchProduct "ELAN9038:00 04F3:261A"
        MatchDevicePath "/dev/input/event*"
        Driver "wacom"
EndSection

# Nuvision Solo 10 Draw (Supports Surface Pens)
Section "InputClass"
        Identifier "Nuvision Solo 10 Draw"
        MatchProduct "04F3200A:00 04F3:22F7"
        MatchDevicePath "/dev/input/event*"
        Driver "wacom"
EndSection

Please post the latest Xorg log file from /var/log/.

There are 2, Xorg.0.log and Xorg.1.log. Which one should I post?

The latest one.

Here you go.

The problem seems to be that the modesetting Xorg driver binds to the NVIDIA GPU for some reason. A workaround could be to force the NVIDIA Xorg driver. Create /etc/X11/xorg.conf.d/90-intel-nvidia.conf:

# Adapted from https://download.nvidia.com/XFree86/Linux-x86_64/460.32.03/README/randr14.html

Section "ServerLayout"
    Identifier "layout"
    Screen 0 "intel"
    Inactive "nvidia"
    Option "AllowNVIDIAGPUScreens"
EndSection

Section "Device"
    Identifier "nvidia"
    Driver "nvidia"
    BusID "PCI:1:0:0"
EndSection

Section "Screen"
    Identifier "nvidia"
    Device "nvidia"
EndSection

Section "Device"
    Identifier "intel"
    Driver "modesetting"
    BusID "PCI:0:2:0"
EndSection

Section "Screen"
    Identifier "intel"
    Device "intel"
EndSection

and reboot, and try prime-run again.

I’m getting a black screen after doing it.

Interesting, can you remove the file and reinstall video-hybrid-intel-nvidia-prime? (sudo mhwd -f -i pci video-hybrid-intel-nvidia-prime)

I removed the file and everything is back to square one. I’ll try reinstalling the driver and let you know.

What you need to check is whether you have two “modesetting” lines in the output of xrandr --listproviders.

It’s still same. prime-run gives the same error and two “modesetting” in the output of xrandr --listproviders.

And it worked before the latest update? Which packages have been updated (grep '2021-01-19.*upgraded' /var/log/pacman.log - change the date if necessary)? Can you get the Xorg log for when only a black screen was shown?

Yes, it did work before.

grep '2021-01-20.*upgraded' /var/log/pacman.log

[2021-01-20T01:27:09+0530] [ALPM] upgraded archlinux-keyring (20201210-1 -> 20210110-1)
[2021-01-20T01:53:38+0530] [ALPM] upgraded adobe-source-code-pro-fonts (2.032ro+1.052it+1.012var-1 -> 2.038ro+1.058it+1.018var-1)
[2021-01-20T01:53:39+0530] [ALPM] upgraded tzdata (2020d-1 -> 2020f-1)
[2021-01-20T01:53:39+0530] [ALPM] upgraded iana-etc (20201012-1 -> 20201229-1)
[2021-01-20T01:53:39+0530] [ALPM] upgraded icu (67.1-1 -> 68.2-1)
[2021-01-20T01:53:39+0530] [ALPM] upgraded boost-libs (1.75.0-1 -> 1.75.0-2)
[2021-01-20T01:53:39+0530] [ALPM] upgraded libcap (2.45-2 -> 2.46-1)
[2021-01-20T01:53:39+0530] [ALPM] upgraded libgpg-error (1.39-1 -> 1.41-1)
[2021-01-20T01:53:39+0530] [ALPM] upgraded gmp (6.2.0-1 -> 6.2.1-1)
[2021-01-20T01:53:39+0530] [ALPM] upgraded ca-certificates-mozilla (3.60-1 -> 3.60.1-1)
[2021-01-20T01:53:39+0530] [ALPM] upgraded libelf (0.181-1 -> 0.182-1)
[2021-01-20T01:53:39+0530] [ALPM] upgraded kmod (27-2 -> 28-1)
[2021-01-20T01:53:39+0530] [ALPM] upgraded libpcap (1.9.1-4 -> 1.10.0-1)
[2021-01-20T01:53:39+0530] [ALPM] upgraded libpulse (14.0-1 -> 14.2-1)
[2021-01-20T01:53:39+0530] [ALPM] upgraded libepoxy (1.5.4-2 -> 1.5.5-1)
[2021-01-20T01:53:39+0530] [ALPM] upgraded libxml2 (2.9.10-7 -> 2.9.10-8)
[2021-01-20T01:53:40+0530] [ALPM] upgraded glib2 (2.66.4-1 -> 2.66.4-2)
[2021-01-20T01:53:40+0530] [ALPM] upgraded shared-mime-info (2.0+1+g6bf9e4f-2 -> 2.0+57+gc1d1c70-1)
[2021-01-20T01:53:40+0530] [ALPM] upgraded libdrm (2.4.103-2 -> 2.4.104-1)
[2021-01-20T01:53:42+0530] [ALPM] upgraded llvm-libs (11.0.0-4 -> 11.0.1-1)
[2021-01-20T01:53:42+0530] [ALPM] upgraded vulkan-icd-loader (1.2.162-1 -> 1.2.166-1)
[2021-01-20T01:53:42+0530] [ALPM] upgraded nettle (3.6-1 -> 3.7-1)
[2021-01-20T01:53:42+0530] [ALPM] upgraded harfbuzz (2.7.2-1 -> 2.7.4-1)
[2021-01-20T01:53:42+0530] [ALPM] upgraded libx11 (1.7.0-2 -> 1.7.0-3)
[2021-01-20T01:53:42+0530] [ALPM] upgraded libevdev (1.10.0-1 -> 1.10.1-1)
[2021-01-20T01:53:46+0530] [ALPM] upgraded nvidia-utils (455.45.01-2 -> 460.32.03-1)
[2021-01-20T01:53:48+0530] [ALPM] upgraded gdbm (1.18.1-3 -> 1.19-1)
[2021-01-20T01:53:50+0530] [ALPM] upgraded mesa (20.3.1-1 -> 20.3.3-1)
[2021-01-20T01:53:50+0530] [ALPM] upgraded cantarell-fonts (1:0.201-1 -> 1:0.301-1)
[2021-01-20T01:53:50+0530] [ALPM] upgraded libproxy (0.4.16-1 -> 0.4.17-1)
[2021-01-20T01:53:50+0530] [ALPM] upgraded tracker3 (3.0.2-1 -> 3.0.3-1)
[2021-01-20T01:53:50+0530] [ALPM] upgraded gtk-update-icon-cache (1:3.24.24-1 -> 1:4.0.1-2)
[2021-01-20T01:53:50+0530] [ALPM] upgraded libusb (1.0.23-3 -> 1.0.24-2)
[2021-01-20T01:53:51+0530] [ALPM] upgraded gtk3 (1:3.24.24-1 -> 1:3.24.24-2)
[2021-01-20T01:53:51+0530] [ALPM] upgraded gstreamer (1.18.2-1 -> 1.18.3-1)
[2021-01-20T01:53:51+0530] [ALPM] upgraded gst-plugins-base-libs (1.18.2-1 -> 1.18.3-1)
[2021-01-20T01:53:52+0530] [ALPM] upgraded wxgtk-common (3.0.5.1-1 -> 3.0.5.1-2)
[2021-01-20T01:53:52+0530] [ALPM] upgraded wxgtk3 (3.0.5.1-1 -> 3.0.5.1-2)
[2021-01-20T01:53:52+0530] [ALPM] upgraded openjpeg2 (2.3.1-3 -> 2.4.0-1)
[2021-01-20T01:53:53+0530] [ALPM] upgraded libibus (1.5.23+3+gaa558de8-1 -> 1.5.23+3+gaa558de8-2)
[2021-01-20T01:53:53+0530] [ALPM] upgraded sdl2 (2.0.12-3 -> 2.0.14-1)
[2021-01-20T01:53:53+0530] [ALPM] upgraded rav1e (0.3.4-1 -> 0.4.0-1)
[2021-01-20T01:53:53+0530] [ALPM] upgraded libmfx (20.5.0-1 -> 20.5.1-1)
[2021-01-20T01:53:53+0530] [ALPM] upgraded zita-resampler (1.6.2-3 -> 1.8.0-1)
[2021-01-20T01:53:54+0530] [ALPM] upgraded hwloc (2.2.0-1 -> 2.4.0-1)
[2021-01-20T01:53:55+0530] [ALPM] upgraded aegisub (3.2.2-43 -> 3.2.2-44)
[2021-01-20T01:53:55+0530] [ALPM] upgraded alsa-card-profiles (14.0-1 -> 14.2-1)
[2021-01-20T01:53:55+0530] [ALPM] upgraded archlinux-appstream-data (20201128-1 -> 20201223-1)
[2021-01-20T01:53:55+0530] [ALPM] upgraded md4c (0.4.6-1 -> 0.4.7-1)
[2021-01-20T01:54:03+0530] [ALPM] upgraded qt5-base (5.15.2-1 -> 5.15.2-2)
[2021-01-20T01:54:03+0530] [ALPM] upgraded gptfdisk (1.0.5-1 -> 1.0.6-1)
[2021-01-20T01:54:03+0530] [ALPM] upgraded ndctl (71-1 -> 71.1-1)
[2021-01-20T01:54:03+0530] [ALPM] upgraded xfsprogs (5.8.0-1 -> 5.8.0-2)
[2021-01-20T01:54:03+0530] [ALPM] upgraded gnupg (2.2.25-1 -> 2.2.26-1)
[2021-01-20T01:54:03+0530] [ALPM] upgraded gpgme (1.15.0-2 -> 1.15.1-1)
[2021-01-20T01:54:03+0530] [ALPM] upgraded nss (3.60-1 -> 3.60.1-1)
[2021-01-20T01:54:03+0530] [ALPM] upgraded solid (5.77.0-1 -> 5.78.0-1)
[2021-01-20T01:54:03+0530] [ALPM] upgraded kcoreaddons (5.77.0-1 -> 5.78.0-1)
[2021-01-20T01:54:04+0530] [ALPM] upgraded kwidgetsaddons (5.77.0-1 -> 5.78.0-1)
[2021-01-20T01:54:04+0530] [ALPM] upgraded kjobwidgets (5.77.0-1 -> 5.78.0-1)
[2021-01-20T01:54:04+0530] [ALPM] upgraded kdbusaddons (5.77.0-1 -> 5.78.0-1)
[2021-01-20T01:54:04+0530] [ALPM] upgraded kconfig (5.77.0-1 -> 5.78.0-1)
[2021-01-20T01:54:04+0530] [ALPM] upgraded kwindowsystem (5.77.0-1 -> 5.78.0-1)
[2021-01-20T01:54:04+0530] [ALPM] upgraded kcrash (5.77.0-1 -> 5.78.0-1)
[2021-01-20T01:54:04+0530] [ALPM] upgraded kglobalaccel (5.77.0-1 -> 5.78.0-1)
[2021-01-20T01:54:04+0530] [ALPM] upgraded kauth (5.77.0-1 -> 5.78.0-1)
[2021-01-20T01:54:04+0530] [ALPM] upgraded kcodecs (5.77.0-1 -> 5.78.0-1)
[2021-01-20T01:54:04+0530] [ALPM] upgraded kguiaddons (5.77.0-1 -> 5.78.0-1)
[2021-01-20T01:54:04+0530] [ALPM] upgraded ki18n (5.77.0-1 -> 5.78.0-1)
[2021-01-20T01:54:04+0530] [ALPM] upgraded kconfigwidgets (5.77.0-1 -> 5.78.0-1)
[2021-01-20T01:54:05+0530] [ALPM] upgraded kitemviews (5.77.0-1 -> 5.78.0-1)
[2021-01-20T01:54:05+0530] [ALPM] upgraded karchive (5.77.0-1 -> 5.78.0-1)
[2021-01-20T01:54:05+0530] [ALPM] upgraded kiconthemes (5.77.0-1 -> 5.78.0-1)
[2021-01-20T01:54:05+0530] [ALPM] upgraded attica (5.77.0-1 -> 5.78.0-1)
[2021-01-20T01:54:05+0530] [ALPM] upgraded kxmlgui (5.77.0-1 -> 5.78.0-1)
[2021-01-20T01:54:05+0530] [ALPM] upgraded kbookmarks (5.77.0-1 -> 5.78.0-1)
[2021-01-20T01:54:05+0530] [ALPM] upgraded gst-plugins-base (1.18.2-1 -> 1.18.3-1)
[2021-01-20T01:54:05+0530] [ALPM] upgraded knotifications (5.77.0-1 -> 5.78.0-1)
[2021-01-20T01:54:05+0530] [ALPM] upgraded kservice (5.77.0-1 -> 5.78.0-1)
[2021-01-20T01:54:05+0530] [ALPM] upgraded kwallet (5.77.0-1 -> 5.78.0-1)
[2021-01-20T01:54:05+0530] [ALPM] upgraded kcompletion (5.77.0-1 -> 5.78.0-1)
[2021-01-20T01:54:05+0530] [ALPM] upgraded sonnet (5.77.0-1 -> 5.78.0-1)
[2021-01-20T01:54:05+0530] [ALPM] upgraded ktextwidgets (5.77.0-1 -> 5.78.0-1)
[2021-01-20T01:54:05+0530] [ALPM] upgraded kded (5.77.0-1 -> 5.78.0-1)
[2021-01-20T01:54:07+0530] [ALPM] upgraded kio (5.77.0-1 -> 5.78.0-2)
[2021-01-20T01:54:08+0530] [ALPM] upgraded kparts (5.77.0-1 -> 5.78.0-1)
[2021-01-20T01:54:08+0530] [ALPM] upgraded kpty (5.77.0-1 -> 5.78.0-1)
[2021-01-20T01:54:08+0530] [ALPM] upgraded libarchive (3.5.0-1 -> 3.5.1-1)
[2021-01-20T01:54:08+0530] [ALPM] upgraded kitemmodels (5.77.0-1 -> 5.78.0-1)
[2021-01-20T01:54:08+0530] [ALPM] upgraded ark (20.12.0-1 -> 20.12.1-1)
[2021-01-20T01:54:08+0530] [ALPM] upgraded poppler (20.12.1-1 -> 21.01.0-1)
[2021-01-20T01:54:08+0530] [ALPM] upgraded poppler-qt5 (20.12.1-1 -> 21.01.0-1)
[2021-01-20T01:54:08+0530] [ALPM] upgraded kfilemetadata (5.77.0-1 -> 5.78.0-1)
[2021-01-20T01:54:08+0530] [ALPM] upgraded kidletime (5.77.0-1 -> 5.78.0-1)
[2021-01-20T01:54:08+0530] [ALPM] upgraded baloo (5.77.0-1 -> 5.78.0-1)
[2021-01-20T01:54:08+0530] [ALPM] upgraded baloo-widgets (20.12.0-1 -> 20.12.1-1)
[2021-01-20T01:54:08+0530] [ALPM] upgraded libical (3.0.8-2 -> 3.0.8-3)
[2021-01-20T01:54:08+0530] [ALPM] upgraded bluez-qt (5.77.0-1 -> 5.78.0-1)
[2021-01-20T01:54:08+0530] [ALPM] upgraded kpackage (5.77.0-1 -> 5.78.0-1)
[2021-01-20T01:54:08+0530] [ALPM] upgraded kdeclarative (5.77.0-1 -> 5.78.0-1)
[2021-01-20T01:54:08+0530] [ALPM] upgraded bluedevil (1:5.20.4-1 -> 1:5.20.5-1)
[2021-01-20T01:54:12+0530] [ALPM] upgraded boost (1.75.0-1 -> 1.75.0-2)
[2021-01-20T01:54:12+0530] [ALPM] upgraded botan (2.17.2-2 -> 2.17.3-1)
[2021-01-20T01:54:12+0530] [ALPM] upgraded knewstuff (5.77.0-2 -> 5.78.0-1)
[2021-01-20T01:54:16+0530] [ALPM] upgraded frameworkintegration (5.77.0-1 -> 5.78.0-1)
[2021-01-20T01:54:16+0530] [ALPM] upgraded kdecoration (5.20.4-1 -> 5.20.5-1)
[2021-01-20T01:54:20+0530] [ALPM] upgraded breeze-icons (5.77.0-1 -> 5.78.0-1)
[2021-01-20T01:54:20+0530] [ALPM] upgraded kwayland (5.77.0-1 -> 5.78.0-1)
[2021-01-20T01:54:20+0530] [ALPM] upgraded breeze (5.20.4-1 -> 5.20.5-1)
[2021-01-20T01:54:21+0530] [ALPM] upgraded fluidsynth (2.1.5-2 -> 2.1.6-1)
[2021-01-20T01:54:22+0530] [ALPM] upgraded calf (0.90.3-2 -> 0.90.3-4)
[2021-01-20T01:54:22+0530] [ALPM] upgraded rhash (1.4.0-1 -> 1.4.1-1)
[2021-01-20T01:54:23+0530] [ALPM] upgraded cmake (3.19.2-1 -> 3.19.3-1)
[2021-01-20T01:54:23+0530] [ALPM] upgraded confuse (3.3-2 -> 3.3-3)
[2021-01-20T01:54:23+0530] [ALPM] upgraded cronie (1.5.5-1 -> 1.5.5-2)
[2021-01-20T01:54:24+0530] [ALPM] upgraded crypto++ (8.2.0-3 -> 8.4.0-1)
[2021-01-20T01:54:24+0530] [ALPM] upgraded qpdf (10.0.4-1 -> 10.1.0-1)
[2021-01-20T01:54:24+0530] [ALPM] upgraded imagemagick (7.0.10.52-1 -> 7.0.10.58-1)
[2021-01-20T01:54:24+0530] [ALPM] upgraded cups-filters (1.28.6-1 -> 1.28.7-1)
[2021-01-20T01:54:24+0530] [ALPM] upgraded cython (0.29.21-3 -> 0.29.21-4)
[2021-01-20T01:54:24+0530] [ALPM] upgraded pugixml (1.11.3-1 -> 1.11.4-1)
[2021-01-20T01:54:25+0530] [ALPM] upgraded openexr (2.5.3-5 -> 2.5.4-1)
[2021-01-20T01:54:25+0530] [ALPM] upgraded raptor (2.0.15-14 -> 2.0.15-15)
[2021-01-20T01:54:25+0530] [ALPM] upgraded flickcurl (1.26-9 -> 1.26-10)
[2021-01-20T01:54:26+0530] [ALPM] upgraded graphicsmagick (1.3.35-2 -> 1.3.36-1)
[2021-01-20T01:54:26+0530] [ALPM] upgraded openmp (11.0.0-1 -> 11.0.1-1)
[2021-01-20T01:54:26+0530] [ALPM] upgraded libavif (0.8.2-1 -> 0.8.4-1)
[2021-01-20T01:54:29+0530] [ALPM] upgraded opencv (4.5.0-3 -> 4.5.1-1)
[2021-01-20T01:54:29+0530] [ALPM] upgraded darktable (2:3.2.1-2 -> 2:3.4.0-2)
[2021-01-20T01:54:29+0530] [ALPM] upgraded dhcpcd (9.3.4-1 -> 9.4.0-1)
[2021-01-20T01:54:29+0530] [ALPM] upgraded kdnssd (5.77.0-1 -> 5.78.0-1)
[2021-01-20T01:54:32+0530] [ALPM] upgraded smbclient (4.13.3-1 -> 4.13.3-2)
[2021-01-20T01:54:32+0530] [ALPM] upgraded syntax-highlighting (5.77.0-1 -> 5.78.0-1)
[2021-01-20T01:54:32+0530] [ALPM] upgraded kdsoap (1.9.1-1 -> 1.10.0-1)
[2021-01-20T01:54:33+0530] [ALPM] upgraded kio-extras (20.12.0-1 -> 20.12.1-1)
[2021-01-20T01:54:33+0530] [ALPM] upgraded kcmutils (5.77.0-1 -> 5.78.0-1)
[2021-01-20T01:54:33+0530] [ALPM] upgraded kinit (5.77.0-1 -> 5.78.0-1)
[2021-01-20T01:54:33+0530] [ALPM] upgraded kactivities (5.77.0-1 -> 5.78.0-1)
[2021-01-20T01:54:33+0530] [ALPM] upgraded dolphin (20.12.0-2 -> 20.12.1-1)
[2021-01-20T01:54:33+0530] [ALPM] upgraded dolphin-plugins (20.12.0-1 -> 20.12.1-1)
[2021-01-20T01:54:33+0530] [ALPM] upgraded doxygen (1.8.20-1 -> 1.9.1-1)
[2021-01-20T01:54:38+0530] [ALPM] upgraded electron (11.1.0-2 -> 11.2.0-1)
[2021-01-20T01:54:42+0530] [ALPM] upgraded electron9 (9.4.0-2 -> 9.4.1-1)
[2021-01-20T01:54:42+0530] [ALPM] upgraded libmicrohttpd (0.9.71-1 -> 0.9.72-1)
[2021-01-20T01:54:42+0530] [ALPM] upgraded elfutils (0.181-1 -> 0.182-1)
[2021-01-20T01:54:42+0530] [ALPM] upgraded enchant (2.2.12-1 -> 2.2.13-2)
[2021-01-20T01:54:42+0530] [ALPM] upgraded libphonenumber (8.12.14-2 -> 8.12.14-3)
[2021-01-20T01:54:43+0530] [ALPM] upgraded gcr (3.38-1 -> 3.38.1-1)
[2021-01-20T01:54:43+0530] [ALPM] upgraded harfbuzz-icu (2.7.2-1 -> 2.7.4-1)
[2021-01-20T01:54:45+0530] [ALPM] upgraded webkit2gtk (2.30.4-1 -> 2.30.4-3)
[2021-01-20T01:54:46+0530] [ALPM] upgraded evolution-data-server (3.38.2-1 -> 3.38.3-1)
[2021-01-20T01:54:46+0530] [ALPM] upgraded extra-cmake-modules (5.77.0-1 -> 5.78.0-1)
[2021-01-20T01:54:46+0530] [ALPM] upgraded gst-libav (1.18.2-1 -> 1.18.3-1)
[2021-01-20T01:54:46+0530] [ALPM] upgraded faudio (20.12-1 -> 21.01-1)
[2021-01-20T01:54:46+0530] [ALPM] upgraded ffmpegthumbs (20.12.0-1 -> 20.12.1-1)
[2021-01-20T01:54:46+0530] [ALPM] upgraded filelight (20.12.0-1 -> 20.12.1-1)
[2021-01-20T01:54:46+0530] [ALPM] upgraded python-urllib3 (1.25.10-4 -> 1.26.1-1)
[2021-01-20T01:54:46+0530] [ALPM] upgraded python-packaging (20.7-1 -> 20.8-2)
[2021-01-20T01:54:46+0530] [ALPM] upgraded python-setuptools (1:51.0.0-1 -> 1:51.1.2-1)
[2021-01-20T01:54:46+0530] [ALPM] upgraded pipewire (0.3.18-1 -> 0.3.19-1)
[2021-01-20T01:54:46+0530] [ALPM] upgraded kirigami2 (5.77.0-1 -> 5.78.0-1)
[2021-01-20T01:54:46+0530] [ALPM] upgraded plasma-framework (5.77.0-2 -> 5.78.0-1)
[2021-01-20T01:54:46+0530] [ALPM] upgraded xdg-desktop-portal-kde (5.20.4-1 -> 5.20.5-1)
[2021-01-20T01:54:46+0530] [ALPM] upgraded libmm-glib (1.14.8-1 -> 1.14.10-1)
[2021-01-20T01:54:46+0530] [ALPM] upgraded gnome-desktop (1:3.38.2-1 -> 1:3.38.3-1)
[2021-01-20T01:54:47+0530] [ALPM] upgraded flatpak (1.9.2-1 -> 1.10.0-1)
[2021-01-20T01:54:47+0530] [ALPM] upgraded git (2.29.2-1 -> 2.30.0-1)
[2021-01-20T01:54:47+0530] [ALPM] upgraded gjs (2:1.66.1-1 -> 2:1.66.2-1)
[2021-01-20T01:54:47+0530] [ALPM] upgraded glib2-docs (2.66.4-1 -> 2.66.4-2)
[2021-01-20T01:54:52+0530] [ALPM] upgraded glslang (11.0.0-1 -> 11.1.0-1)
[2021-01-20T01:54:54+0530] [ALPM] upgraded gnome-session (3.38.0-1 -> 3.38.0+14+g87d92fec-1.0)
[2021-01-20T01:54:54+0530] [ALPM] upgraded libnm (1.26.4-1 -> 1.28.1dev+7+g3f5df3cdc6-1)
[2021-01-20T01:54:54+0530] [ALPM] upgraded pulseaudio (14.0-1 -> 14.2-1)
[2021-01-20T01:54:55+0530] [ALPM] upgraded mutter (3.38.2+4+g00e247ed7-1 -> 3.38.3-1)
[2021-01-20T01:54:55+0530] [ALPM] upgraded gst-plugin-pipewire (0.3.18-1 -> 0.3.19-1)
[2021-01-20T01:54:55+0530] [ALPM] upgraded pulseaudio-bluetooth (14.0-1 -> 14.2-1)
[2021-01-20T01:54:55+0530] [ALPM] upgraded mobile-broadband-provider-info (20190618-2 -> 20201225-1)
[2021-01-20T01:54:55+0530] [ALPM] upgraded gnome-shell (1:3.38.2+17+gf63812b0d-1 -> 1:3.38.3-1)
[2021-01-20T01:54:55+0530] [ALPM] upgraded gnustep-base (1.27.0-1 -> 1.27.0-2)
[2021-01-20T01:54:55+0530] [ALPM] upgraded gssproxy (0.8.3-1 -> 0.8.4-1)
[2021-01-20T01:54:55+0530] [ALPM] upgraded gst-plugin-gtk (1.18.2-1 -> 1.18.3-1)
[2021-01-20T01:54:55+0530] [ALPM] upgraded gst-plugins-bad-libs (1.18.2-1 -> 1.18.3-1)
[2021-01-20T01:54:55+0530] [ALPM] upgraded wavpack (5.3.0-1 -> 5.3.0-2)
[2021-01-20T01:54:56+0530] [ALPM] upgraded gst-plugins-good (1.18.2-1 -> 1.18.3-1)
[2021-01-20T01:54:56+0530] [ALPM] upgraded serd (0.30.6-1 -> 0.30.8-1)
[2021-01-20T01:54:56+0530] [ALPM] upgraded sord (0.16.6-1 -> 0.16.8-1)
[2021-01-20T01:54:56+0530] [ALPM] upgraded sratom (0.6.6-1 -> 0.6.8-1)
[2021-01-20T01:54:56+0530] [ALPM] upgraded lilv (0.24.10-3 -> 0.24.12-1)
[2021-01-20T01:54:56+0530] [ALPM] upgraded gst-plugins-bad (1.18.2-1 -> 1.18.3-1)
[2021-01-20T01:54:56+0530] [ALPM] upgraded gst-plugins-ugly (1.18.2-1 -> 1.18.3-1)
[2021-01-20T01:54:56+0530] [ALPM] upgraded psmisc (23.3-2 -> 23.3-4)
[2021-01-20T01:54:56+0530] [ALPM] upgraded gvfs (1.46.1-1 -> 1.46.2-1)
[2021-01-20T01:54:56+0530] [ALPM] upgraded gvfs-afc (1.46.1-1 -> 1.46.2-1)
[2021-01-20T01:54:56+0530] [ALPM] upgraded gvfs-gphoto2 (1.46.1-1 -> 1.46.2-1)
[2021-01-20T01:54:57+0530] [ALPM] upgraded gvfs-mtp (1.46.1-1 -> 1.46.2-1)
[2021-01-20T01:54:57+0530] [ALPM] upgraded gvfs-nfs (1.46.1-1 -> 1.46.2-1)
[2021-01-20T01:54:57+0530] [ALPM] upgraded gvfs-smb (1.46.1-1 -> 1.46.2-1)
[2021-01-20T01:54:57+0530] [ALPM] upgraded libkipi (20.12.0-1 -> 20.12.1-1)
[2021-01-20T01:54:57+0530] [ALPM] upgraded libkdcraw (20.12.0-1 -> 20.12.1-1)
[2021-01-20T01:54:57+0530] [ALPM] upgraded signon-kwallet-extension (20.12.0-1 -> 20.12.1-1)
[2021-01-20T01:54:57+0530] [ALPM] upgraded qt5-location (5.15.2-1 -> 5.15.2-2)
[2021-01-20T01:54:58+0530] [ALPM] upgraded noto-fonts (20201206-1 -> 20201226-1)
[2021-01-20T01:54:59+0530] [ALPM] upgraded qt5-webengine (5.15.2-2 -> 5.15.2-3)
[2021-01-20T01:55:00+0530] [ALPM] upgraded kaccounts-integration (20.12.0-1 -> 20.12.1-1)
[2021-01-20T01:55:00+0530] [ALPM] upgraded purpose (5.77.0-1 -> 5.78.0-1)
[2021-01-20T01:55:01+0530] [ALPM] upgraded gwenview (20.12.0-1 -> 20.12.1-1)
[2021-01-20T01:55:01+0530] [ALPM] upgraded haveged (1.9.13-1 -> 1.9.14-1)
[2021-01-20T01:55:01+0530] [ALPM] upgraded hexchat (2.14.3-5 -> 2.14.3-6)
[2021-01-20T01:55:01+0530] [ALPM] upgraded htop (3.0.3-1 -> 3.0.5-1)
[2021-01-20T01:55:01+0530] [ALPM] upgraded ibus (1.5.23+3+gaa558de8-1 -> 1.5.23+3+gaa558de8-2)
[2021-01-20T01:55:01+0530] [ALPM] upgraded libcdr (0.1.6-2 -> 0.1.6-3)
[2021-01-20T01:55:02+0530] [ALPM] upgraded libmagick6 (6.9.11.52-1 -> 6.9.11.56-1)
[2021-01-20T01:55:07+0530] [ALPM] upgraded libvisio (0.1.7-3 -> 0.1.7-4)
[2021-01-20T01:55:07+0530] [ALPM] upgraded poppler-glib (20.12.1-1 -> 21.01.0-1)
[2021-01-20T01:55:08+0530] [ALPM] upgraded inkscape (1.0.1-3 -> 1.0.1-4)
[2021-01-20T01:55:10+0530] [ALPM] upgraded intel-gmmlib (20.3.3-1 -> 20.4.1-1)
[2021-01-20T01:55:10+0530] [ALPM] upgraded intel-media-driver (20.4.3-1 -> 20.4.5-1)
[2021-01-20T01:55:10+0530] [ALPM] upgraded intel-media-sdk (20.5.0-1 -> 20.5.1-1)
[2021-01-20T01:55:11+0530] [ALPM] upgraded inxi (3.2.01+1-2 -> 3.2.02.2-1)
[2021-01-20T01:55:11+0530] [ALPM] upgraded iproute2 (5.9.0-1 -> 5.10.0-2)
[2021-01-20T01:55:14+0530] [ALPM] upgraded jre-openjdk-headless (14.0.2.u12-1 -> 15.0.1.u9-1)
[2021-01-20T01:55:18+0530] [ALPM] upgraded jre-openjdk (14.0.2.u12-1 -> 15.0.1.u9-1)
[2021-01-20T01:55:19+0530] [ALPM] upgraded jdk-openjdk (14.0.2.u12-1 -> 15.0.1.u9-1)
[2021-01-20T01:55:21+0530] [ALPM] upgraded jre8-openjdk-headless (8.u265-1 -> 8.u275-1)
[2021-01-20T01:55:21+0530] [ALPM] upgraded jre8-openjdk (8.u265-1 -> 8.u275-1)
[2021-01-20T01:55:22+0530] [ALPM] upgraded jsmol (14.31.20-1 -> 14.31.24-1)
[2021-01-20T01:55:23+0530] [ALPM] upgraded python-pygments (2.7.3-1 -> 2.7.4-1)
[2021-01-20T01:55:24+0530] [ALPM] upgraded python-prompt_toolkit (3.0.8-3 -> 3.0.10-1)
[2021-01-20T01:55:24+0530] [ALPM] upgraded python-ptyprocess (0.6.0-6 -> 0.7.0-1)
[2021-01-20T01:55:24+0530] [ALPM] upgraded python-ipykernel (5.3.4-3 -> 5.4.2-1)
[2021-01-20T01:55:24+0530] [ALPM] upgraded python-terminado (0.9.1-3 -> 0.9.2-1)
[2021-01-20T01:55:24+0530] [ALPM] upgraded jupyter-notebook (6.1.5-1 -> 6.1.6-1)
[2021-01-20T01:55:24+0530] [ALPM] upgraded python-ipywidgets (7.5.1-6 -> 7.6.2-1)
[2021-01-20T01:55:24+0530] [ALPM] upgraded jupyter-nbconvert (5.6.1-3 -> 6.0.7-2)
[2021-01-20T01:55:24+0530] [ALPM] upgraded kaccounts-providers (20.12.0-1 -> 20.12.1-1)
[2021-01-20T01:55:24+0530] [ALPM] upgraded kactivities-stats (5.77.0-1 -> 5.78.0-1)
[2021-01-20T01:55:24+0530] [ALPM] upgraded kactivitymanagerd (5.20.4-1 -> 5.20.5-1)
[2021-01-20T01:55:24+0530] [ALPM] upgraded kamera (20.12.0-1 -> 20.12.1-1)
[2021-01-20T01:55:25+0530] [ALPM] upgraded ktexteditor (5.77.0-1 -> 5.78.0-1)
[2021-01-20T01:55:25+0530] [ALPM] upgraded threadweaver (5.77.0-1 -> 5.78.0-1)
[2021-01-20T01:55:25+0530] [ALPM] upgraded kate (20.12.0-1 -> 20.12.1-1)
[2021-01-20T01:55:31+0530] [ALPM] upgraded kcalc (20.12.0-1 -> 20.12.1-1)
[2021-01-20T01:55:31+0530] [ALPM] upgraded kcalendarcore (5.77.0-1 -> 5.78.0-1)
[2021-01-20T01:55:31+0530] [ALPM] upgraded kcontacts (1:5.77.0-1 -> 1:5.78.0-1)
[2021-01-20T01:55:31+0530] [ALPM] upgraded kdesu (5.77.0-1 -> 5.78.0-1)
[2021-01-20T01:55:31+0530] [ALPM] upgraded kde-cli-tools (5.20.4-1 -> 5.20.5-1)
[2021-01-20T01:55:31+0530] [ALPM] upgraded kde-gtk-config (5.20.4-1 -> 5.20.5-2)
[2021-01-20T01:55:31+0530] [ALPM] upgraded kpeople (5.77.0-1 -> 5.78.0-1)
[2021-01-20T01:55:32+0530] [ALPM] upgraded kdeconnect (20.12.0-2 -> 20.12.1-1)
[2021-01-20T01:55:32+0530] [ALPM] upgraded libkexiv2 (20.12.0-1 -> 20.12.1-1)
[2021-01-20T01:55:32+0530] [ALPM] upgraded kdegraphics-thumbnailers (20.12.0-1 -> 20.12.1-1)
[2021-01-20T01:55:32+0530] [ALPM] upgraded kunitconversion (5.77.0-1 -> 5.78.0-1)
[2021-01-20T01:55:32+0530] [ALPM] upgraded kemoticons (5.77.0-1 -> 5.78.0-1)
[2021-01-20T01:55:33+0530] [ALPM] upgraded kdelibs4support (5.77.0-1 -> 5.78.0-1)
[2021-01-20T01:55:33+0530] [ALPM] upgraded kdenetwork-filesharing (20.12.0-1 -> 20.12.1-1)
[2021-01-20T01:55:33+0530] [ALPM] upgraded knotifyconfig (5.77.0-1 -> 5.78.0-1)
[2021-01-20T01:55:33+0530] [ALPM] upgraded libksysguard (5.20.4-1 -> 5.20.5-1)
[2021-01-20T01:55:33+0530] [ALPM] upgraded libqalculate (3.15.0-1 -> 3.16.1-1)
[2021-01-20T01:55:33+0530] [ALPM] upgraded kholidays (1:5.77.0-1 -> 1:5.78.0-1)
[2021-01-20T01:55:33+0530] [ALPM] upgraded krunner (5.77.0-1 -> 5.78.0-1)
[2021-01-20T01:55:33+0530] [ALPM] upgraded milou (5.20.4-1 -> 5.20.5-1)
[2021-01-20T01:55:33+0530] [ALPM] upgraded prison (5.77.0-1 -> 5.78.0-1)
[2021-01-20T01:55:33+0530] [ALPM] upgraded kscreenlocker (5.20.4-1 -> 5.20.5-1)
[2021-01-20T01:55:33+0530] [ALPM] upgraded kwayland-server (5.20.4-1 -> 5.20.5-1)
[2021-01-20T01:55:34+0530] [ALPM] upgraded kwin (5.20.4-1 -> 5.20.5-1)
[2021-01-20T01:55:34+0530] [ALPM] upgraded qqc2-desktop-style (5.77.0-1 -> 5.78.0-1)
[2021-01-20T01:55:34+0530] [ALPM] upgraded plasma-integration (5.20.4-1 -> 5.20.5-1)
[2021-01-20T01:55:34+0530] [ALPM] upgraded libkscreen (5.20.4-1 -> 5.20.5-1)
[2021-01-20T01:55:34+0530] [ALPM] upgraded kquickcharts (5.77.0-1 -> 5.78.0-1)
[2021-01-20T01:55:36+0530] [ALPM] upgraded plasma-workspace (5.20.4-1 -> 5.20.5-2)
[2021-01-20T01:55:37+0530] [ALPM] upgraded kdeplasma-addons (5.20.4-1 -> 5.20.5-1)
[2021-01-20T01:55:37+0530] [ALPM] upgraded kdialog (20.12.0-1 -> 20.12.1-1)
[2021-01-20T01:55:37+0530] [ALPM] upgraded kdoctools (5.77.0-1 -> 5.78.0-1)
[2021-01-20T01:55:37+0530] [ALPM] upgraded keditbookmarks (20.12.0-1 -> 20.12.1-1)
[2021-01-20T01:55:37+0530] [ALPM] upgraded kfind (20.12.0-1 -> 20.12.1-1)
[2021-01-20T01:55:37+0530] [ALPM] upgraded kgamma5 (5.20.4-1 -> 5.20.5-1)
[2021-01-20T01:55:37+0530] [ALPM] upgraded qgpgme (1.15.0-2 -> 1.15.1-1)
[2021-01-20T01:55:37+0530] [ALPM] upgraded kget (20.12.0-1 -> 20.12.1-1)
[2021-01-20T01:55:37+0530] [ALPM] upgraded kjs (5.77.0-1 -> 5.78.0-1)
[2021-01-20T01:55:38+0530] [ALPM] upgraded khtml (5.77.0-1 -> 5.78.0-1)
[2021-01-20T01:55:38+0530] [ALPM] upgraded khelpcenter (20.12.0-1 -> 20.12.1-1)
[2021-01-20T01:55:38+0530] [ALPM] upgraded khotkeys (5.20.4-1 -> 5.20.5-1)
[2021-01-20T01:55:38+0530] [ALPM] upgraded kimageformats (5.77.0-1 -> 5.78.0-1)
[2021-01-20T01:55:38+0530] [ALPM] upgraded systemsettings (5.20.4-1 -> 5.20.5-1)
[2021-01-20T01:55:38+0530] [ALPM] upgraded kinfocenter (5.20.4-1 -> 5.20.5-1)
[2021-01-20T01:55:38+0530] [ALPM] upgraded kjsembed (5.77.0-1 -> 5.78.0-1)
[2021-01-20T01:55:38+0530] [ALPM] upgraded kmenuedit (5.20.4-1 -> 5.20.5-1)
[2021-01-20T01:55:38+0530] [ALPM] upgraded kmime (20.12.0-1 -> 20.12.1-1)
[2021-01-20T01:55:38+0530] [ALPM] upgraded polkit-kde-agent (5.20.4-1 -> 5.20.5-1)
[2021-01-20T01:55:38+0530] [ALPM] upgraded ksysguard (5.20.4-1 -> 5.20.5-1)
[2021-01-20T01:55:40+0530] [ALPM] upgraded plasma-desktop (5.20.4-2 -> 5.20.5-2)
[2021-01-20T01:55:40+0530] [ALPM] upgraded konsole (20.12.0-1 -> 20.12.1-1)
[2021-01-20T01:55:41+0530] [ALPM] upgraded smartmontools (7.1-4 -> 7.2-1)
[2021-01-20T01:55:41+0530] [ALPM] upgraded kpmcore (20.12.0-1 -> 20.12.1-1)
[2021-01-20T01:55:41+0530] [ALPM] upgraded kross (5.77.0-1 -> 5.78.0-1)
[2021-01-20T01:55:41+0530] [ALPM] upgraded kscreen (5.20.4-1 -> 5.20.5-1)
[2021-01-20T01:55:41+0530] [ALPM] upgraded ksshaskpass (5.20.4-1 -> 5.20.5-1)
[2021-01-20T01:55:41+0530] [ALPM] upgraded ksystemlog (20.12.0-1 -> 20.12.1-1)
[2021-01-20T01:55:41+0530] [ALPM] upgraded kwallet-pam (5.20.4-1 -> 5.20.5-1)
[2021-01-20T01:55:41+0530] [ALPM] upgraded kwalletmanager (20.12.0-1 -> 20.12.1-1)
[2021-01-20T01:55:41+0530] [ALPM] upgraded kwayland-integration (5.20.4-1 -> 5.20.5-1)
[2021-01-20T01:55:41+0530] [ALPM] upgraded kwrited (5.20.4-1 -> 5.20.5-1)
[2021-01-20T01:55:41+0530] [ALPM] upgraded lib32-krb5 (1.18.2-1 -> 1.18.3-1)
[2021-01-20T01:55:41+0530] [ALPM] upgraded lib32-libcap (2.45-1 -> 2.46-1)
[2021-01-20T01:55:41+0530] [ALPM] upgraded lib32-zstd (1.4.5-1 -> 1.4.8-1)
[2021-01-20T01:55:41+0530] [ALPM] upgraded lib32-libdrm (2.4.103-1 -> 2.4.104-1)
[2021-01-20T01:55:42+0530] [ALPM] upgraded lib32-icu (67.1-1 -> 68.2-1)
[2021-01-20T01:55:42+0530] [ALPM] upgraded lib32-libxml2 (2.9.10-2 -> 2.9.10-3)
[2021-01-20T01:55:43+0530] [ALPM] upgraded lib32-llvm-libs (11.0.0-2 -> 11.0.1-1)
[2021-01-20T01:55:44+0530] [ALPM] upgraded lib32-mesa (20.3.1-1 -> 20.3.3-1)
[2021-01-20T01:55:44+0530] [ALPM] upgraded perl-file-listing (6.11-1 -> 6.14-1)
[2021-01-20T01:55:44+0530] [ALPM] upgraded perl-http-message (6.26-1 -> 6.27-1)
[2021-01-20T01:55:44+0530] [ALPM] upgraded perl-http-cookies (6.09-1 -> 6.10-1)
[2021-01-20T01:55:44+0530] [ALPM] upgraded perl-net-http (6.19-4 -> 6.20-1)
[2021-01-20T01:55:44+0530] [ALPM] upgraded perl-libwww (6.50-1 -> 6.52-1)
[2021-01-20T01:55:44+0530] [ALPM] upgraded mhwd-nvidia (455.45.01-3 -> 460.32.03-1)
[2021-01-20T01:55:44+0530] [ALPM] upgraded mhwd-nvidia-390xx (390.138-1 -> 390.141-1)
[2021-01-20T01:55:50+0530] [ALPM] upgraded lib32-nvidia-utils (455.45.01-3 -> 460.32.03-1)
[2021-01-20T01:55:50+0530] [ALPM] upgraded lib32-faudio (20.12-1 -> 21.01-1)
[2021-01-20T01:55:50+0530] [ALPM] upgraded lib32-libpulse (14.0-1 -> 14.2-1)
[2021-01-20T01:55:50+0530] [ALPM] upgraded lib32-glib2 (2.66.4-1 -> 2.66.4-2)
[2021-01-20T01:55:50+0530] [ALPM] upgraded lib32-fluidsynth (2.1.5-1 -> 2.1.6-1)
[2021-01-20T01:55:50+0530] [ALPM] upgraded lib32-gmp (6.2.0-1 -> 6.2.1-1)
[2021-01-20T01:55:50+0530] [ALPM] upgraded lib32-harfbuzz (2.7.2-1 -> 2.7.4-1)
[2021-01-20T01:55:50+0530] [ALPM] upgraded lib32-libepoxy (1.5.4-1 -> 1.5.5-1)
[2021-01-20T01:55:50+0530] [ALPM] upgraded lib32-libpcap (1.9.1-2 -> 1.10.0-1)
[2021-01-20T01:55:50+0530] [ALPM] upgraded lib32-libtiff (4.1.0-1 -> 4.2.0-1)
[2021-01-20T01:55:50+0530] [ALPM] upgraded lib32-libusb (1.0.23-2 -> 1.0.24-1)
[2021-01-20T01:55:50+0530] [ALPM] upgraded lib32-libva-mesa-driver (20.3.1-1 -> 20.3.3-1)
[2021-01-20T01:55:50+0530] [ALPM] upgraded lib32-lz4 (1.9.2-1 -> 1.9.3-1)
[2021-01-20T01:55:50+0530] [ALPM] upgraded lib32-nss (3.60-1 -> 3.60.1-1)
[2021-01-20T01:55:50+0530] [ALPM] upgraded lib32-vulkan-icd-loader (1.2.162-1 -> 1.2.166-1)
[2021-01-20T01:55:50+0530] [ALPM] upgraded libe-book (0.1.3-7 -> 0.1.3-8)
[2021-01-20T01:55:50+0530] [ALPM] upgraded libebml (1.4.0-1 -> 1.4.1-1)
[2021-01-20T01:55:50+0530] [ALPM] upgraded libgexiv2 (0.12.1-3 -> 0.12.1-4)
[2021-01-20T01:55:50+0530] [ALPM] upgraded libgiac (1.6.0.41-1 -> 1.6.0.47-1)
[2021-01-20T01:55:50+0530] [ALPM] upgraded libhandy (1.0.2-1 -> 1.0.3-1)
[2021-01-20T01:55:50+0530] [ALPM] upgraded libksane (20.12.0-1 -> 20.12.1-1)
[2021-01-20T01:55:50+0530] [ALPM] upgraded libktorrent (20.12.0-1 -> 20.12.1-1)
[2021-01-20T01:55:50+0530] [ALPM] upgraded libmaxminddb (1.4.3-1 -> 1.5.0-1)
[2021-01-20T01:55:50+0530] [ALPM] upgraded libmpc (1.1.0-2 -> 1.2.1-1)
[2021-01-20T01:55:50+0530] [ALPM] upgraded libmspub (0.1.4-8 -> 0.1.4-9)
[2021-01-20T01:55:51+0530] [ALPM] upgraded libqmi (1.26.6-1 -> 1.26.8-1)
[2021-01-20T01:55:51+0530] [ALPM] upgraded libqxp (0.0.2-4 -> 0.0.2-5)
[2021-01-20T01:55:51+0530] [ALPM] upgraded libzmf (0.0.2-8 -> 0.0.2-9)
[2021-01-20T01:56:07+0530] [ALPM] upgraded libreoffice-fresh (7.0.4-1 -> 7.0.4-3)
[2021-01-20T01:56:07+0530] [ALPM] upgraded libsynctex (2020.54586-7 -> 2020.54586-9)
[2021-01-20T01:56:23+0530] [ALPM] upgraded linux-firmware (20201218.r1803.646f159-1 -> 20210109.r1812.d528862-1)
[2021-01-20T01:56:23+0530] [ALPM] upgraded mkinitcpio-busybox (1.31.1-2 -> 1.32.1-2)
[2021-01-20T01:56:26+0530] [ALPM] upgraded linux510 (5.10.2-2 -> 5.10.7-3)
[2021-01-20T01:56:35+0530] [ALPM] upgraded linux510-headers (5.10.2-2 -> 5.10.7-3)
[2021-01-20T01:56:35+0530] [ALPM] upgraded linux510-nvidia (455.45.01-10.0 -> 460.32.03-6)
[2021-01-20T01:56:48+0530] [ALPM] upgraded linux510-r8168 (8.048.03-8 -> 8.048.03-19)
[2021-01-20T01:57:00+0530] [ALPM] upgraded logrotate (3.17.0-1 -> 3.18.0-1)
[2021-01-20T01:57:00+0530] [ALPM] upgraded lv2 (1.18.0-1 -> 1.18.2-1)
[2021-01-20T01:57:01+0530] [ALPM] upgraded man-pages (5.09-2 -> 5.10-1)
[2021-01-20T01:57:01+0530] [ALPM] upgraded manjaro-alsa (20200126-1 -> 20210109-1)
[2021-01-20T01:57:01+0530] [ALPM] upgraded pulseaudio-jack (14.0-1 -> 14.2-1)
[2021-01-20T01:57:01+0530] [ALPM] upgraded pulseaudio-zeroconf (14.0-1 -> 14.2-1)
[2021-01-20T01:57:01+0530] [ALPM] upgraded pulseaudio-lirc (14.0-1 -> 14.2-1)
[2021-01-20T01:57:01+0530] [ALPM] upgraded python-pyqt5 (5.15.2-2 -> 5.15.2-3)
[2021-01-20T01:57:01+0530] [ALPM] upgraded pulseaudio-equalizer (14.0-1 -> 14.2-1)
[2021-01-20T01:57:01+0530] [ALPM] upgraded manjaro-pulse (20200126-1 -> 20210109-1)
[2021-01-20T01:57:01+0530] [ALPM] upgraded manjaro-settings-manager (0.5.6-10 -> 0.5.6-11)
[2021-01-20T01:57:01+0530] [ALPM] upgraded manjaro-settings-manager-kcm (0.5.6-10 -> 0.5.6-11)
[2021-01-20T01:57:01+0530] [ALPM] upgraded manjaro-settings-manager-knotifier (0.5.6-10 -> 0.5.6-11)
[2021-01-20T01:57:01+0530] [ALPM] upgraded meson (0.56.0-3 -> 0.56.2-1)
[2021-01-20T01:57:01+0530] [ALPM] upgraded modemmanager (1.14.8-1 -> 1.14.10-1)
[2021-01-20T01:57:01+0530] [ALPM] upgraded modemmanager-qt (5.77.0-1 -> 5.78.0-1)
[2021-01-20T01:57:07+0530] [ALPM] upgraded mono (6.10.0.104-1 -> 6.12.0.107-1)
[2021-01-20T01:57:07+0530] [ALPM] upgraded moreutils (0.64-1 -> 0.65-1)
[2021-01-20T01:57:08+0530] [ALPM] upgraded nano (5.4-1 -> 5.5-1)
[2021-01-20T01:57:09+0530] [ALPM] upgraded networkmanager (1.26.4-1 -> 1.28.1dev+7+g3f5df3cdc6-1)
[2021-01-20T01:57:09+0530] [ALPM] upgraded networkmanager-qt (5.77.0-1 -> 5.78.0-1)
[2021-01-20T01:57:14+0530] [ALPM] upgraded nodejs (15.4.0-1 -> 15.6.0-1)
[2021-01-20T01:57:16+0530] [ALPM] upgraded npm (6.14.9-1 -> 6.14.11-1)
[2021-01-20T01:57:17+0530] [ALPM] upgraded okular (20.12.0-1 -> 20.12.1-1)
[2021-01-20T01:57:19+0530] [ALPM] upgraded opencl-nvidia (455.45.01-2 -> 460.32.03-1)
[2021-01-20T01:57:19+0530] [ALPM] upgraded openresolv (3.11.0-1 -> 3.12.0-1)
[2021-01-20T01:57:19+0530] [ALPM] upgraded opera-ffmpeg-codecs (87.0.4280.88-1 -> 87.0.4280.141-1)
[2021-01-20T01:57:19+0530] [ALPM] upgraded p7zip (16.02-6 -> 17.03-1)
[2021-01-20T01:57:33+0530] [ALPM] upgraded papirus-icon-theme (20201201-1 -> 20210101-1)
[2021-01-20T01:57:33+0530] [ALPM] upgraded partitionmanager (20.12.0-1 -> 20.12.1-1)
[2021-01-20T01:57:33+0530] [ALPM] upgraded perl-alien-build (2.37-1 -> 2.38-1)
[2021-01-20T01:57:34+0530] [ALPM] upgraded php (7.4.13-1 -> 7.4.14-1)
[2021-01-20T01:57:34+0530] [ALPM] upgraded php-gd (7.4.13-1 -> 7.4.14-1)
[2021-01-20T01:57:34+0530] [ALPM] upgraded php-intl (7.4.13-1 -> 7.4.14-1)
[2021-01-20T01:57:35+0530] [ALPM] upgraded plasma-browser-integration (5.20.4-1 -> 5.20.5-1)
[2021-01-20T01:57:35+0530] [ALPM] upgraded plasma-nm (5.20.4-1 -> 5.20.5-1)
[2021-01-20T01:57:35+0530] [ALPM] upgraded plasma-pa (5.20.4-1 -> 5.20.5-1)
[2021-01-20T01:57:35+0530] [ALPM] upgraded plasma-workspace-wallpapers (5.20.4-1 -> 5.20.5-1)
[2021-01-20T01:57:35+0530] [ALPM] upgraded powerdevil (5.20.4-1 -> 5.20.5-1)
[2021-01-20T01:57:37+0530] [ALPM] upgraded print-manager (20.12.0-1 -> 20.12.1-1)
[2021-01-20T01:57:37+0530] [ALPM] upgraded python-automat (20.2.0-4 -> 20.2.0-5)
[2021-01-20T01:57:37+0530] [ALPM] upgraded python-pillow (8.0.1-3 -> 8.1.0-1)
[2021-01-20T01:57:37+0530] [ALPM] upgraded python-xcffib (0.11.0-1 -> 0.11.1-1)
[2021-01-20T01:57:37+0530] [ALPM] upgraded python-cairosvg (2.5.0-3 -> 2.5.1-1)
[2021-01-20T01:57:37+0530] [ALPM] upgraded python-evdev (1.3.0-3 -> 1.4.0-1)
[2021-01-20T01:57:37+0530] [ALPM] upgraded python-numpy (1.19.4-3 -> 1.19.5-1)
[2021-01-20T01:57:37+0530] [ALPM] upgraded python-fpylll (0.5.4-1 -> 0.5.5-1)
[2021-01-20T01:57:37+0530] [ALPM] upgraded python-msgpack (1.0.0-3 -> 1.0.2-2)
[2021-01-20T01:57:37+0530] [ALPM] upgraded python-pikepdf (2.2.1-1 -> 2.4.0-1)
[2021-01-20T01:57:37+0530] [ALPM] upgraded python-resolvelib (0.5.3-1 -> 0.5.4-1)
[2021-01-20T01:57:37+0530] [ALPM] upgraded python-pip (20.2.2-1 -> 20.2.4-1)
[2021-01-20T01:57:37+0530] [ALPM] upgraded python-psutil (5.7.3-3 -> 5.8.0-1)
[2021-01-20T01:57:37+0530] [ALPM] upgraded python-py (1.9.0-3 -> 1.10.0-1)
[2021-01-20T01:57:37+0530] [ALPM] upgraded python-pytest (6.1.2-3 -> 6.2.1-1)
[2021-01-20T01:57:37+0530] [ALPM] upgraded python-pytz (2020.4-4 -> 2020.5-1)
[2021-01-20T01:57:38+0530] [ALPM] upgraded python-reportlab (3.5.56-1 -> 3.5.59-1)
[2021-01-20T01:57:40+0530] [ALPM] upgraded r (4.0.3-1 -> 4.0.3-2)
[2021-01-20T01:57:40+0530] [ALPM] upgraded python-rpy2 (3.3.6-3 -> 3.4.2-1)
[2021-01-20T01:57:41+0530] [ALPM] upgraded python-scipy (1.5.4-3 -> 1.6.0-1)
[2021-01-20T01:57:41+0530] [ALPM] upgraded python-shiboken2 (5.15.2-2 -> 5.15.2-4)
[2021-01-20T01:57:42+0530] [ALPM] upgraded python-sphinx (3.4.0-1 -> 3.4.3-1)
[2021-01-20T01:57:42+0530] [ALPM] upgraded python-tqdm (4.54.1-1 -> 4.56.0-1)
[2021-01-20T01:57:43+0530] [ALPM] upgraded python2-automat (20.2.0-4 -> 20.2.0-5)
[2021-01-20T01:57:43+0530] [ALPM] upgraded python2-gobject (3.36.1-2 -> 3.36.1-3)
[2021-01-20T01:57:43+0530] [ALPM] upgraded python2-packaging (20.7-1 -> 20.8-2)
[2021-01-20T01:57:43+0530] [ALPM] upgraded python2-ptyprocess (0.6.0-6 -> 0.7.0-1)
[2021-01-20T01:57:43+0530] [ALPM] upgraded python2-py (1.9.0-3 -> 1.10.0-1)
[2021-01-20T01:57:43+0530] [ALPM] upgraded python2-pytz (2020.4-4 -> 2020.5-1)
[2021-01-20T01:57:43+0530] [ALPM] upgraded python2-urllib3 (1.25.10-4 -> 1.26.1-1)
[2021-01-20T01:57:43+0530] [ALPM] upgraded qt5-tools (5.15.2-1 -> 5.15.2-2)
[2021-01-20T01:57:43+0530] [ALPM] upgraded qt5-webkit (5.212.0alpha4-8 -> 5.212.0alpha4-9)
[2021-01-20T01:57:44+0530] [ALPM] upgraded rebuild-detector (4.1.6-0 -> 4.1.6-1)
[2021-01-20T01:57:44+0530] [ALPM] upgraded rsync (3.2.3-1 -> 3.2.3-3)
[2021-01-20T01:57:44+0530] [ALPM] upgraded ruby-reline (0.1.6-1 -> 0.2.0-1)
[2021-01-20T01:57:44+0530] [ALPM] upgraded ruby-irb (1.2.7-1 -> 1.3.0-1)
[2021-01-20T01:57:44+0530] [ALPM] upgraded s-nail (14.9.19-2 -> 14.9.20-1)
[2021-01-20T01:57:45+0530] [ALPM] upgraded sddm (0.19.0-2.3 -> 0.19.0-3)
[2021-01-20T01:57:45+0530] [ALPM] upgraded sddm-kcm (5.20.4-1 -> 5.20.5-1)
[2021-01-20T01:57:54+0530] [ALPM] upgraded signal-desktop (1.39.4-1 -> 1.39.5-1)
[2021-01-20T01:57:57+0530] [ALPM] upgraded singular (4.2.0.p0-4 -> 4.2.0.p1-1)
[2021-01-20T01:57:57+0530] [ALPM] upgraded spectacle (20.12.0-1 -> 20.12.1-1)
[2021-01-20T01:57:57+0530] [ALPM] upgraded suil (0.10.8-1 -> 0.10.10-1)
[2021-01-20T01:57:58+0530] [ALPM] upgraded syncthing (1.12.0-1 -> 1.12.1-1)
[2021-01-20T01:57:58+0530] [ALPM] upgraded system-config-printer (1.5.13-4 -> 1.5.15-1)
[2021-01-20T01:57:58+0530] [ALPM] upgraded tcl (8.6.10-2 -> 8.6.11-1)
[2021-01-20T01:58:00+0530] [ALPM] upgraded terminus-font (4.48-3 -> 4.49.1-1)
[2021-01-20T01:58:00+0530] [ALPM] upgraded tesseract (4.1.1-3 -> 4.1.1-4)
[2021-01-20T01:58:00+0530] [ALPM] upgraded zziplib (0.13.71-1 -> 0.13.72-1)
[2021-01-20T01:58:00+0530] [ALPM] upgraded texlive-bin (2020.54586-7 -> 2020.54586-9)
[2021-01-20T01:58:00+0530] [ALPM] upgraded threejs-sage (r123-1 -> r124-1)
[2021-01-20T01:58:00+0530] [ALPM] upgraded tlpui (1.3.1-2 -> 1.3.1.5-1)
[2021-01-20T01:58:00+0530] [ALPM] upgraded ueberzug (18.1.8-1 -> 18.1.9-1)
[2021-01-20T01:58:01+0530] [ALPM] upgraded unarchiver (1.10.7-1 -> 1.10.7-2)
[2021-01-20T01:58:02+0530] [ALPM] upgraded vala (0.50.2-1 -> 0.50.3-1)
[2021-01-20T01:58:02+0530] [ALPM] upgraded vim-runtime (8.2.1989-3 -> 8.2.2347-1)
[2021-01-20T01:58:02+0530] [ALPM] upgraded vim (8.2.1989-3 -> 8.2.2347-1)
[2021-01-20T01:58:02+0530] [ALPM] upgraded vte-common (0.62.1-1 -> 0.62.2-1)
[2021-01-20T01:58:02+0530] [ALPM] upgraded vte3 (0.62.1-1 -> 0.62.2-1)
[2021-01-20T01:58:02+0530] [ALPM] upgraded vulkan-headers (1:1.2.164-1 -> 1:1.2.166-1)
[2021-01-20T01:58:02+0530] [ALPM] upgraded wget (1.20.3-3 -> 1.21.1-1)
[2021-01-20T01:58:16+0530] [ALPM] upgraded wine (5.22-1 -> 6.0-1)
[2021-01-20T01:58:16+0530] [ALPM] upgraded wxgtk2 (3.0.5.1-1 -> 3.0.5.1-2)
[2021-01-20T01:58:16+0530] [ALPM] upgraded xapp (2.0.4-1 -> 2.0.6-1)
[2021-01-20T01:58:16+0530] [ALPM] upgraded xournalpp (1.0.20-1 -> 1.0.20-2)
[2021-01-20T01:58:16+0530] [ALPM] upgraded xterm (362-1 -> 363-1)
[2021-01-20T01:58:16+0530] [ALPM] upgraded yakuake (20.12.0-1 -> 20.12.1-1)
[2021-01-20T01:58:17+0530] [ALPM] upgraded youtube-dl (2020.12.14-1 -> 2021.01.16-1)

This is a log from around that time:

cat /var/log/Xorg.0.log.old

[     5.179] (--) Log file renamed from "/var/log/Xorg.pid-564.log" to "/var/log/Xorg.0.log"
[     5.185] 
X.Org X Server 1.20.10
X Protocol Version 11, Revision 0
[     5.185] Build Operating System: Linux Manjaro Linux
[     5.185] Current Operating System: Linux sintan-pc 5.10.7-3-MANJARO #1 SMP PREEMPT Fri Jan 15 21:11:34 UTC 2021 x86_64
[     5.185] Kernel command line: BOOT_IMAGE=/boot/vmlinuz-5.10-x86_64 root=UUID=fe64fafd-1c2a-4b55-846f-c264196ff166 rw nomce "acpi_osi=Windows 2018" quiet resume=UUID=4517ac81-4ac6-42a0-8e7a-a5870b5f98df
[     5.185] Build Date: 16 December 2020  10:33:32PM
[     5.185]  
[     5.185] Current version of pixman: 0.40.0
[     5.185] 	Before reporting problems, check http://wiki.x.org
	to make sure that you have the latest version.
[     5.185] Markers: (--) probed, (**) from config file, (==) default setting,
	(++) from command line, (!!) notice, (II) informational,
	(WW) warning, (EE) error, (NI) not implemented, (??) unknown.
[     5.185] (==) Log file: "/var/log/Xorg.0.log", Time: Thu Jan 21 01:53:06 2021
[     5.188] (==) Using config directory: "/etc/X11/xorg.conf.d"
[     5.188] (==) Using system config directory "/usr/share/X11/xorg.conf.d"
[     5.191] (==) ServerLayout "layout"
[     5.191] (==) No screen section available. Using defaults.
[     5.191] (**) |-->Screen "Default Screen Section" (0)
[     5.191] (**) |   |-->Monitor "<default monitor>"
[     5.191] (==) No monitor specified for screen "Default Screen Section".
	Using a default monitor configuration.
[     5.191] (==) Automatically adding devices
[     5.191] (==) Automatically enabling devices
[     5.191] (==) Automatically adding GPU devices
[     5.191] (==) Automatically binding GPU devices
[     5.191] (==) Max clients allowed: 256, resource mask: 0x1fffff
[     5.195] (WW) The directory "/usr/share/fonts/Type1" does not exist.
[     5.195] 	Entry deleted from font path.
[     5.195] (WW) The directory "/usr/share/fonts/100dpi" does not exist.
[     5.195] 	Entry deleted from font path.
[     5.195] (WW) The directory "/usr/share/fonts/75dpi" does not exist.
[     5.195] 	Entry deleted from font path.
[     5.195] (==) FontPath set to:
	/usr/share/fonts/misc,
	/usr/share/fonts/TTF,
	/usr/share/fonts/OTF
[     5.195] (==) ModulePath set to "/usr/lib/xorg/modules"
[     5.195] (II) The server relies on udev to provide the list of input devices.
	If no devices become available, reconfigure udev or disable AutoAddDevices.
[     5.195] (II) Module ABI versions:
[     5.195] 	X.Org ANSI C Emulation: 0.4
[     5.195] 	X.Org Video Driver: 24.1
[     5.195] 	X.Org XInput driver : 24.1
[     5.195] 	X.Org Server Extension : 10.0
[     5.196] (++) using VT number 1

[     5.196] (II) systemd-logind: logind integration requires -keeptty and -keeptty was not provided, disabling logind integration
[     5.196] (II) xfree86: Adding drm device (/dev/dri/card0)
[     5.197] (**) OutputClass "nvidia" ModulePath extended to "/usr/lib/nvidia/xorg,/usr/lib/xorg/modules,/usr/lib/xorg/modules"
[     5.197] (**) OutputClass "nvidia" ModulePath extended to "/usr/lib/nvidia/xorg,/usr/lib/xorg/modules,/usr/lib/nvidia/xorg,/usr/lib/xorg/modules,/usr/lib/xorg/modules"
[     5.198] (--) PCI:*(0@0:2:0) 8086:5917:103c:83ce rev 7, Mem @ 0xa2000000/16777216, 0xb0000000/268435456, I/O @ 0x00005000/64, BIOS @ 0x????????/131072
[     5.199] (--) PCI: (1@0:0:0) 10de:134d:103c:83ce rev 162, Mem @ 0xa3000000/16777216, 0x90000000/268435456, 0xa0000000/33554432, I/O @ 0x00004000/128
[     5.199] (WW) Open ACPI failed (/var/run/acpid.socket) (No such file or directory)
[     5.199] (II) LoadModule: "glx"
[     5.204] (II) Loading /usr/lib/xorg/modules/extensions/libglx.so
[     5.207] (II) Module glx: vendor="X.Org Foundation"
[     5.207] 	compiled for 1.20.10, module version = 1.0.0
[     5.207] 	ABI class: X.Org Server Extension, version 10.0
[     5.207] (II) Applying OutputClass "nvidia" to /dev/dri/card0
[     5.207] 	loading driver: nvidia
[     5.207] (II) Applying OutputClass "nvidia" to /dev/dri/card0
[     5.207] 	loading driver: nvidia
[     5.207] (==) Matched nvidia as autoconfigured driver 0
[     5.207] (==) Matched nouveau as autoconfigured driver 1
[     5.207] (==) Matched nv as autoconfigured driver 2
[     5.207] (==) Matched intel as autoconfigured driver 3
[     5.207] (==) Matched modesetting as autoconfigured driver 4
[     5.207] (==) Matched fbdev as autoconfigured driver 5
[     5.207] (==) Matched vesa as autoconfigured driver 6
[     5.207] (==) Assigned the driver to the xf86ConfigLayout
[     5.207] (II) LoadModule: "nvidia"
[     5.211] (II) Loading /usr/lib/xorg/modules/drivers/nvidia_drv.so
[     5.217] (II) Module nvidia: vendor="NVIDIA Corporation"
[     5.217] 	compiled for 1.6.99.901, module version = 1.0.0
[     5.217] 	Module class: X.Org Video Driver
[     5.218] (II) LoadModule: "nouveau"
[     5.219] (WW) Warning, couldn't open module nouveau
[     5.219] (EE) Failed to load module "nouveau" (module does not exist, 0)
[     5.219] (II) LoadModule: "nv"
[     5.219] (WW) Warning, couldn't open module nv
[     5.219] (EE) Failed to load module "nv" (module does not exist, 0)
[     5.219] (II) LoadModule: "intel"
[     5.220] (WW) Warning, couldn't open module intel
[     5.220] (EE) Failed to load module "intel" (module does not exist, 0)
[     5.220] (II) LoadModule: "modesetting"
[     5.220] (II) Loading /usr/lib/xorg/modules/drivers/modesetting_drv.so
[     5.223] (II) Module modesetting: vendor="X.Org Foundation"
[     5.223] 	compiled for 1.20.10, module version = 1.20.10
[     5.223] 	Module class: X.Org Video Driver
[     5.223] 	ABI class: X.Org Video Driver, version 24.1
[     5.223] (II) LoadModule: "fbdev"
[     5.223] (WW) Warning, couldn't open module fbdev
[     5.223] (EE) Failed to load module "fbdev" (module does not exist, 0)
[     5.223] (II) LoadModule: "vesa"
[     5.224] (WW) Warning, couldn't open module vesa
[     5.224] (EE) Failed to load module "vesa" (module does not exist, 0)
[     5.224] (II) NVIDIA dlloader X Driver  460.32.03  Sun Dec 27 18:56:00 UTC 2020
[     5.224] (II) NVIDIA Unified Driver for all Supported NVIDIA GPUs
[     5.224] (II) modesetting: Driver for Modesetting Kernel Drivers: kms
[     5.224] (WW) Falling back to old probe method for modesetting
[     5.224] (II) modeset(1): using default device
[     5.225] (II) Loading sub module "fb"
[     5.225] (II) LoadModule: "fb"
[     5.225] (II) Loading /usr/lib/xorg/modules/libfb.so
[     5.226] (II) Module fb: vendor="X.Org Foundation"
[     5.226] 	compiled for 1.20.10, module version = 1.0.0
[     5.226] 	ABI class: X.Org ANSI C Emulation, version 0.4
[     5.226] (II) Loading sub module "wfb"
[     5.226] (II) LoadModule: "wfb"
[     5.226] (II) Loading /usr/lib/xorg/modules/libwfb.so
[     5.227] (II) Module wfb: vendor="X.Org Foundation"
[     5.227] 	compiled for 1.20.10, module version = 1.0.0
[     5.227] 	ABI class: X.Org ANSI C Emulation, version 0.4
[     5.227] (II) Loading sub module "ramdac"
[     5.227] (II) LoadModule: "ramdac"
[     5.227] (II) Module "ramdac" already built-in
[     5.229] (EE) Screen 0 deleted because of no matching config section.
[     5.229] (II) UnloadModule: "modesetting"
[     5.229] (EE) 
Fatal server error:
[     5.229] (EE) Cannot run in framebuffer mode. Please specify busIDs        for all framebuffer devices
[     5.229] (EE) 
[     5.229] (EE) 
Please consult the The X.Org Foundation support 
	 at http://wiki.x.org
 for help. 
[     5.229] (EE) Please also check the log file at "/var/log/Xorg.0.log" for additional information.
[     5.229] (EE) 
[     5.229] (EE) Server terminated with error (1). Closing log file.

Please try this different configuration:

Section "ServerLayout"
    Identifier "layout"
    Screen 0 "iGPU"
EndSection

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

Section "Screen"
    Identifier "iGPU"
    Device "iGPU"
EndSection

Section "Device"
    Identifier "dGPU"
    Driver "nvidia"
EndSection

save it as /etc/X11/xorg.conf.d/90-intel-nvidia.conf, and reboot. If you get a black screen again, or prime-run still doesn’t work, post the Xorg log.

1 Like

It does boot, but prime-run still doesn’t work.
Here’s the log :

[     6.915] (--) Log file renamed from "/var/log/Xorg.pid-650.log" to "/var/log/Xorg.0.log"
[     6.916] 
X.Org X Server 1.20.10
X Protocol Version 11, Revision 0
[     6.916] Build Operating System: Linux Manjaro Linux
[     6.916] Current Operating System: Linux sintan-pc 5.10.7-3-MANJARO #1 SMP PREEMPT Fri Jan 15 21:11:34 UTC 2021 x86_64
[     6.916] Kernel command line: BOOT_IMAGE=/boot/vmlinuz-5.10-x86_64 root=UUID=fe64fafd-1c2a-4b55-846f-c264196ff166 rw nomce "acpi_osi=Windows 2018" quiet resume=UUID=4517ac81-4ac6-42a0-8e7a-a5870b5f98df
[     6.916] Build Date: 16 December 2020  10:33:32PM
[     6.916]  
[     6.916] Current version of pixman: 0.40.0
[     6.916] 	Before reporting problems, check http://wiki.x.org
	to make sure that you have the latest version.
[     6.916] Markers: (--) probed, (**) from config file, (==) default setting,
	(++) from command line, (!!) notice, (II) informational,
	(WW) warning, (EE) error, (NI) not implemented, (??) unknown.
[     6.916] (==) Log file: "/var/log/Xorg.0.log", Time: Thu Jan 21 03:20:43 2021
[     6.916] (==) Using config directory: "/etc/X11/xorg.conf.d"
[     6.916] (==) Using system config directory "/usr/share/X11/xorg.conf.d"
[     6.916] (==) ServerLayout "layout"
[     6.916] (**) |-->Screen "iGPU" (0)
[     6.916] (**) |   |-->Monitor "<default monitor>"
[     6.916] (**) |   |-->Device "iGPU"
[     6.916] (**) |   |-->GPUDevice "dGPU"
[     6.916] (==) No monitor specified for screen "iGPU".
	Using a default monitor configuration.
[     6.916] (==) Automatically adding devices
[     6.916] (==) Automatically enabling devices
[     6.916] (==) Automatically adding GPU devices
[     6.916] (==) Automatically binding GPU devices
[     6.916] (==) Max clients allowed: 256, resource mask: 0x1fffff
[     6.916] (WW) The directory "/usr/share/fonts/Type1" does not exist.
[     6.916] 	Entry deleted from font path.
[     6.916] (WW) The directory "/usr/share/fonts/100dpi" does not exist.
[     6.916] 	Entry deleted from font path.
[     6.916] (WW) The directory "/usr/share/fonts/75dpi" does not exist.
[     6.916] 	Entry deleted from font path.
[     6.916] (==) FontPath set to:
	/usr/share/fonts/misc,
	/usr/share/fonts/TTF,
	/usr/share/fonts/OTF
[     6.916] (==) ModulePath set to "/usr/lib/xorg/modules"
[     6.916] (II) The server relies on udev to provide the list of input devices.
	If no devices become available, reconfigure udev or disable AutoAddDevices.
[     6.916] (II) Module ABI versions:
[     6.916] 	X.Org ANSI C Emulation: 0.4
[     6.916] 	X.Org Video Driver: 24.1
[     6.916] 	X.Org XInput driver : 24.1
[     6.916] 	X.Org Server Extension : 10.0
[     6.917] (++) using VT number 1

[     6.917] (II) systemd-logind: logind integration requires -keeptty and -keeptty was not provided, disabling logind integration
[     6.918] (II) xfree86: Adding drm device (/dev/dri/card1)
[     6.929] (II) xfree86: Adding drm device (/dev/dri/card0)
[     6.930] (**) OutputClass "nvidia" ModulePath extended to "/usr/lib/nvidia/xorg,/usr/lib/xorg/modules,/usr/lib/xorg/modules"
[     6.930] (**) OutputClass "nvidia" ModulePath extended to "/usr/lib/nvidia/xorg,/usr/lib/xorg/modules,/usr/lib/nvidia/xorg,/usr/lib/xorg/modules,/usr/lib/xorg/modules"
[     6.930] (--) PCI:*(0@0:2:0) 8086:5917:103c:83ce rev 7, Mem @ 0xa2000000/16777216, 0xb0000000/268435456, I/O @ 0x00005000/64, BIOS @ 0x????????/131072
[     6.930] (--) PCI: (1@0:0:0) 10de:134d:103c:83ce rev 162, Mem @ 0xa3000000/16777216, 0x90000000/268435456, 0xa0000000/33554432, I/O @ 0x00004000/128
[     6.930] (WW) Open ACPI failed (/var/run/acpid.socket) (No such file or directory)
[     6.930] (II) LoadModule: "glx"
[     6.931] (II) Loading /usr/lib/xorg/modules/extensions/libglx.so
[     6.931] (II) Module glx: vendor="X.Org Foundation"
[     6.931] 	compiled for 1.20.10, module version = 1.0.0
[     6.931] 	ABI class: X.Org Server Extension, version 10.0
[     6.931] (II) LoadModule: "modesetting"
[     6.931] (II) Loading /usr/lib/xorg/modules/drivers/modesetting_drv.so
[     6.932] (II) Module modesetting: vendor="X.Org Foundation"
[     6.932] 	compiled for 1.20.10, module version = 1.20.10
[     6.932] 	Module class: X.Org Video Driver
[     6.932] 	ABI class: X.Org Video Driver, version 24.1
[     6.932] (II) LoadModule: "nvidia"
[     6.932] (II) Loading /usr/lib/xorg/modules/drivers/nvidia_drv.so
[     6.932] (II) Module nvidia: vendor="NVIDIA Corporation"
[     6.932] 	compiled for 1.6.99.901, module version = 1.0.0
[     6.932] 	Module class: X.Org Video Driver
[     6.932] (II) modesetting: Driver for Modesetting Kernel Drivers: kms
[     6.932] (II) NVIDIA dlloader X Driver  460.32.03  Sun Dec 27 18:56:00 UTC 2020
[     6.932] (II) NVIDIA Unified Driver for all Supported NVIDIA GPUs
[     6.946] (II) modeset(0): using drv /dev/dri/card1
[     6.946] (II) modeset(G0): using drv /dev/dri/card0
[     6.946] (II) modeset(0): Creating default Display subsection in Screen section
	"iGPU" for depth/fbbpp 24/32
[     6.946] (==) modeset(0): Depth 24, (==) framebuffer bpp 32
[     6.946] (==) modeset(0): RGB weight 888
[     6.946] (==) modeset(0): Default visual is TrueColor
[     6.946] (II) Loading sub module "glamoregl"
[     6.946] (II) LoadModule: "glamoregl"
[     6.946] (II) Loading /usr/lib/xorg/modules/libglamoregl.so
[     6.952] (II) Module glamoregl: vendor="X.Org Foundation"
[     6.952] 	compiled for 1.20.10, module version = 1.0.1
[     6.952] 	ABI class: X.Org ANSI C Emulation, version 0.4
[     7.194] (II) modeset(0): glamor X acceleration enabled on Mesa Intel(R) UHD Graphics 620 (KBL GT2)
[     7.194] (II) modeset(0): glamor initialized
[     7.195] (II) modeset(0): Output eDP-1 has no monitor section
[     7.198] (II) modeset(0): Output HDMI-1 has no monitor section
[     7.199] (II) modeset(0): EDID for output eDP-1
[     7.199] (II) modeset(0): Manufacturer: BOE  Model: 72b  Serial#: 0
[     7.199] (II) modeset(0): Year: 2017  Week: 1
[     7.199] (II) modeset(0): EDID Version: 1.4
[     7.199] (II) modeset(0): Digital Display Input
[     7.199] (II) modeset(0): 6 bits per channel
[     7.199] (II) modeset(0): Digital interface is DisplayPort
[     7.199] (II) modeset(0): Max Image Size [cm]: horiz.: 31  vert.: 17
[     7.199] (II) modeset(0): Gamma: 2.20
[     7.199] (II) modeset(0): No DPMS capabilities specified
[     7.199] (II) modeset(0): Supported color encodings: RGB 4:4:4 
[     7.199] (II) modeset(0): First detailed timing is preferred mode
[     7.199] (II) modeset(0): Preferred mode is native pixel format and refresh rate
[     7.199] (II) modeset(0): redX: 0.585 redY: 0.361   greenX: 0.349 greenY: 0.581
[     7.199] (II) modeset(0): blueX: 0.162 blueY: 0.136   whiteX: 0.312 whiteY: 0.328
[     7.199] (II) modeset(0): Manufacturer's mask: 0
[     7.199] (II) modeset(0): Supported detailed timing:
[     7.199] (II) modeset(0): clock: 140.2 MHz   Image Size:  309 x 173 mm
[     7.199] (II) modeset(0): h_active: 1920  h_sync: 1968  h_sync_end 2000 h_blank_end 2124 h_border: 0
[     7.199] (II) modeset(0): v_active: 1080  v_sync: 1083  v_sync_end 1089 v_blanking: 1100 v_border: 0
[     7.199] (II) modeset(0): Supported detailed timing:
[     7.199] (II) modeset(0): clock: 93.5 MHz   Image Size:  309 x 173 mm
[     7.199] (II) modeset(0): h_active: 1920  h_sync: 2020  h_sync_end 2120 h_blank_end 2124 h_border: 0
[     7.199] (II) modeset(0): v_active: 1080  v_sync: 1100  v_sync_end 1120 v_blanking: 1100 v_border: 0
[     7.199] (II) modeset(0): Unknown vendor-specific block 2
[     7.199] (II) modeset(0): EDID (in hex):
[     7.199] (II) modeset(0): 	00ffffffffffff0009e52b0700000000
[     7.199] (II) modeset(0): 	011b0104951f117802e7b0955c599429
[     7.199] (II) modeset(0): 	22505400000001010101010101010101
[     7.199] (II) modeset(0): 	010101010101c83680cc703814403020
[     7.199] (II) modeset(0): 	360035ad1000001a862480cc70381440
[     7.199] (II) modeset(0): 	6464440535ad1000001a000000000000
[     7.199] (II) modeset(0): 	00000000000000000000000000000002
[     7.199] (II) modeset(0): 	000a40ed0a3c6e11101a75000000008e
[     7.199] (II) modeset(0): Printing probed modes for output eDP-1
[     7.199] (II) modeset(0): Modeline "1920x1080"x60.0  140.24  1920 1968 2000 2124  1080 1083 1089 1100 +hsync -vsync (66.0 kHz eP)
[     7.199] (II) modeset(0): Modeline "1920x1080"x120.0  356.38  1920 2080 2288 2656  1080 1081 1084 1118 doublescan -hsync +vsync (134.2 kHz d)
[     7.199] (II) modeset(0): Modeline "1920x1080"x119.9  266.50  1920 1944 1960 2000  1080 1081 1084 1111 doublescan +hsync -vsync (133.2 kHz d)
[     7.199] (II) modeset(0): Modeline "1920x1080"x60.0  173.00  1920 2048 2248 2576  1080 1083 1088 1120 -hsync +vsync (67.2 kHz d)
[     7.199] (II) modeset(0): Modeline "1920x1080"x59.9  138.50  1920 1968 2000 2080  1080 1083 1088 1111 +hsync -vsync (66.6 kHz d)
[     7.199] (II) modeset(0): Modeline "1920x1080"x39.3   93.50  1920 2020 2120 2124  1080 1100 1120 1121 +hsync -vsync (44.0 kHz e)
[     7.199] (II) modeset(0): Modeline "1680x1050"x60.0  146.25  1680 1784 1960 2240  1050 1053 1059 1089 -hsync +vsync (65.3 kHz d)
[     7.199] (II) modeset(0): Modeline "1680x1050"x59.9  119.00  1680 1728 1760 1840  1050 1053 1059 1080 +hsync -vsync (64.7 kHz d)
[     7.200] (II) modeset(0): Modeline "1400x1050"x60.0  122.00  1400 1488 1640 1880  1050 1052 1064 1082 +hsync +vsync (64.9 kHz d)
[     7.200] (II) modeset(0): Modeline "1600x900"x120.0  246.00  1600 1728 1900 2200  900 901 904 932 doublescan -hsync +vsync (111.8 kHz d)
[     7.200] (II) modeset(0): Modeline "1600x900"x119.9  186.50  1600 1624 1640 1680  900 901 904 926 doublescan +hsync -vsync (111.0 kHz d)
[     7.200] (II) modeset(0): Modeline "1600x900"x59.9  118.25  1600 1696 1856 2112  900 903 908 934 -hsync +vsync (56.0 kHz d)
[     7.200] (II) modeset(0): Modeline "1600x900"x59.8   97.50  1600 1648 1680 1760  900 903 908 926 +hsync -vsync (55.4 kHz d)
[     7.200] (II) modeset(0): Modeline "1280x1024"x60.0  108.00  1280 1328 1440 1688  1024 1025 1028 1066 +hsync +vsync (64.0 kHz d)
[     7.200] (II) modeset(0): Modeline "1400x900"x60.0  103.50  1400 1480 1624 1848  900 903 913 934 -hsync +vsync (56.0 kHz d)
[     7.200] (II) modeset(0): Modeline "1400x900"x59.9   86.50  1400 1448 1480 1560  900 903 913 926 +hsync -vsync (55.4 kHz d)
[     7.200] (II) modeset(0): Modeline "1280x960"x60.0  108.00  1280 1376 1488 1800  960 961 964 1000 +hsync +vsync (60.0 kHz d)
[     7.200] (II) modeset(0): Modeline "1440x810"x120.0  198.12  1440 1548 1704 1968  810 811 814 839 doublescan -hsync +vsync (100.7 kHz d)
[     7.200] (II) modeset(0): Modeline "1440x810"x119.9  151.88  1440 1464 1480 1520  810 811 814 833 doublescan +hsync -vsync (99.9 kHz d)
[     7.200] (II) modeset(0): Modeline "1368x768"x59.9   85.25  1368 1440 1576 1784  768 771 781 798 -hsync +vsync (47.8 kHz d)
[     7.200] (II) modeset(0): Modeline "1368x768"x59.9   72.25  1368 1416 1448 1528  768 771 781 790 +hsync -vsync (47.3 kHz d)
[     7.200] (II) modeset(0): Modeline "1280x800"x120.0  174.25  1280 1380 1516 1752  800 801 804 829 doublescan -hsync +vsync (99.5 kHz d)
[     7.200] (II) modeset(0): Modeline "1280x800"x119.9  134.25  1280 1304 1320 1360  800 801 804 823 doublescan +hsync -vsync (98.7 kHz d)
[     7.200] (II) modeset(0): Modeline "1280x800"x59.8   83.50  1280 1352 1480 1680  800 803 809 831 -hsync +vsync (49.7 kHz d)
[     7.200] (II) modeset(0): Modeline "1280x800"x59.9   71.00  1280 1328 1360 1440  800 803 809 823 +hsync -vsync (49.3 kHz d)
[     7.200] (II) modeset(0): Modeline "1280x720"x120.0  156.12  1280 1376 1512 1744  720 721 724 746 doublescan -hsync +vsync (89.5 kHz d)
[     7.200] (II) modeset(0): Modeline "1280x720"x120.0  120.75  1280 1304 1320 1360  720 721 724 740 doublescan +hsync -vsync (88.8 kHz d)
[     7.200] (II) modeset(0): Modeline "1280x720"x59.9   74.50  1280 1344 1472 1664  720 723 728 748 -hsync +vsync (44.8 kHz d)
[     7.200] (II) modeset(0): Modeline "1280x720"x59.7   63.75  1280 1328 1360 1440  720 723 728 741 +hsync -vsync (44.3 kHz d)
[     7.200] (II) modeset(0): Modeline "1024x768"x120.1  133.47  1024 1100 1212 1400  768 768 770 794 doublescan -hsync +vsync (95.3 kHz d)
[     7.200] (II) modeset(0): Modeline "1024x768"x60.0   65.00  1024 1048 1184 1344  768 771 777 806 -hsync -vsync (48.4 kHz d)
[     7.200] (II) modeset(0): Modeline "960x720"x120.0  117.00  960 1024 1128 1300  720 720 722 750 doublescan -hsync +vsync (90.0 kHz d)
[     7.200] (II) modeset(0): Modeline "928x696"x120.1  109.15  928 976 1088 1264  696 696 698 719 doublescan -hsync +vsync (86.4 kHz d)
[     7.200] (II) modeset(0): Modeline "896x672"x120.0  102.40  896 960 1060 1224  672 672 674 697 doublescan -hsync +vsync (83.7 kHz d)
[     7.200] (II) modeset(0): Modeline "1024x576"x119.9   98.50  1024 1092 1200 1376  576 577 580 597 doublescan -hsync +vsync (71.6 kHz d)
[     7.200] (II) modeset(0): Modeline "1024x576"x119.9   78.38  1024 1048 1064 1104  576 577 580 592 doublescan +hsync -vsync (71.0 kHz d)
[     7.200] (II) modeset(0): Modeline "1024x576"x59.9   46.50  1024 1064 1160 1296  576 579 584 599 -hsync +vsync (35.9 kHz d)
[     7.200] (II) modeset(0): Modeline "1024x576"x59.8   42.00  1024 1072 1104 1184  576 579 584 593 +hsync -vsync (35.5 kHz d)
[     7.200] (II) modeset(0): Modeline "960x600"x119.9   96.62  960 1028 1128 1296  600 601 604 622 doublescan -hsync +vsync (74.6 kHz d)
[     7.200] (II) modeset(0): Modeline "960x600"x120.0   77.00  960 984 1000 1040  600 601 604 617 doublescan +hsync -vsync (74.0 kHz d)
[     7.200] (II) modeset(0): Modeline "960x540"x119.9   86.50  960 1024 1124 1288  540 541 544 560 doublescan -hsync +vsync (67.2 kHz d)
[     7.200] (II) modeset(0): Modeline "960x540"x120.0   69.25  960 984 1000 1040  540 541 544 555 doublescan +hsync -vsync (66.6 kHz d)
[     7.200] (II) modeset(0): Modeline "960x540"x59.6   40.75  960 992 1088 1216  540 543 548 562 -hsync +vsync (33.5 kHz d)
[     7.200] (II) modeset(0): Modeline "960x540"x59.8   37.25  960 1008 1040 1120  540 543 548 556 +hsync -vsync (33.3 kHz d)
[     7.200] (II) modeset(0): Modeline "800x600"x120.0   81.00  800 832 928 1080  600 600 602 625 doublescan +hsync +vsync (75.0 kHz d)
[     7.200] (II) modeset(0): Modeline "800x600"x60.3   40.00  800 840 968 1056  600 601 605 628 +hsync +vsync (37.9 kHz d)
[     7.200] (II) modeset(0): Modeline "800x600"x56.2   36.00  800 824 896 1024  600 601 603 625 +hsync +vsync (35.2 kHz d)
[     7.200] (II) modeset(0): Modeline "840x525"x120.0   73.12  840 892 980 1120  525 526 529 544 doublescan -hsync +vsync (65.3 kHz d)
[     7.200] (II) modeset(0): Modeline "840x525"x119.8   59.50  840 864 880 920  525 526 529 540 doublescan +hsync -vsync (64.7 kHz d)
[     7.200] (II) modeset(0): Modeline "864x486"x59.9   32.50  864 888 968 1072  486 489 494 506 -hsync +vsync (30.3 kHz d)
[     7.200] (II) modeset(0): Modeline "864x486"x59.6   30.50  864 912 944 1024  486 489 494 500 +hsync -vsync (29.8 kHz d)
[     7.200] (II) modeset(0): Modeline "700x525"x120.0   61.00  700 744 820 940  525 526 532 541 doublescan +hsync +vsync (64.9 kHz d)
[     7.200] (II) modeset(0): Modeline "800x450"x119.9   59.12  800 848 928 1056  450 451 454 467 doublescan -hsync +vsync (56.0 kHz d)
[     7.200] (II) modeset(0): Modeline "800x450"x119.6   48.75  800 824 840 880  450 451 454 463 doublescan +hsync -vsync (55.4 kHz d)
[     7.200] (II) modeset(0): Modeline "640x512"x120.0   54.00  640 664 720 844  512 512 514 533 doublescan +hsync +vsync (64.0 kHz d)
[     7.200] (II) modeset(0): Modeline "700x450"x119.9   51.75  700 740 812 924  450 451 456 467 doublescan -hsync +vsync (56.0 kHz d)
[     7.200] (II) modeset(0): Modeline "700x450"x119.8   43.25  700 724 740 780  450 451 456 463 doublescan +hsync -vsync (55.4 kHz d)
[     7.200] (II) modeset(0): Modeline "640x480"x120.0   54.00  640 688 744 900  480 480 482 500 doublescan +hsync +vsync (60.0 kHz d)
[     7.200] (II) modeset(0): Modeline "640x480"x59.9   25.18  640 656 752 800  480 490 492 525 -hsync -vsync (31.5 kHz d)
[     7.200] (II) modeset(0): Modeline "720x405"x59.5   22.50  720 744 808 896  405 408 413 422 -hsync +vsync (25.1 kHz d)
[     7.200] (II) modeset(0): Modeline "720x405"x59.0   21.75  720 768 800 880  405 408 413 419 +hsync -vsync (24.7 kHz d)
[     7.200] (II) modeset(0): Modeline "684x384"x119.8   42.62  684 720 788 892  384 385 390 399 doublescan -hsync +vsync (47.8 kHz d)
[     7.200] (II) modeset(0): Modeline "684x384"x119.7   36.12  684 708 724 764  384 385 390 395 doublescan +hsync -vsync (47.3 kHz d)
[     7.200] (II) modeset(0): Modeline "640x400"x119.8   41.75  640 676 740 840  400 401 404 415 doublescan -hsync +vsync (49.7 kHz d)
[     7.200] (II) modeset(0): Modeline "640x400"x120.0   35.50  640 664 680 720  400 401 404 411 doublescan +hsync -vsync (49.3 kHz d)
[     7.200] (II) modeset(0): Modeline "640x360"x119.7   37.25  640 672 736 832  360 361 364 374 doublescan -hsync +vsync (44.8 kHz d)
[     7.200] (II) modeset(0): Modeline "640x360"x119.7   31.88  640 664 680 720  360 361 364 370 doublescan +hsync -vsync (44.3 kHz d)
[     7.200] (II) modeset(0): Modeline "640x360"x59.8   18.00  640 664 720 800  360 363 368 376 -hsync +vsync (22.5 kHz d)
[     7.200] (II) modeset(0): Modeline "640x360"x59.3   17.75  640 688 720 800  360 363 368 374 +hsync -vsync (22.2 kHz d)
[     7.200] (II) modeset(0): Modeline "512x384"x120.0   32.50  512 524 592 672  384 385 388 403 doublescan -hsync -vsync (48.4 kHz d)
[     7.200] (II) modeset(0): Modeline "512x288"x120.0   23.25  512 532 580 648  288 289 292 299 doublescan -hsync +vsync (35.9 kHz d)
[     7.200] (II) modeset(0): Modeline "512x288"x119.8   21.00  512 536 552 592  288 289 292 296 doublescan +hsync -vsync (35.5 kHz d)
[     7.200] (II) modeset(0): Modeline "480x270"x119.3   20.38  480 496 544 608  270 271 274 281 doublescan -hsync +vsync (33.5 kHz d)
[     7.200] (II) modeset(0): Modeline "480x270"x119.6   18.62  480 504 520 560  270 271 274 278 doublescan +hsync -vsync (33.3 kHz d)
[     7.200] (II) modeset(0): Modeline "400x300"x120.6   20.00  400 420 484 528  300 300 302 314 doublescan +hsync +vsync (37.9 kHz d)
[     7.200] (II) modeset(0): Modeline "400x300"x112.7   18.00  400 412 448 512  300 300 301 312 doublescan +hsync +vsync (35.2 kHz d)
[     7.200] (II) modeset(0): Modeline "432x243"x119.8   16.25  432 444 484 536  243 244 247 253 doublescan -hsync +vsync (30.3 kHz d)
[     7.200] (II) modeset(0): Modeline "432x243"x119.1   15.25  432 456 472 512  243 244 247 250 doublescan +hsync -vsync (29.8 kHz d)
[     7.200] (II) modeset(0): Modeline "320x240"x120.1   12.59  320 328 376 400  240 245 246 262 doublescan -hsync -vsync (31.5 kHz d)
[     7.200] (II) modeset(0): Modeline "360x202"x119.0   11.25  360 372 404 448  202 204 206 211 doublescan -hsync +vsync (25.1 kHz d)
[     7.200] (II) modeset(0): Modeline "360x202"x118.3   10.88  360 384 400 440  202 204 206 209 doublescan +hsync -vsync (24.7 kHz d)
[     7.200] (II) modeset(0): Modeline "320x180"x119.7    9.00  320 332 360 400  180 181 184 188 doublescan -hsync +vsync (22.5 kHz d)
[     7.200] (II) modeset(0): Modeline "320x180"x118.6    8.88  320 344 360 400  180 181 184 187 doublescan +hsync -vsync (22.2 kHz d)
[     7.204] (II) modeset(0): EDID for output HDMI-1
[     7.204] (II) modeset(0): Output eDP-1 connected
[     7.204] (II) modeset(0): Output HDMI-1 disconnected
[     7.204] (II) modeset(0): Using exact sizes for initial modes
[     7.204] (II) modeset(0): Output eDP-1 using initial mode 1920x1080 +0+0
[     7.204] (==) modeset(0): Using gamma correction (1.0, 1.0, 1.0)
[     7.204] (++) modeset(0): DPI set to (115, 115)
[     7.204] (II) Loading sub module "fb"
[     7.204] (II) LoadModule: "fb"
[     7.204] (II) Loading /usr/lib/xorg/modules/libfb.so
[     7.204] (II) Module fb: vendor="X.Org Foundation"
[     7.204] 	compiled for 1.20.10, module version = 1.0.0
[     7.204] 	ABI class: X.Org ANSI C Emulation, version 0.4
[     7.205] (II) modeset(G0): Using 24bpp hw front buffer with 32bpp shadow
[     7.205] (==) modeset(G0): Depth 24, (==) framebuffer bpp 32
[     7.205] (II) Applying OutputClass "nvidia" options to /dev/dri/card0
[     7.205] (II) Applying OutputClass "nvidia" options to /dev/dri/card0
[     7.205] (==) modeset(G0): RGB weight 888
[     7.205] (==) modeset(G0): Default visual is TrueColor
[     7.205] (**) modeset(G0): Cannot use glamor with 24bpp packed fb
[     7.205] (II) modeset(G0): ShadowFB: preferred YES, enabled FORCE
[     7.205] (II) modeset(G0): Double-buffered shadow updates: off
[     7.205] (==) modeset(G0): Using gamma correction (1.0, 1.0, 1.0)
[     7.205] (++) modeset(G0): DPI set to (115, 115)
[     7.205] (II) Loading sub module "fb"
[     7.205] (II) LoadModule: "fb"
[     7.205] (II) Loading /usr/lib/xorg/modules/libfb.so
[     7.205] (II) Module fb: vendor="X.Org Foundation"
[     7.205] 	compiled for 1.20.10, module version = 1.0.0
[     7.205] 	ABI class: X.Org ANSI C Emulation, version 0.4
[     7.205] (II) Loading sub module "shadow"
[     7.205] (II) LoadModule: "shadow"
[     7.205] (II) Loading /usr/lib/xorg/modules/libshadow.so
[     7.206] (II) Module shadow: vendor="X.Org Foundation"
[     7.206] 	compiled for 1.20.10, module version = 1.1.0
[     7.206] 	ABI class: X.Org ANSI C Emulation, version 0.4
[     7.206] (II) UnloadModule: "nvidia"
[     7.206] (II) Unloading nvidia
[     7.227] (==) modeset(0): Backing store enabled
[     7.227] (==) modeset(0): Silken mouse disabled
[     7.296] (II) modeset(0): Initializing kms color map for depth 24, 8 bpc.
[     7.296] (==) modeset(0): DPMS enabled
[     7.296] (II) modeset(0): [DRI2] Setup complete
[     7.296] (II) modeset(0): [DRI2]   DRI driver: iris
[     7.296] (II) modeset(0): [DRI2]   VDPAU driver: va_gl
[     7.297] (==) modeset(G0): Backing store enabled
[     7.297] (==) modeset(G0): Silken mouse disabled
[     7.297] (II) modeset(G0): Initializing kms color map for depth 24, 8 bpc.
[     7.297] (==) modeset(G0): DPMS enabled
[     7.297] (WW) modeset(G0): Option "AllowEmptyInitialConfiguration" is not used
[     7.297] (II) Initializing extension Generic Event Extension
[     7.297] (II) Initializing extension SHAPE
[     7.297] (II) Initializing extension MIT-SHM
[     7.297] (II) Initializing extension XInputExtension
[     7.297] (II) Initializing extension XTEST
[     7.297] (II) Initializing extension BIG-REQUESTS
[     7.298] (II) Initializing extension SYNC
[     7.298] (II) Initializing extension XKEYBOARD
[     7.298] (II) Initializing extension XC-MISC
[     7.298] (II) Initializing extension SECURITY
[     7.298] (II) Initializing extension XFIXES
[     7.298] (II) Initializing extension RENDER
[     7.298] (II) Initializing extension RANDR
[     7.298] (II) Initializing extension COMPOSITE
[     7.298] (II) Initializing extension DAMAGE
[     7.299] (II) Initializing extension MIT-SCREEN-SAVER
[     7.299] (II) Initializing extension DOUBLE-BUFFER
[     7.299] (II) Initializing extension RECORD
[     7.299] (II) Initializing extension DPMS
[     7.299] (II) Initializing extension Present
[     7.299] (II) Initializing extension DRI3
[     7.299] (II) Initializing extension X-Resource
[     7.299] (II) Initializing extension XVideo
[     7.299] (II) Initializing extension XVideo-MotionCompensation
[     7.299] (II) Initializing extension GLX
[     7.308] (II) AIGLX: Loaded and initialized iris
[     7.308] (II) GLX: Initialized DRI2 GL provider for screen 0
[     7.308] (II) Initializing extension XFree86-VidModeExtension
[     7.308] (II) Initializing extension XFree86-DGA
[     7.308] (II) Initializing extension XFree86-DRI
[     7.308] (II) Initializing extension DRI2
[     7.309] (II) modeset(G0): Damage tracking initialized
[     7.313] (II) modeset(0): Damage tracking initialized
[     7.313] (II) modeset(0): Setting screen physical size to 424 x 238
[     7.367] (II) config/udev: Adding input device Power Button (/dev/input/event1)
[     7.368] (**) Power Button: Applying InputClass "evdev keyboard catchall"
[     7.368] (**) Power Button: Applying InputClass "libinput keyboard catchall"
[     7.368] (**) Power Button: Applying InputClass "system-keyboard"
[     7.368] (II) LoadModule: "libinput"
[     7.368] (II) Loading /usr/lib/xorg/modules/input/libinput_drv.so
[     7.371] (II) Module libinput: vendor="X.Org Foundation"
[     7.371] 	compiled for 1.20.8, module version = 0.30.0
[     7.371] 	Module class: X.Org XInput Driver
[     7.371] 	ABI class: X.Org XInput driver, version 24.1
[     7.371] (II) Using input driver 'libinput' for 'Power Button'
[     7.371] (**) Power Button: always reports core events
[     7.371] (**) Option "Device" "/dev/input/event1"
[     7.371] (**) Option "_source" "server/udev"
[     7.380] (II) event1  - Power Button: is tagged by udev as: Keyboard
[     7.380] (II) event1  - Power Button: device is a keyboard
[     7.380] (II) event1  - Power Button: device removed
[     7.431] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/LNXPWRBN:00/input/input1/event1"
[     7.431] (II) XINPUT: Adding extended input device "Power Button" (type: KEYBOARD, id 6)
[     7.431] (**) Option "xkb_model" "pc105"
[     7.431] (**) Option "xkb_layout" "us"
[     7.432] (II) event1  - Power Button: is tagged by udev as: Keyboard
[     7.432] (II) event1  - Power Button: device is a keyboard
[     7.432] (II) config/udev: Adding input device Video Bus (/dev/input/event11)
[     7.432] (**) Video Bus: Applying InputClass "evdev keyboard catchall"
[     7.432] (**) Video Bus: Applying InputClass "libinput keyboard catchall"
[     7.432] (**) Video Bus: Applying InputClass "system-keyboard"
[     7.432] (II) Using input driver 'libinput' for 'Video Bus'
[     7.432] (**) Video Bus: always reports core events
[     7.432] (**) Option "Device" "/dev/input/event11"
[     7.432] (**) Option "_source" "server/udev"
[     7.433] (II) event11 - Video Bus: is tagged by udev as: Keyboard
[     7.433] (II) event11 - Video Bus: device is a keyboard
[     7.433] (II) event11 - Video Bus: device removed
[     7.484] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/LNXVIDEO:00/input/input12/event11"
[     7.484] (II) XINPUT: Adding extended input device "Video Bus" (type: KEYBOARD, id 7)
[     7.484] (**) Option "xkb_model" "pc105"
[     7.484] (**) Option "xkb_layout" "us"
[     7.485] (II) event11 - Video Bus: is tagged by udev as: Keyboard
[     7.485] (II) event11 - Video Bus: device is a keyboard
[     7.486] (II) config/udev: Adding input device Lid Switch (/dev/input/event0)
[     7.486] (II) No input driver specified, ignoring this device.
[     7.486] (II) This device may have been added with another device file.
[     7.486] (II) config/udev: Adding input device Video Bus (/dev/input/event12)
[     7.486] (**) Video Bus: Applying InputClass "evdev keyboard catchall"
[     7.486] (**) Video Bus: Applying InputClass "libinput keyboard catchall"
[     7.486] (**) Video Bus: Applying InputClass "system-keyboard"
[     7.486] (II) Using input driver 'libinput' for 'Video Bus'
[     7.486] (**) Video Bus: always reports core events
[     7.486] (**) Option "Device" "/dev/input/event12"
[     7.486] (**) Option "_source" "server/udev"
[     7.487] (II) event12 - Video Bus: is tagged by udev as: Keyboard
[     7.487] (II) event12 - Video Bus: device is a keyboard
[     7.488] (II) event12 - Video Bus: device removed
[     7.547] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:35/LNXVIDEO:01/input/input13/event12"
[     7.547] (II) XINPUT: Adding extended input device "Video Bus" (type: KEYBOARD, id 8)
[     7.547] (**) Option "xkb_model" "pc105"
[     7.548] (**) Option "xkb_layout" "us"
[     7.549] (II) event12 - Video Bus: is tagged by udev as: Keyboard
[     7.549] (II) event12 - Video Bus: device is a keyboard
[     7.550] (II) config/udev: Adding input device MOSART Semi. 2.4G Wireless Mouse (/dev/input/event7)
[     7.550] (**) MOSART Semi. 2.4G Wireless Mouse: Applying InputClass "evdev pointer catchall"
[     7.550] (**) MOSART Semi. 2.4G Wireless Mouse: Applying InputClass "libinput pointer catchall"
[     7.550] (II) Using input driver 'libinput' for 'MOSART Semi. 2.4G Wireless Mouse'
[     7.550] (**) MOSART Semi. 2.4G Wireless Mouse: always reports core events
[     7.550] (**) Option "Device" "/dev/input/event7"
[     7.550] (**) Option "_source" "server/udev"
[     7.732] (II) event7  - MOSART Semi. 2.4G Wireless Mouse: is tagged by udev as: Mouse
[     7.732] (II) event7  - MOSART Semi. 2.4G Wireless Mouse: device is a pointer
[     7.732] (II) event7  - MOSART Semi. 2.4G Wireless Mouse: device removed
[     7.791] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:14.0/usb1/1-2/1-2:1.0/0003:3938:1031.0001/input/input8/event7"
[     7.791] (II) XINPUT: Adding extended input device "MOSART Semi. 2.4G Wireless Mouse" (type: MOUSE, id 9)
[     7.791] (**) Option "AccelerationScheme" "none"
[     7.791] (**) MOSART Semi. 2.4G Wireless Mouse: (accel) selected scheme none/0
[     7.791] (**) MOSART Semi. 2.4G Wireless Mouse: (accel) acceleration factor: 2.000
[     7.791] (**) MOSART Semi. 2.4G Wireless Mouse: (accel) acceleration threshold: 4
[     7.849] (II) event7  - MOSART Semi. 2.4G Wireless Mouse: is tagged by udev as: Mouse
[     7.849] (II) event7  - MOSART Semi. 2.4G Wireless Mouse: device is a pointer
[     7.849] (II) config/udev: Adding input device MOSART Semi. 2.4G Wireless Mouse (/dev/input/mouse1)
[     7.849] (II) No input driver specified, ignoring this device.
[     7.849] (II) This device may have been added with another device file.
[     7.850] (II) config/udev: Adding input device MOSART Semi. 2.4G Wireless Mouse (/dev/input/event8)
[     7.850] (II) No input driver specified, ignoring this device.
[     7.850] (II) This device may have been added with another device file.
[     7.851] (II) config/udev: Adding input device HP Wide Vision HD Camera: HP Wi (/dev/input/event9)
[     7.851] (**) HP Wide Vision HD Camera: HP Wi: Applying InputClass "evdev keyboard catchall"
[     7.851] (**) HP Wide Vision HD Camera: HP Wi: Applying InputClass "libinput keyboard catchall"
[     7.851] (**) HP Wide Vision HD Camera: HP Wi: Applying InputClass "system-keyboard"
[     7.851] (II) Using input driver 'libinput' for 'HP Wide Vision HD Camera: HP Wi'
[     7.851] (**) HP Wide Vision HD Camera: HP Wi: always reports core events
[     7.851] (**) Option "Device" "/dev/input/event9"
[     7.851] (**) Option "_source" "server/udev"
[     7.852] (II) event9  - HP Wide Vision HD Camera: HP Wi: is tagged by udev as: Keyboard
[     7.852] (II) event9  - HP Wide Vision HD Camera: HP Wi: device is a keyboard
[     7.852] (II) event9  - HP Wide Vision HD Camera: HP Wi: device removed
[     7.907] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:14.0/usb1/1-5/1-5:1.0/input/input11/event9"
[     7.907] (II) XINPUT: Adding extended input device "HP Wide Vision HD Camera: HP Wi" (type: KEYBOARD, id 10)
[     7.907] (**) Option "xkb_model" "pc105"
[     7.907] (**) Option "xkb_layout" "us"
[     7.909] (II) event9  - HP Wide Vision HD Camera: HP Wi: is tagged by udev as: Keyboard
[     7.909] (II) event9  - HP Wide Vision HD Camera: HP Wi: device is a keyboard
[     7.910] (II) config/udev: Adding input device HDA Intel PCH Mic (/dev/input/event13)
[     7.910] (II) No input driver specified, ignoring this device.
[     7.910] (II) This device may have been added with another device file.
[     7.910] (II) config/udev: Adding input device HDA Intel PCH Headphone (/dev/input/event14)
[     7.910] (II) No input driver specified, ignoring this device.
[     7.910] (II) This device may have been added with another device file.
[     7.910] (II) config/udev: Adding input device HDA Intel PCH HDMI/DP,pcm=3 (/dev/input/event15)
[     7.910] (II) No input driver specified, ignoring this device.
[     7.910] (II) This device may have been added with another device file.
[     7.911] (II) config/udev: Adding input device HDA Intel PCH HDMI/DP,pcm=7 (/dev/input/event16)
[     7.911] (II) No input driver specified, ignoring this device.
[     7.911] (II) This device may have been added with another device file.
[     7.911] (II) config/udev: Adding input device HDA Intel PCH HDMI/DP,pcm=8 (/dev/input/event17)
[     7.911] (II) No input driver specified, ignoring this device.
[     7.911] (II) This device may have been added with another device file.
[     7.911] (II) config/udev: Adding input device HDA Intel PCH HDMI/DP,pcm=9 (/dev/input/event18)
[     7.911] (II) No input driver specified, ignoring this device.
[     7.911] (II) This device may have been added with another device file.
[     7.912] (II) config/udev: Adding input device HDA Intel PCH HDMI/DP,pcm=10 (/dev/input/event19)
[     7.912] (II) No input driver specified, ignoring this device.
[     7.912] (II) This device may have been added with another device file.
[     7.912] (II) config/udev: Adding input device AT Translated Set 2 keyboard (/dev/input/event2)
[     7.912] (**) AT Translated Set 2 keyboard: Applying InputClass "evdev keyboard catchall"
[     7.912] (**) AT Translated Set 2 keyboard: Applying InputClass "libinput keyboard catchall"
[     7.912] (**) AT Translated Set 2 keyboard: Applying InputClass "system-keyboard"
[     7.912] (II) Using input driver 'libinput' for 'AT Translated Set 2 keyboard'
[     7.912] (**) AT Translated Set 2 keyboard: always reports core events
[     7.912] (**) Option "Device" "/dev/input/event2"
[     7.912] (**) Option "_source" "server/udev"
[     7.913] (II) event2  - AT Translated Set 2 keyboard: is tagged by udev as: Keyboard
[     7.913] (II) event2  - AT Translated Set 2 keyboard: device is a keyboard
[     7.914] (II) event2  - AT Translated Set 2 keyboard: device removed
[     7.941] (**) Option "config_info" "udev:/sys/devices/platform/i8042/serio0/input/input2/event2"
[     7.941] (II) XINPUT: Adding extended input device "AT Translated Set 2 keyboard" (type: KEYBOARD, id 11)
[     7.941] (**) Option "xkb_model" "pc105"
[     7.941] (**) Option "xkb_layout" "us"
[     7.942] (II) event2  - AT Translated Set 2 keyboard: is tagged by udev as: Keyboard
[     7.942] (II) event2  - AT Translated Set 2 keyboard: device is a keyboard
[     7.943] (II) config/udev: Adding input device SynPS/2 Synaptics TouchPad (/dev/input/event3)
[     7.943] (**) SynPS/2 Synaptics TouchPad: Applying InputClass "evdev touchpad catchall"
[     7.943] (**) SynPS/2 Synaptics TouchPad: Applying InputClass "libinput touchpad catchall"
[     7.943] (II) Using input driver 'libinput' for 'SynPS/2 Synaptics TouchPad'
[     7.943] (**) SynPS/2 Synaptics TouchPad: always reports core events
[     7.943] (**) Option "Device" "/dev/input/event3"
[     7.943] (**) Option "_source" "server/udev"
[     7.944] (II) event3  - SynPS/2 Synaptics TouchPad: is tagged by udev as: Touchpad
[     7.946] (II) event3  - SynPS/2 Synaptics TouchPad: device is a touchpad
[     7.946] (II) event3  - SynPS/2 Synaptics TouchPad: device removed
[     8.018] (**) Option "config_info" "udev:/sys/devices/platform/i8042/serio1/input/input4/event3"
[     8.018] (II) XINPUT: Adding extended input device "SynPS/2 Synaptics TouchPad" (type: TOUCHPAD, id 12)
[     8.019] (**) Option "AccelerationScheme" "none"
[     8.019] (**) SynPS/2 Synaptics TouchPad: (accel) selected scheme none/0
[     8.019] (**) SynPS/2 Synaptics TouchPad: (accel) acceleration factor: 2.000
[     8.019] (**) SynPS/2 Synaptics TouchPad: (accel) acceleration threshold: 4
[     8.020] (II) event3  - SynPS/2 Synaptics TouchPad: is tagged by udev as: Touchpad
[     8.021] (II) event3  - SynPS/2 Synaptics TouchPad: device is a touchpad
[     8.022] (II) config/udev: Adding input device SynPS/2 Synaptics TouchPad (/dev/input/mouse0)
[     8.022] (II) No input driver specified, ignoring this device.
[     8.022] (II) This device may have been added with another device file.
[     8.022] (II) config/udev: Adding input device ST LIS3LV02DL Accelerometer (/dev/input/event6)
[     8.022] (II) No input driver specified, ignoring this device.
[     8.022] (II) This device may have been added with another device file.
[     8.022] (II) config/udev: Adding input device ST LIS3LV02DL Accelerometer (/dev/input/js0)
[     8.022] (II) No input driver specified, ignoring this device.
[     8.022] (II) This device may have been added with another device file.
[     8.023] (II) config/udev: Adding input device PC Speaker (/dev/input/event5)
[     8.023] (II) No input driver specified, ignoring this device.
[     8.023] (II) This device may have been added with another device file.
[     8.025] (II) config/udev: Adding input device HP WMI hotkeys (/dev/input/event10)
[     8.025] (**) HP WMI hotkeys: Applying InputClass "evdev keyboard catchall"
[     8.025] (**) HP WMI hotkeys: Applying InputClass "libinput keyboard catchall"
[     8.025] (**) HP WMI hotkeys: Applying InputClass "system-keyboard"
[     8.025] (II) Using input driver 'libinput' for 'HP WMI hotkeys'
[     8.025] (**) HP WMI hotkeys: always reports core events
[     8.025] (**) Option "Device" "/dev/input/event10"
[     8.025] (**) Option "_source" "server/udev"
[     8.026] (II) event10 - HP WMI hotkeys: is tagged by udev as: Keyboard Switch
[     8.026] (II) event10 - HP WMI hotkeys: device is a keyboard
[     8.026] (II) event10 - HP WMI hotkeys: device is a switch device
[     8.026] (II) event10 - HP WMI hotkeys: device removed
[     8.058] (**) Option "config_info" "udev:/sys/devices/virtual/input/input10/event10"
[     8.058] (II) XINPUT: Adding extended input device "HP WMI hotkeys" (type: KEYBOARD, id 13)
[     8.058] (**) Option "xkb_model" "pc105"
[     8.058] (**) Option "xkb_layout" "us"
[     8.058] (II) event10 - HP WMI hotkeys: is tagged by udev as: Keyboard Switch
[     8.058] (II) event10 - HP WMI hotkeys: device is a keyboard
[     8.059] (II) event10 - HP WMI hotkeys: device is a switch device
[     8.059] (II) config/udev: Adding input device HP Wireless hotkeys (/dev/input/event4)
[     8.059] (**) HP Wireless hotkeys: Applying InputClass "evdev keyboard catchall"
[     8.059] (**) HP Wireless hotkeys: Applying InputClass "libinput keyboard catchall"
[     8.059] (**) HP Wireless hotkeys: Applying InputClass "system-keyboard"
[     8.059] (II) Using input driver 'libinput' for 'HP Wireless hotkeys'
[     8.059] (**) HP Wireless hotkeys: always reports core events
[     8.059] (**) Option "Device" "/dev/input/event4"
[     8.059] (**) Option "_source" "server/udev"
[     8.060] (II) event4  - HP Wireless hotkeys: is tagged by udev as: Keyboard
[     8.060] (II) event4  - HP Wireless hotkeys: device is a keyboard
[     8.060] (II) event4  - HP Wireless hotkeys: device removed
[     8.111] (**) Option "config_info" "udev:/sys/devices/virtual/input/input5/event4"
[     8.111] (II) XINPUT: Adding extended input device "HP Wireless hotkeys" (type: KEYBOARD, id 14)
[     8.111] (**) Option "xkb_model" "pc105"
[     8.111] (**) Option "xkb_layout" "us"
[     8.112] (II) event4  - HP Wireless hotkeys: is tagged by udev as: Keyboard
[     8.112] (II) event4  - HP Wireless hotkeys: device is a keyboard
[    17.444] (II) modeset(0): EDID vendor "BOE", prod id 1835
[    17.445] (II) modeset(0): Printing DDC gathered Modelines:
[    17.445] (II) modeset(0): Modeline "1920x1080"x0.0  140.24  1920 1968 2000 2124  1080 1083 1089 1100 +hsync -vsync (66.0 kHz eP)
[    18.270] (II) modeset(0): EDID vendor "BOE", prod id 1835
[    18.270] (II) modeset(0): Printing DDC gathered Modelines:
[    18.270] (II) modeset(0): Modeline "1920x1080"x0.0  140.24  1920 1968 2000 2124  1080 1083 1089 1100 +hsync -vsync (66.0 kHz eP)
[    20.312] (II) modeset(0): EDID vendor "BOE", prod id 1835
[    20.312] (II) modeset(0): Printing DDC gathered Modelines:
[    20.312] (II) modeset(0): Modeline "1920x1080"x0.0  140.24  1920 1968 2000 2124  1080 1083 1089 1100 +hsync -vsync (66.0 kHz eP)
[    54.960] (EE) event7  - MOSART Semi. 2.4G Wireless Mouse: client bug: event processing lagging behind by 11ms, your system is too slow

It gives the same error? What’s the output of nvidia-smi? It seems the problem is still the same. What happens if you modify the configuration like this:

Section "ServerLayout"
    Identifier "layout"
    Screen 0 "iGPU"
EndSection

Section "Device"
    Identifier "iGPU"
    Driver "modesetting"
    BusID "PCI:0:2:0"
EndSection

Section "Screen"
    Identifier "iGPU"
    Device "iGPU"
EndSection

Section "Device"
    Identifier "dGPU"
    Driver "nvidia"
    BusID "PCI:1:0:0"
EndSection
1 Like

Sorry for the late reply.
Yes, it’s giving the exact same error.

nvidia-smi

Thu Jan 21 23:54:15 2021       
+-----------------------------------------------------------------------------+
| NVIDIA-SMI 460.32.03    Driver Version: 460.32.03    CUDA Version: 11.2     |
|-------------------------------+----------------------+----------------------+
| GPU  Name        Persistence-M| Bus-Id        Disp.A | Volatile Uncorr. ECC |
| Fan  Temp  Perf  Pwr:Usage/Cap|         Memory-Usage | GPU-Util  Compute M. |
|                               |                      |               MIG M. |
|===============================+======================+======================|
|   0  GeForce 940MX       Off  | 00000000:01:00.0 Off |                  N/A |
| N/A   28C    P8    N/A /  N/A |      0MiB /  4046MiB |      0%      Default |
|                               |                      |                  N/A |
+-------------------------------+----------------------+----------------------+
                                                                               
+-----------------------------------------------------------------------------+
| Processes:                                                                  |
|  GPU   GI   CI        PID   Type   Process name                  GPU Memory |
|        ID   ID                                                   Usage      |
|=============================================================================|
|  No running processes found                                                 |
+-----------------------------------------------------------------------------+

I’ll modify and let you know.

EDIT : It’s fixed now!

prime-run glxinfo | grep -i vendor

server glx vendor string: NVIDIA Corporation
client glx vendor string: NVIDIA Corporation
OpenGL vendor string: NVIDIA Corporation

Can you, if possible, explain what exactly was the problem? I’m curious, that’s all.

But I don’t know why. I also don’t know why this last configuration fixed it, and why the previous ones did not.

1 Like

Interesting… Anyway, thanks for helping me out!

This topic was automatically closed 15 days after the last reply. New replies are no longer allowed.