You are not logged in.
SOLUTION @ THE BOTTOM OF THIS POST
Hi all,
I'm not sure where to begin with this one - and my animal brain is telling me to reinstall Arch completely (that's 25 years of windows use talking).
Basically I'm looking for any advise - whether there's a config I could nuke, whether this looks like a Kwin or nvidia or Xorg issue (I'm not sure).
Problem:
Something is causing Kwin compositor to crash (almost) every time I use xrandr or kscreen-doctor to switch between monitors since about the release of Plasma 6.1 (a couple of months ago), it's a rough guess so I'm not pinning it on 6.1.
The screen goes blank with only the mouse visible for about 10-15 seconds - sometimes longer, with the notification "Kwin desktop effects restarted due to a graphics reset" displayed when it recovers.
A plasmashell crash reporter window will sometimes appear as well.
The issue isn't going away with updates.
This does not happen on Wayland.
I use a script (see below) which is bound to shortcut keys, for switching between my office and my living room:
example use: sh "/path/to/script/screenswitch.sh" tv
To switch from my office to my TV in the living room
#!/bin/bash
# HDMI-A-0 = XP PEN Tablet
# HDMI-A-1 = TV
# DP-1 = Dell Ultrawide
# DP-2 = ASUS 27"
# DP-3 = Phillips
session_type=$(echo $XDG_SESSION_TYPE)
if [[ $1 == 'tv' && $session_type == 'wayland' ]]; then
kscreen-doctor output.HDMI-A-1.enable output.HDMI-A-1.mode.1
kscreen-doctor output.DP-1.disable
kscreen-doctor output.DP-2.disable
kscreen-doctor output.DP-3.disable
elif [[ $1 == 'tv' && $session_type == 'x11' ]]; then
xrandr --output HDMI-0 --mode 1920x1080 --pos 0x0 --rotate normal --refresh 60 --scale 1x1 --output DP-2 --off --output DP-0 --off --output DP-5 --off --output HDMI-1 --off
elif [[ $1 == 'tv-24' && $session_type == 'wayland' ]]; then
kscreen-doctor output.HDMI-A-1.enable output.HDMI-A-1.mode.3
kscreen-doctor output.DP-1.disable
kscreen-doctor output.DP-2.disable
kscreen-doctor output.DP-3.disable
elif [[ $1 == 'tv-24' && $session_type == 'x11' ]]; then
xrandr --output HDMI-0 --mode 1920x1080 --pos 0x0 --rotate normal --refresh 24 --scale 1x1 --output DP-2 --off --output DP-0 --off --output DP-5 --off --output HDMI-1 --off
elif [[ $1 == 'tv-50' && $session_type == 'wayland' ]]; then
kscreen-doctor output.HDMI-A-1.enable output.HDMI-A-1.mode.2
kscreen-doctor output.DP-1.disable
kscreen-doctor output.DP-2.disable
kscreen-doctor output.DP-3.disable
elif [[ $1 == 'tv-50' && $session_type == 'x11' ]]; then
xrandr --output HDMI-0 --mode 1920x1080 --pos 0x0 --rotate normal --refresh 50 --scale 1x1 --output DP-2 --off --output DP-0 --off --output DP-5 --off --output HDMI-1 --off
elif [[ $1 == '4k' && $session_type == 'x11' ]]; then
xrandr --output HDMI-0 --mode 1920x1080 --pos 0x0 --rotate normal --refresh 60 --scale 2.0x2.0 --output DP-2 --off --output DP-0 --off --output DP-5 --off --output HDMI-1 --off
elif [[ $1 == '2k' && $session_type == 'x11' ]]; then
xrandr --output HDMI-0 --mode 1920x1080 --pos 0x0 --rotate normal --refresh 60 --scale 1.33333333333x1.33333333333 --output DP-2 --off --output DP-0 --off --output DP-5 --off --output HDMI-1 --off
elif [[ $1 == 'left' && $session_type == 'wayland' ]]; then
kscreen-doctor output.HDMI-A-1.disable
kscreen-doctor output.DP-1.disable
kscreen-doctor output.DP-2.enable output.DP-2.mode.1
kscreen-doctor output.DP-3.disable
elif [[ $1 == 'left' && $session_type == 'x11' ]]; then
xrandr --output DP-2 --mode 2560x1440 --pos 0x0 --rotate normal --refresh 120 --output DP-0 --off --output DP-5 --off --output HDMI-1 --off --output HDMI-0 --off
elif [[ $1 == 'all' && $session_type == 'wayland' ]]; then
kscreen-doctor output.HDMI-A-1.disable
kscreen-doctor output.DP-3.enable output.DP-3.mode.0 output.DP-3.priority.3 output.DP-3.position.6000,0 output.DP-3.rotation.right
kscreen-doctor output.DP-1.enable output.DP-1.mode.1 output.DP-1.priority.1 output.DP-1.position.2560,240
kscreen-doctor output.DP-2.enable output.DP-2.mode.1 output.DP-2.priority.2 output.DP-2.position.0,240
elif [[ $1 == 'all' && $session_type == 'x11' ]]; then
if [ $(xrandr | grep "HDMI-1" | grep " connected " | awk '{ print$1 }') == "HDMI-1" ]
then
xrandr --output DP-2 --mode 2560x1440 --pos 0x240 --rotate normal --refresh 120 --output DP-0 --mode 3440x1440 --primary --pos 2560x240 --rotate normal --refresh 120 --output DP-5 --mode 1920x1080 --pos 6000x0 --rotate right --refresh 60 --output HDMI-1 --mode 1920x1080 --pos 2912x1680 --rotate normal --refresh 60
else
xrandr --output DP-2 --mode 2560x1440 --pos 0x240 --rotate normal --refresh 120 --output DP-0 --mode 3440x1440 --primary --pos 2560x240 --rotate normal --refresh 120 --output DP-5 --mode 1920x1080 --pos 6000x0 --rotate right --refresh 60 --output HDMI-1 --off
fi
fi
When crashing occurs:
When switching between monitors.
When turning my office monitors off and my TV on, crash guaranteed.
Or switching between my office monitors, crashing occurs slightly less frequently here.
Launching Steam will sometimes switch my left most monitor in my office on and turn my TV off, triggering a crash.
Though I haven't verified it's switching my office monitor on, I do have to use my TV shortcut to get the screen back - this happens infrequently.
When crashing does not occur:
When switching between resolutions and refresh rates on my TV.
I haven't tried switching res or refresh on my office monitors since I never need to.
Crash info (journal):
Since I'm able to trigger the crash at will, I've put the journal output below from moments before triggering to just after.
Let me know if there is another log/source that would provide clearer data.
> journalctl -fe
Jul 27 18:04:02 main kded6[46686]: colord: Primary CRTC is at CRTC 0
Jul 27 18:04:02 main kded6[46686]: colord: Setting X atom (id: 3 ) "_ICC_PROFILE_3" on output: "HDMI-1"
Jul 27 18:04:02 main kded6[46686]: colord: PNP ID "PHL" Vendor Name "Philips Consumer Electronics Company"
Jul 27 18:04:02 main kded6[46686]: colord: Adding device id "xrandr-Philips Consumer Electronics Company-PHL 241S6Q-UHB1638016981"
Jul 27 18:04:02 main kded6[46686]: colord: Output Hash "79899ec4db6a85c75509e3e2182f24a7"
Jul 27 18:04:02 main kded6[46686]: colord: Output isLaptop false
Jul 27 18:04:02 main kded6[46686]: colord: Failed to register device: "device id 'xrandr-Philips Consumer Electronics Company-PHL 241S6Q-UHB1638016981' already exists"
Jul 27 18:04:02 main kded6[46686]: colord: Found colord device "/org/freedesktop/ColorManager/devices/xrandr_Philips_Consumer_Electronics_Company_PHL_241S6Q_UHB1638016981_username_1000"
Jul 27 18:04:02 main kded6[46686]: colord: Found EDID profile for device "/org/freedesktop/ColorManager/profiles/icc_ede05c59982adb1dd1888433e329d3ee_username_1000" "DP-5"
Jul 27 18:04:02 main kded6[46686]: colord: Device changed "/org/freedesktop/ColorManager/devices/xrandr_Philips_Consumer_Electronics_Company_PHL_241S6Q_UHB1638016981_username_1000"
Jul 27 18:04:02 main kded6[46686]: colord: profileDefault "/org/freedesktop/ColorManager/profiles/icc_ede05c59982adb1dd1888433e329d3ee_username_1000"
Jul 27 18:04:02 main kded6[46686]: colord: Default Profile Filename "DP-5" "/home/username/.local/share/icc/edid-79899ec4db6a85c75509e3e2182f24a7.icc"
Jul 27 18:04:02 main kded6[46686]: colord: Profile does not have any VCGT data, reseting "DP-5" "/home/username/.local/share/icc/edid-79899ec4db6a85c75509e3e2182f24a7.icc"
Jul 27 18:04:02 main kded6[46686]: colord: Primary CRTC is at CRTC 0
Jul 27 18:04:02 main kded6[46686]: colord: Setting X atom (id: 2 ) "_ICC_PROFILE_2" on output: "DP-5"
Jul 27 18:04:02 main kded6[46686]: colord: Checking outputs
Jul 27 18:04:02 main kded6[46686]: colord: PNP ID "DEL" Vendor Name "Dell Inc."
Jul 27 18:04:02 main kded6[46686]: colord: Adding device id "xrandr-Dell Inc.-Dell AW3418DW-#ASNBebk2u03d"
Jul 27 18:04:02 main kded6[46686]: colord: Output Hash "5284cf16c9111d9fd859880b029caebe"
Jul 27 18:04:02 main kded6[46686]: colord: Output isLaptop false
Jul 27 18:04:02 main kded6[46686]: colord: Failed to register device: "device id 'xrandr-Dell Inc.-Dell AW3418DW-#ASNBebk2u03d' already exists"
Jul 27 18:04:02 main kded6[46686]: colord: Found colord device "/org/freedesktop/ColorManager/devices/xrandr_Dell_Inc__Dell_AW3418DW__ASNBebk2u03d_username_1000"
Jul 27 18:04:02 main kded6[46686]: colord: Found EDID profile for device "/org/freedesktop/ColorManager/profiles/icc_5539629600833a471f9ac32b912f5817_username_1000" "DP-0"
Jul 27 18:04:02 main kded6[46686]: colord: Device changed "/org/freedesktop/ColorManager/devices/xrandr_Dell_Inc__Dell_AW3418DW__ASNBebk2u03d_username_1000"
Jul 27 18:04:02 main kded6[46686]: colord: profileDefault "/org/freedesktop/ColorManager/profiles/icc_5539629600833a471f9ac32b912f5817_username_1000"
Jul 27 18:04:02 main kded6[46686]: colord: Default Profile Filename "DP-0" "/home/username/.local/share/icc/edid-5284cf16c9111d9fd859880b029caebe.icc"
Jul 27 18:04:02 main kded6[46686]: colord: Profile does not have any VCGT data, reseting "DP-0" "/home/username/.local/share/icc/edid-5284cf16c9111d9fd859880b029caebe.icc"
Jul 27 18:04:02 main kded6[46686]: colord: Primary CRTC is at CRTC 0
Jul 27 18:04:02 main kded6[46686]: colord: Setting X atom (id: 0 ) "_ICC_PROFILE" on output: "DP-0"
Jul 27 18:04:02 main kded6[46686]: colord: PNP ID "ACI" Vendor Name "Ancor Communications Inc"
Jul 27 18:04:02 main kded6[46686]: colord: Adding device id "xrandr-Ancor Communications Inc-ROG PG278Q-#ASMJW+hoxMPd"
Jul 27 18:04:02 main kded6[46686]: colord: Output Hash "9440debc9077bee3daf4af97e5afcf30"
Jul 27 18:04:02 main kded6[46686]: colord: Output isLaptop false
Jul 27 18:04:02 main kded6[46686]: colord: Failed to register device: "device id 'xrandr-Ancor Communications Inc-ROG PG278Q-#ASMJW+hoxMPd' already exists"
Jul 27 18:04:02 main kded6[46686]: colord: Found colord device "/org/freedesktop/ColorManager/devices/xrandr_Ancor_Communications_Inc_ROG_PG278Q__ASMJW_hoxMPd_username_1000"
Jul 27 18:04:02 main kded6[46686]: colord: Found EDID profile for device "/org/freedesktop/ColorManager/profiles/icc_ceed6af52c3ea581b7ec8b707ed50a67_username_1000" "DP-2"
Jul 27 18:04:02 main kded6[46686]: colord: Device changed "/org/freedesktop/ColorManager/devices/xrandr_Ancor_Communications_Inc_ROG_PG278Q__ASMJW_hoxMPd_username_1000"
Jul 27 18:04:02 main kded6[46686]: colord: profileDefault "/org/freedesktop/ColorManager/profiles/icc_ceed6af52c3ea581b7ec8b707ed50a67_username_1000"
Jul 27 18:04:02 main kded6[46686]: colord: Default Profile Filename "DP-2" "/home/username/.local/share/icc/edid-9440debc9077bee3daf4af97e5afcf30.icc"
Jul 27 18:04:02 main kded6[46686]: colord: Profile does not have any VCGT data, reseting "DP-2" "/home/username/.local/share/icc/edid-9440debc9077bee3daf4af97e5afcf30.icc"
Jul 27 18:04:02 main kded6[46686]: colord: Primary CRTC is at CRTC 0
Jul 27 18:04:02 main kded6[46686]: colord: Setting X atom (id: 1 ) "_ICC_PROFILE_1" on output: "DP-2"
Jul 27 18:04:02 main kded6[46686]: colord: PNP ID "UGD" Vendor Name ""
Jul 27 18:04:02 main kded6[46686]: colord: Adding device id "xrandr-ID160F-20200316"
Jul 27 18:04:02 main kded6[46686]: colord: Output Hash "b9c1da027acd2ef8cc73a6a1eb9ae944"
Jul 27 18:04:02 main kded6[46686]: colord: Output isLaptop false
Jul 27 18:04:02 main kded6[46686]: colord: Failed to register device: "device id 'xrandr-ID160F-20200316' already exists"
Jul 27 18:04:02 main kded6[46686]: colord: Found colord device "/org/freedesktop/ColorManager/devices/xrandr_ID160F_20200316_username_1000"
Jul 27 18:04:02 main kded6[46686]: colord: Found EDID profile for device "/org/freedesktop/ColorManager/profiles/icc_e276044e630d6bca4b0a595f94aedaaa_username_1000" "HDMI-1"
Jul 27 18:04:02 main kded6[46686]: colord: Device changed "/org/freedesktop/ColorManager/devices/xrandr_ID160F_20200316_username_1000"
Jul 27 18:04:02 main kded6[46686]: colord: profileDefault "/org/freedesktop/ColorManager/profiles/icc_e276044e630d6bca4b0a595f94aedaaa_username_1000"
Jul 27 18:04:02 main kded6[46686]: colord: Default Profile Filename "HDMI-1" "/home/username/.local/share/icc/edid-b9c1da027acd2ef8cc73a6a1eb9ae944.icc"
Jul 27 18:04:02 main kded6[46686]: colord: Profile does not have any VCGT data, reseting "HDMI-1" "/home/username/.local/share/icc/edid-b9c1da027acd2ef8cc73a6a1eb9ae944.icc"
Jul 27 18:04:02 main kded6[46686]: colord: Primary CRTC is at CRTC 0
Jul 27 18:04:02 main kded6[46686]: colord: Setting X atom (id: 3 ) "_ICC_PROFILE_3" on output: "HDMI-1"
Jul 27 18:04:02 main kded6[46686]: colord: PNP ID "PHL" Vendor Name "Philips Consumer Electronics Company"
Jul 27 18:04:02 main kded6[46686]: colord: Adding device id "xrandr-Philips Consumer Electronics Company-PHL 241S6Q-UHB1638016981"
Jul 27 18:04:02 main kded6[46686]: colord: Output Hash "79899ec4db6a85c75509e3e2182f24a7"
Jul 27 18:04:02 main kded6[46686]: colord: Output isLaptop false
Jul 27 18:04:02 main kded6[46686]: colord: Failed to register device: "device id 'xrandr-Philips Consumer Electronics Company-PHL 241S6Q-UHB1638016981' already exists"
Jul 27 18:04:02 main kded6[46686]: colord: Found colord device "/org/freedesktop/ColorManager/devices/xrandr_Philips_Consumer_Electronics_Company_PHL_241S6Q_UHB1638016981_username_1000"
Jul 27 18:04:02 main kded6[46686]: colord: Found EDID profile for device "/org/freedesktop/ColorManager/profiles/icc_ede05c59982adb1dd1888433e329d3ee_username_1000" "DP-5"
Jul 27 18:04:02 main kded6[46686]: colord: Device changed "/org/freedesktop/ColorManager/devices/xrandr_Philips_Consumer_Electronics_Company_PHL_241S6Q_UHB1638016981_username_1000"
Jul 27 18:04:03 main kded6[46686]: colord: profileDefault "/org/freedesktop/ColorManager/profiles/icc_ede05c59982adb1dd1888433e329d3ee_username_1000"
Jul 27 18:04:03 main kded6[46686]: colord: Default Profile Filename "DP-5" "/home/username/.local/share/icc/edid-79899ec4db6a85c75509e3e2182f24a7.icc"
Jul 27 18:04:03 main kded6[46686]: colord: Profile does not have any VCGT data, reseting "DP-5" "/home/username/.local/share/icc/edid-79899ec4db6a85c75509e3e2182f24a7.icc"
Jul 27 18:04:03 main kded6[46686]: colord: Primary CRTC is at CRTC 0
Jul 27 18:04:03 main kded6[46686]: colord: Setting X atom (id: 2 ) "_ICC_PROFILE_2" on output: "DP-5"
Jul 27 18:04:03 main kded6[46686]: colord: Checking outputs
Jul 27 18:04:03 main kded6[46686]: colord: PNP ID "DEL" Vendor Name "Dell Inc."
Jul 27 18:04:03 main kded6[46686]: colord: Adding device id "xrandr-Dell Inc.-Dell AW3418DW-#ASNBebk2u03d"
Jul 27 18:04:03 main kded6[46686]: colord: Output Hash "5284cf16c9111d9fd859880b029caebe"
Jul 27 18:04:03 main kded6[46686]: colord: Output isLaptop false
Jul 27 18:04:03 main kded6[46686]: colord: Failed to register device: "device id 'xrandr-Dell Inc.-Dell AW3418DW-#ASNBebk2u03d' already exists"
Jul 27 18:04:03 main kded6[46686]: colord: Found colord device "/org/freedesktop/ColorManager/devices/xrandr_Dell_Inc__Dell_AW3418DW__ASNBebk2u03d_username_1000"
Jul 27 18:04:03 main kded6[46686]: colord: Found EDID profile for device "/org/freedesktop/ColorManager/profiles/icc_5539629600833a471f9ac32b912f5817_username_1000" "DP-0"
Jul 27 18:04:03 main kded6[46686]: colord: Device changed "/org/freedesktop/ColorManager/devices/xrandr_Dell_Inc__Dell_AW3418DW__ASNBebk2u03d_username_1000"
Jul 27 18:04:03 main kded6[46686]: colord: profileDefault "/org/freedesktop/ColorManager/profiles/icc_5539629600833a471f9ac32b912f5817_username_1000"
Jul 27 18:04:03 main kded6[46686]: colord: Default Profile Filename "DP-0" "/home/username/.local/share/icc/edid-5284cf16c9111d9fd859880b029caebe.icc"
Jul 27 18:04:03 main kded6[46686]: colord: Profile does not have any VCGT data, reseting "DP-0" "/home/username/.local/share/icc/edid-5284cf16c9111d9fd859880b029caebe.icc"
Jul 27 18:04:03 main kded6[46686]: colord: Primary CRTC is at CRTC 0
Jul 27 18:04:03 main kded6[46686]: colord: Setting X atom (id: 0 ) "_ICC_PROFILE" on output: "DP-0"
Jul 27 18:04:03 main kded6[46686]: colord: PNP ID "ACI" Vendor Name "Ancor Communications Inc"
Jul 27 18:04:03 main kded6[46686]: colord: Adding device id "xrandr-Ancor Communications Inc-ROG PG278Q-#ASMJW+hoxMPd"
Jul 27 18:04:03 main kded6[46686]: colord: Output Hash "9440debc9077bee3daf4af97e5afcf30"
Jul 27 18:04:03 main kded6[46686]: colord: Output isLaptop false
Jul 27 18:04:03 main kded6[46686]: colord: Failed to register device: "device id 'xrandr-Ancor Communications Inc-ROG PG278Q-#ASMJW+hoxMPd' already exists"
Jul 27 18:04:03 main kded6[46686]: colord: Found colord device "/org/freedesktop/ColorManager/devices/xrandr_Ancor_Communications_Inc_ROG_PG278Q__ASMJW_hoxMPd_username_1000"
Jul 27 18:04:03 main kded6[46686]: colord: Found EDID profile for device "/org/freedesktop/ColorManager/profiles/icc_ceed6af52c3ea581b7ec8b707ed50a67_username_1000" "DP-2"
Jul 27 18:04:03 main kded6[46686]: colord: Device changed "/org/freedesktop/ColorManager/devices/xrandr_Ancor_Communications_Inc_ROG_PG278Q__ASMJW_hoxMPd_username_1000"
Jul 27 18:04:03 main kded6[46686]: colord: profileDefault "/org/freedesktop/ColorManager/profiles/icc_ceed6af52c3ea581b7ec8b707ed50a67_username_1000"
Jul 27 18:04:03 main kded6[46686]: colord: Default Profile Filename "DP-2" "/home/username/.local/share/icc/edid-9440debc9077bee3daf4af97e5afcf30.icc"
Jul 27 18:04:03 main kded6[46686]: colord: Profile does not have any VCGT data, reseting "DP-2" "/home/username/.local/share/icc/edid-9440debc9077bee3daf4af97e5afcf30.icc"
Jul 27 18:04:03 main kded6[46686]: colord: Primary CRTC is at CRTC 0
Jul 27 18:04:03 main kded6[46686]: colord: Setting X atom (id: 1 ) "_ICC_PROFILE_1" on output: "DP-2"
Jul 27 18:04:03 main kded6[46686]: colord: PNP ID "UGD" Vendor Name ""
Jul 27 18:04:03 main kded6[46686]: colord: Adding device id "xrandr-ID160F-20200316"
Jul 27 18:04:03 main kded6[46686]: colord: Output Hash "b9c1da027acd2ef8cc73a6a1eb9ae944"
Jul 27 18:04:03 main kded6[46686]: colord: Output isLaptop false
Jul 27 18:04:03 main kded6[46686]: colord: Failed to register device: "device id 'xrandr-ID160F-20200316' already exists"
Jul 27 18:04:03 main kded6[46686]: colord: Found colord device "/org/freedesktop/ColorManager/devices/xrandr_ID160F_20200316_username_1000"
Jul 27 18:04:03 main kded6[46686]: colord: Found EDID profile for device "/org/freedesktop/ColorManager/profiles/icc_e276044e630d6bca4b0a595f94aedaaa_username_1000" "HDMI-1"
Jul 27 18:04:03 main kded6[46686]: colord: Device changed "/org/freedesktop/ColorManager/devices/xrandr_ID160F_20200316_username_1000"
Jul 27 18:04:03 main kded6[46686]: colord: profileDefault "/org/freedesktop/ColorManager/profiles/icc_e276044e630d6bca4b0a595f94aedaaa_username_1000"
Jul 27 18:04:03 main kded6[46686]: colord: Default Profile Filename "HDMI-1" "/home/username/.local/share/icc/edid-b9c1da027acd2ef8cc73a6a1eb9ae944.icc"
Jul 27 18:04:03 main kded6[46686]: colord: Profile does not have any VCGT data, reseting "HDMI-1" "/home/username/.local/share/icc/edid-b9c1da027acd2ef8cc73a6a1eb9ae944.icc"
Jul 27 18:04:03 main kded6[46686]: colord: Primary CRTC is at CRTC 0
Jul 27 18:04:03 main kded6[46686]: colord: Setting X atom (id: 3 ) "_ICC_PROFILE_3" on output: "HDMI-1"
Jul 27 18:04:03 main kded6[46686]: colord: PNP ID "PHL" Vendor Name "Philips Consumer Electronics Company"
Jul 27 18:04:03 main kded6[46686]: colord: Adding device id "xrandr-Philips Consumer Electronics Company-PHL 241S6Q-UHB1638016981"
Jul 27 18:04:03 main kded6[46686]: colord: Output Hash "79899ec4db6a85c75509e3e2182f24a7"
Jul 27 18:04:03 main kded6[46686]: colord: Output isLaptop false
Jul 27 18:04:03 main kded6[46686]: colord: Failed to register device: "device id 'xrandr-Philips Consumer Electronics Company-PHL 241S6Q-UHB1638016981' already exists"
Jul 27 18:04:03 main kded6[46686]: colord: Found colord device "/org/freedesktop/ColorManager/devices/xrandr_Philips_Consumer_Electronics_Company_PHL_241S6Q_UHB1638016981_username_1000"
Jul 27 18:04:03 main kded6[46686]: colord: Found EDID profile for device "/org/freedesktop/ColorManager/profiles/icc_ede05c59982adb1dd1888433e329d3ee_username_1000" "DP-5"
Jul 27 18:04:03 main kded6[46686]: colord: Device changed "/org/freedesktop/ColorManager/devices/xrandr_Philips_Consumer_Electronics_Company_PHL_241S6Q_UHB1638016981_username_1000"
Jul 27 18:04:03 main kded6[46686]: colord: profileDefault "/org/freedesktop/ColorManager/profiles/icc_ede05c59982adb1dd1888433e329d3ee_username_1000"
Jul 27 18:04:03 main kded6[46686]: colord: Default Profile Filename "DP-5" "/home/username/.local/share/icc/edid-79899ec4db6a85c75509e3e2182f24a7.icc"
Jul 27 18:04:03 main kded6[46686]: colord: Profile does not have any VCGT data, reseting "DP-5" "/home/username/.local/share/icc/edid-79899ec4db6a85c75509e3e2182f24a7.icc"
Jul 27 18:04:03 main kded6[46686]: colord: Primary CRTC is at CRTC 0
Jul 27 18:04:03 main kded6[46686]: colord: Setting X atom (id: 2 ) "_ICC_PROFILE_2" on output: "DP-5"
Jul 27 18:04:03 main kded6[46686]: colord: Checking outputs
Jul 27 18:04:03 main kded6[46686]: colord: PNP ID "DEL" Vendor Name "Dell Inc."
Jul 27 18:04:03 main kded6[46686]: colord: Adding device id "xrandr-Dell Inc.-Dell AW3418DW-#ASNBebk2u03d"
Jul 27 18:04:03 main kded6[46686]: colord: Output Hash "5284cf16c9111d9fd859880b029caebe"
Jul 27 18:04:03 main kded6[46686]: colord: Output isLaptop false
Jul 27 18:04:03 main kded6[46686]: colord: Failed to register device: "device id 'xrandr-Dell Inc.-Dell AW3418DW-#ASNBebk2u03d' already exists"
Jul 27 18:04:03 main kded6[46686]: colord: Found colord device "/org/freedesktop/ColorManager/devices/xrandr_Dell_Inc__Dell_AW3418DW__ASNBebk2u03d_username_1000"
Jul 27 18:04:03 main kded6[46686]: colord: Found EDID profile for device "/org/freedesktop/ColorManager/profiles/icc_5539629600833a471f9ac32b912f5817_username_1000" "DP-0"
Jul 27 18:04:03 main kded6[46686]: colord: Device changed "/org/freedesktop/ColorManager/devices/xrandr_Dell_Inc__Dell_AW3418DW__ASNBebk2u03d_username_1000"
Jul 27 18:04:03 main kded6[46686]: colord: profileDefault "/org/freedesktop/ColorManager/profiles/icc_5539629600833a471f9ac32b912f5817_username_1000"
Jul 27 18:04:03 main kded6[46686]: colord: Default Profile Filename "DP-0" "/home/username/.local/share/icc/edid-5284cf16c9111d9fd859880b029caebe.icc"
Jul 27 18:04:03 main kded6[46686]: colord: Profile does not have any VCGT data, reseting "DP-0" "/home/username/.local/share/icc/edid-5284cf16c9111d9fd859880b029caebe.icc"
Jul 27 18:04:03 main kded6[46686]: colord: Primary CRTC is at CRTC 0
Jul 27 18:04:03 main kded6[46686]: colord: Setting X atom (id: 0 ) "_ICC_PROFILE" on output: "DP-0"
Jul 27 18:04:03 main kded6[46686]: colord: PNP ID "ACI" Vendor Name "Ancor Communications Inc"
Jul 27 18:04:03 main kded6[46686]: colord: Adding device id "xrandr-Ancor Communications Inc-ROG PG278Q-#ASMJW+hoxMPd"
Jul 27 18:04:03 main kded6[46686]: colord: Output Hash "9440debc9077bee3daf4af97e5afcf30"
Jul 27 18:04:03 main kded6[46686]: colord: Output isLaptop false
Jul 27 18:04:03 main kded6[46686]: colord: Failed to register device: "device id 'xrandr-Ancor Communications Inc-ROG PG278Q-#ASMJW+hoxMPd' already exists"
Jul 27 18:04:03 main kded6[46686]: colord: Found colord device "/org/freedesktop/ColorManager/devices/xrandr_Ancor_Communications_Inc_ROG_PG278Q__ASMJW_hoxMPd_username_1000"
Jul 27 18:04:03 main kded6[46686]: colord: Found EDID profile for device "/org/freedesktop/ColorManager/profiles/icc_ceed6af52c3ea581b7ec8b707ed50a67_username_1000" "DP-2"
Jul 27 18:04:03 main kded6[46686]: colord: Device changed "/org/freedesktop/ColorManager/devices/xrandr_Ancor_Communications_Inc_ROG_PG278Q__ASMJW_hoxMPd_username_1000"
Jul 27 18:04:03 main kded6[46686]: colord: profileDefault "/org/freedesktop/ColorManager/profiles/icc_ceed6af52c3ea581b7ec8b707ed50a67_username_1000"
Jul 27 18:04:03 main kded6[46686]: colord: Default Profile Filename "DP-2" "/home/username/.local/share/icc/edid-9440debc9077bee3daf4af97e5afcf30.icc"
Jul 27 18:04:03 main kded6[46686]: colord: Profile does not have any VCGT data, reseting "DP-2" "/home/username/.local/share/icc/edid-9440debc9077bee3daf4af97e5afcf30.icc"
Jul 27 18:04:03 main kded6[46686]: colord: Primary CRTC is at CRTC 0
Jul 27 18:04:03 main kded6[46686]: colord: Setting X atom (id: 1 ) "_ICC_PROFILE_1" on output: "DP-2"
Jul 27 18:04:03 main kded6[46686]: colord: PNP ID "UGD" Vendor Name ""
Jul 27 18:04:03 main kded6[46686]: colord: Adding device id "xrandr-ID160F-20200316"
Jul 27 18:04:03 main kded6[46686]: colord: Output Hash "b9c1da027acd2ef8cc73a6a1eb9ae944"
Jul 27 18:04:03 main kded6[46686]: colord: Output isLaptop false
Jul 27 18:04:03 main kded6[46686]: colord: Failed to register device: "device id 'xrandr-ID160F-20200316' already exists"
Jul 27 18:04:03 main kded6[46686]: colord: Found colord device "/org/freedesktop/ColorManager/devices/xrandr_ID160F_20200316_username_1000"
Jul 27 18:04:03 main kded6[46686]: colord: Found EDID profile for device "/org/freedesktop/ColorManager/profiles/icc_e276044e630d6bca4b0a595f94aedaaa_username_1000" "HDMI-1"
Jul 27 18:04:03 main kded6[46686]: colord: Device changed "/org/freedesktop/ColorManager/devices/xrandr_ID160F_20200316_username_1000"
Jul 27 18:04:03 main kded6[46686]: colord: profileDefault "/org/freedesktop/ColorManager/profiles/icc_e276044e630d6bca4b0a595f94aedaaa_username_1000"
Jul 27 18:04:03 main kded6[46686]: colord: Default Profile Filename "HDMI-1" "/home/username/.local/share/icc/edid-b9c1da027acd2ef8cc73a6a1eb9ae944.icc"
Jul 27 18:04:03 main kded6[46686]: colord: Profile does not have any VCGT data, reseting "HDMI-1" "/home/username/.local/share/icc/edid-b9c1da027acd2ef8cc73a6a1eb9ae944.icc"
Jul 27 18:04:03 main kded6[46686]: colord: Primary CRTC is at CRTC 0
Jul 27 18:04:03 main kded6[46686]: colord: Setting X atom (id: 3 ) "_ICC_PROFILE_3" on output: "HDMI-1"
Jul 27 18:04:03 main kded6[46686]: colord: PNP ID "PHL" Vendor Name "Philips Consumer Electronics Company"
Jul 27 18:04:03 main kded6[46686]: colord: Adding device id "xrandr-Philips Consumer Electronics Company-PHL 241S6Q-UHB1638016981"
Jul 27 18:04:03 main kded6[46686]: colord: Output Hash "79899ec4db6a85c75509e3e2182f24a7"
Jul 27 18:04:03 main kded6[46686]: colord: Output isLaptop false
Jul 27 18:04:03 main kded6[46686]: colord: Failed to register device: "device id 'xrandr-Philips Consumer Electronics Company-PHL 241S6Q-UHB1638016981' already exists"
Jul 27 18:04:03 main kded6[46686]: colord: Found colord device "/org/freedesktop/ColorManager/devices/xrandr_Philips_Consumer_Electronics_Company_PHL_241S6Q_UHB1638016981_username_1000"
Jul 27 18:04:03 main kded6[46686]: colord: Found EDID profile for device "/org/freedesktop/ColorManager/profiles/icc_ede05c59982adb1dd1888433e329d3ee_username_1000" "DP-5"
Jul 27 18:04:03 main kded6[46686]: colord: Device changed "/org/freedesktop/ColorManager/devices/xrandr_Philips_Consumer_Electronics_Company_PHL_241S6Q_UHB1638016981_username_1000"
Jul 27 18:04:03 main kded6[46686]: colord: profileDefault "/org/freedesktop/ColorManager/profiles/icc_ede05c59982adb1dd1888433e329d3ee_username_1000"
Jul 27 18:04:03 main kded6[46686]: colord: Default Profile Filename "DP-5" "/home/username/.local/share/icc/edid-79899ec4db6a85c75509e3e2182f24a7.icc"
Jul 27 18:04:03 main kded6[46686]: colord: Profile does not have any VCGT data, reseting "DP-5" "/home/username/.local/share/icc/edid-79899ec4db6a85c75509e3e2182f24a7.icc"
Jul 27 18:04:03 main kded6[46686]: colord: Primary CRTC is at CRTC 0
Jul 27 18:04:03 main kded6[46686]: colord: Setting X atom (id: 2 ) "_ICC_PROFILE_2" on output: "DP-5"
Jul 27 18:04:03 main kded6[46686]: colord: Checking outputs
Jul 27 18:04:03 main kded6[46686]: colord: PNP ID "DEL" Vendor Name "Dell Inc."
Jul 27 18:04:03 main kded6[46686]: colord: Adding device id "xrandr-Dell Inc.-Dell AW3418DW-#ASNBebk2u03d"
Jul 27 18:04:03 main kded6[46686]: colord: Output Hash "5284cf16c9111d9fd859880b029caebe"
Jul 27 18:04:03 main kded6[46686]: colord: Output isLaptop false
Jul 27 18:04:03 main kded6[46686]: colord: Failed to register device: "device id 'xrandr-Dell Inc.-Dell AW3418DW-#ASNBebk2u03d' already exists"
Jul 27 18:04:03 main kded6[46686]: colord: Found colord device "/org/freedesktop/ColorManager/devices/xrandr_Dell_Inc__Dell_AW3418DW__ASNBebk2u03d_username_1000"
Jul 27 18:04:03 main kded6[46686]: colord: Found EDID profile for device "/org/freedesktop/ColorManager/profiles/icc_5539629600833a471f9ac32b912f5817_username_1000" "DP-0"
Jul 27 18:04:03 main kded6[46686]: colord: Device changed "/org/freedesktop/ColorManager/devices/xrandr_Dell_Inc__Dell_AW3418DW__ASNBebk2u03d_username_1000"
Jul 27 18:04:03 main kded6[46686]: colord: profileDefault "/org/freedesktop/ColorManager/profiles/icc_5539629600833a471f9ac32b912f5817_username_1000"
Jul 27 18:04:03 main kded6[46686]: colord: Default Profile Filename "DP-0" "/home/username/.local/share/icc/edid-5284cf16c9111d9fd859880b029caebe.icc"
Jul 27 18:04:03 main kded6[46686]: colord: Profile does not have any VCGT data, reseting "DP-0" "/home/username/.local/share/icc/edid-5284cf16c9111d9fd859880b029caebe.icc"
Jul 27 18:04:03 main kded6[46686]: colord: Primary CRTC is at CRTC 0
Jul 27 18:04:03 main kded6[46686]: colord: Setting X atom (id: 0 ) "_ICC_PROFILE" on output: "DP-0"
Jul 27 18:04:03 main kded6[46686]: colord: PNP ID "ACI" Vendor Name "Ancor Communications Inc"
Jul 27 18:04:03 main kded6[46686]: colord: Adding device id "xrandr-Ancor Communications Inc-ROG PG278Q-#ASMJW+hoxMPd"
Jul 27 18:04:03 main kded6[46686]: colord: Output Hash "9440debc9077bee3daf4af97e5afcf30"
Jul 27 18:04:03 main kded6[46686]: colord: Output isLaptop false
Jul 27 18:04:03 main kded6[46686]: colord: Failed to register device: "device id 'xrandr-Ancor Communications Inc-ROG PG278Q-#ASMJW+hoxMPd' already exists"
Jul 27 18:04:03 main kded6[46686]: colord: Found colord device "/org/freedesktop/ColorManager/devices/xrandr_Ancor_Communications_Inc_ROG_PG278Q__ASMJW_hoxMPd_username_1000"
Jul 27 18:04:03 main kded6[46686]: colord: Found EDID profile for device "/org/freedesktop/ColorManager/profiles/icc_ceed6af52c3ea581b7ec8b707ed50a67_username_1000" "DP-2"
Jul 27 18:04:03 main kded6[46686]: colord: Device changed "/org/freedesktop/ColorManager/devices/xrandr_Ancor_Communications_Inc_ROG_PG278Q__ASMJW_hoxMPd_username_1000"
Jul 27 18:04:03 main kded6[46686]: colord: profileDefault "/org/freedesktop/ColorManager/profiles/icc_ceed6af52c3ea581b7ec8b707ed50a67_username_1000"
Jul 27 18:04:03 main kded6[46686]: colord: Default Profile Filename "DP-2" "/home/username/.local/share/icc/edid-9440debc9077bee3daf4af97e5afcf30.icc"
Jul 27 18:04:03 main kded6[46686]: colord: Profile does not have any VCGT data, reseting "DP-2" "/home/username/.local/share/icc/edid-9440debc9077bee3daf4af97e5afcf30.icc"
Jul 27 18:04:03 main kded6[46686]: colord: Primary CRTC is at CRTC 0
Jul 27 18:04:03 main kded6[46686]: colord: Setting X atom (id: 1 ) "_ICC_PROFILE_1" on output: "DP-2"
Jul 27 18:04:03 main kded6[46686]: colord: PNP ID "UGD" Vendor Name ""
Jul 27 18:04:03 main kded6[46686]: colord: Adding device id "xrandr-ID160F-20200316"
Jul 27 18:04:03 main kded6[46686]: colord: Output Hash "b9c1da027acd2ef8cc73a6a1eb9ae944"
Jul 27 18:04:03 main kded6[46686]: colord: Output isLaptop false
Jul 27 18:04:03 main kded6[46686]: colord: Failed to register device: "device id 'xrandr-ID160F-20200316' already exists"
Jul 27 18:04:03 main kded6[46686]: colord: Found colord device "/org/freedesktop/ColorManager/devices/xrandr_ID160F_20200316_username_1000"
Jul 27 18:04:03 main kded6[46686]: colord: Found EDID profile for device "/org/freedesktop/ColorManager/profiles/icc_e276044e630d6bca4b0a595f94aedaaa_username_1000" "HDMI-1"
Jul 27 18:04:03 main kded6[46686]: colord: Device changed "/org/freedesktop/ColorManager/devices/xrandr_ID160F_20200316_username_1000"
Jul 27 18:04:03 main kded6[46686]: colord: profileDefault "/org/freedesktop/ColorManager/profiles/icc_e276044e630d6bca4b0a595f94aedaaa_username_1000"
Jul 27 18:04:03 main kded6[46686]: colord: Default Profile Filename "HDMI-1" "/home/username/.local/share/icc/edid-b9c1da027acd2ef8cc73a6a1eb9ae944.icc"
Jul 27 18:04:03 main kded6[46686]: colord: Profile does not have any VCGT data, reseting "HDMI-1" "/home/username/.local/share/icc/edid-b9c1da027acd2ef8cc73a6a1eb9ae944.icc"
Jul 27 18:04:03 main kded6[46686]: colord: Primary CRTC is at CRTC 0
Jul 27 18:04:03 main kded6[46686]: colord: Setting X atom (id: 3 ) "_ICC_PROFILE_3" on output: "HDMI-1"
Jul 27 18:04:03 main kded6[46686]: colord: PNP ID "PHL" Vendor Name "Philips Consumer Electronics Company"
Jul 27 18:04:03 main kded6[46686]: colord: Adding device id "xrandr-Philips Consumer Electronics Company-PHL 241S6Q-UHB1638016981"
Jul 27 18:04:03 main kded6[46686]: colord: Output Hash "79899ec4db6a85c75509e3e2182f24a7"
Jul 27 18:04:03 main kded6[46686]: colord: Output isLaptop false
Jul 27 18:04:03 main kded6[46686]: colord: Failed to register device: "device id 'xrandr-Philips Consumer Electronics Company-PHL 241S6Q-UHB1638016981' already exists"
Jul 27 18:04:03 main kded6[46686]: colord: Found colord device "/org/freedesktop/ColorManager/devices/xrandr_Philips_Consumer_Electronics_Company_PHL_241S6Q_UHB1638016981_username_1000"
Jul 27 18:04:03 main kded6[46686]: colord: Found EDID profile for device "/org/freedesktop/ColorManager/profiles/icc_ede05c59982adb1dd1888433e329d3ee_username_1000" "DP-5"
Jul 27 18:04:03 main kded6[46686]: colord: Device changed "/org/freedesktop/ColorManager/devices/xrandr_Philips_Consumer_Electronics_Company_PHL_241S6Q_UHB1638016981_username_1000"
Jul 27 18:04:03 main kded6[46686]: colord: profileDefault "/org/freedesktop/ColorManager/profiles/icc_ede05c59982adb1dd1888433e329d3ee_username_1000"
Jul 27 18:04:03 main kded6[46686]: colord: Default Profile Filename "DP-5" "/home/username/.local/share/icc/edid-79899ec4db6a85c75509e3e2182f24a7.icc"
Jul 27 18:04:03 main kded6[46686]: colord: Profile does not have any VCGT data, reseting "DP-5" "/home/username/.local/share/icc/edid-79899ec4db6a85c75509e3e2182f24a7.icc"
Jul 27 18:04:03 main kded6[46686]: colord: Primary CRTC is at CRTC 0
Jul 27 18:04:03 main kded6[46686]: colord: Setting X atom (id: 2 ) "_ICC_PROFILE_2" on output: "DP-5"
Jul 27 18:04:03 main kded6[46686]: colord: Checking outputs
Jul 27 18:04:03 main kded6[46686]: colord: PNP ID "DEL" Vendor Name "Dell Inc."
Jul 27 18:04:03 main kded6[46686]: colord: Adding device id "xrandr-Dell Inc.-Dell AW3418DW-#ASNBebk2u03d"
Jul 27 18:04:03 main kded6[46686]: colord: Output Hash "5284cf16c9111d9fd859880b029caebe"
Jul 27 18:04:03 main kded6[46686]: colord: Output isLaptop false
Jul 27 18:04:03 main kded6[46686]: colord: Failed to register device: "device id 'xrandr-Dell Inc.-Dell AW3418DW-#ASNBebk2u03d' already exists"
Jul 27 18:04:03 main kded6[46686]: colord: Found colord device "/org/freedesktop/ColorManager/devices/xrandr_Dell_Inc__Dell_AW3418DW__ASNBebk2u03d_username_1000"
Jul 27 18:04:03 main kded6[46686]: colord: Found EDID profile for device "/org/freedesktop/ColorManager/profiles/icc_5539629600833a471f9ac32b912f5817_username_1000" "DP-0"
Jul 27 18:04:03 main kded6[46686]: colord: Device changed "/org/freedesktop/ColorManager/devices/xrandr_Dell_Inc__Dell_AW3418DW__ASNBebk2u03d_username_1000"
Jul 27 18:04:03 main kded6[46686]: colord: profileDefault "/org/freedesktop/ColorManager/profiles/icc_5539629600833a471f9ac32b912f5817_username_1000"
Jul 27 18:04:03 main kded6[46686]: colord: Default Profile Filename "DP-0" "/home/username/.local/share/icc/edid-5284cf16c9111d9fd859880b029caebe.icc"
Jul 27 18:04:03 main kded6[46686]: colord: Profile does not have any VCGT data, reseting "DP-0" "/home/username/.local/share/icc/edid-5284cf16c9111d9fd859880b029caebe.icc"
Jul 27 18:04:03 main kded6[46686]: colord: Primary CRTC is at CRTC 0
Jul 27 18:04:03 main kded6[46686]: colord: Setting X atom (id: 0 ) "_ICC_PROFILE" on output: "DP-0"
Jul 27 18:04:03 main kded6[46686]: colord: PNP ID "ACI" Vendor Name "Ancor Communications Inc"
Jul 27 18:04:03 main kded6[46686]: colord: Adding device id "xrandr-Ancor Communications Inc-ROG PG278Q-#ASMJW+hoxMPd"
Jul 27 18:04:03 main kded6[46686]: colord: Output Hash "9440debc9077bee3daf4af97e5afcf30"
Jul 27 18:04:03 main kded6[46686]: colord: Output isLaptop false
Jul 27 18:04:03 main kded6[46686]: colord: Failed to register device: "device id 'xrandr-Ancor Communications Inc-ROG PG278Q-#ASMJW+hoxMPd' already exists"
Jul 27 18:04:03 main kded6[46686]: colord: Found colord device "/org/freedesktop/ColorManager/devices/xrandr_Ancor_Communications_Inc_ROG_PG278Q__ASMJW_hoxMPd_username_1000"
Jul 27 18:04:03 main kded6[46686]: colord: Found EDID profile for device "/org/freedesktop/ColorManager/profiles/icc_ceed6af52c3ea581b7ec8b707ed50a67_username_1000" "DP-2"
Jul 27 18:04:03 main kded6[46686]: colord: Device changed "/org/freedesktop/ColorManager/devices/xrandr_Ancor_Communications_Inc_ROG_PG278Q__ASMJW_hoxMPd_username_1000"
Jul 27 18:04:03 main kded6[46686]: colord: profileDefault "/org/freedesktop/ColorManager/profiles/icc_ceed6af52c3ea581b7ec8b707ed50a67_username_1000"
Jul 27 18:04:03 main kded6[46686]: colord: Default Profile Filename "DP-2" "/home/username/.local/share/icc/edid-9440debc9077bee3daf4af97e5afcf30.icc"
Jul 27 18:04:03 main kded6[46686]: colord: Profile does not have any VCGT data, reseting "DP-2" "/home/username/.local/share/icc/edid-9440debc9077bee3daf4af97e5afcf30.icc"
Jul 27 18:04:03 main kded6[46686]: colord: Primary CRTC is at CRTC 0
Jul 27 18:04:03 main kded6[46686]: colord: Setting X atom (id: 1 ) "_ICC_PROFILE_1" on output: "DP-2"
Jul 27 18:04:03 main kded6[46686]: colord: PNP ID "UGD" Vendor Name ""
Jul 27 18:04:03 main kded6[46686]: colord: Adding device id "xrandr-ID160F-20200316"
Jul 27 18:04:03 main kded6[46686]: colord: Output Hash "b9c1da027acd2ef8cc73a6a1eb9ae944"
Jul 27 18:04:03 main kded6[46686]: colord: Output isLaptop false
Jul 27 18:04:03 main kded6[46686]: colord: Failed to register device: "device id 'xrandr-ID160F-20200316' already exists"
Jul 27 18:04:03 main kded6[46686]: colord: Found colord device "/org/freedesktop/ColorManager/devices/xrandr_ID160F_20200316_username_1000"
Jul 27 18:04:03 main kded6[46686]: colord: Found EDID profile for device "/org/freedesktop/ColorManager/profiles/icc_e276044e630d6bca4b0a595f94aedaaa_username_1000" "HDMI-1"
Jul 27 18:04:03 main kded6[46686]: colord: Device changed "/org/freedesktop/ColorManager/devices/xrandr_ID160F_20200316_username_1000"
Jul 27 18:04:03 main kded6[46686]: colord: profileDefault "/org/freedesktop/ColorManager/profiles/icc_e276044e630d6bca4b0a595f94aedaaa_username_1000"
Jul 27 18:04:03 main kded6[46686]: colord: Default Profile Filename "HDMI-1" "/home/username/.local/share/icc/edid-b9c1da027acd2ef8cc73a6a1eb9ae944.icc"
Jul 27 18:04:03 main kded6[46686]: colord: Profile does not have any VCGT data, reseting "HDMI-1" "/home/username/.local/share/icc/edid-b9c1da027acd2ef8cc73a6a1eb9ae944.icc"
Jul 27 18:04:03 main kded6[46686]: colord: Primary CRTC is at CRTC 0
Jul 27 18:04:03 main kded6[46686]: colord: Setting X atom (id: 3 ) "_ICC_PROFILE_3" on output: "HDMI-1"
Jul 27 18:04:03 main kded6[46686]: colord: PNP ID "PHL" Vendor Name "Philips Consumer Electronics Company"
Jul 27 18:04:03 main kded6[46686]: colord: Adding device id "xrandr-Philips Consumer Electronics Company-PHL 241S6Q-UHB1638016981"
Jul 27 18:04:03 main kded6[46686]: colord: Output Hash "79899ec4db6a85c75509e3e2182f24a7"
Jul 27 18:04:03 main kded6[46686]: colord: Output isLaptop false
Jul 27 18:04:03 main kded6[46686]: colord: Failed to register device: "device id 'xrandr-Philips Consumer Electronics Company-PHL 241S6Q-UHB1638016981' already exists"
Jul 27 18:04:03 main kded6[46686]: colord: Found colord device "/org/freedesktop/ColorManager/devices/xrandr_Philips_Consumer_Electronics_Company_PHL_241S6Q_UHB1638016981_username_1000"
Jul 27 18:04:03 main kded6[46686]: colord: Found EDID profile for device "/org/freedesktop/ColorManager/profiles/icc_ede05c59982adb1dd1888433e329d3ee_username_1000" "DP-5"
Jul 27 18:04:03 main kded6[46686]: colord: Device changed "/org/freedesktop/ColorManager/devices/xrandr_Philips_Consumer_Electronics_Company_PHL_241S6Q_UHB1638016981_username_1000"
Jul 27 18:04:03 main kded6[46686]: colord: profileDefault "/org/freedesktop/ColorManager/profiles/icc_ede05c59982adb1dd1888433e329d3ee_username_1000"
Jul 27 18:04:03 main kded6[46686]: colord: Default Profile Filename "DP-5" "/home/username/.local/share/icc/edid-79899ec4db6a85c75509e3e2182f24a7.icc"
Jul 27 18:04:03 main kded6[46686]: colord: Profile does not have any VCGT data, reseting "DP-5" "/home/username/.local/share/icc/edid-79899ec4db6a85c75509e3e2182f24a7.icc"
Jul 27 18:04:03 main kded6[46686]: colord: Primary CRTC is at CRTC 0
Jul 27 18:04:03 main kded6[46686]: colord: Setting X atom (id: 2 ) "_ICC_PROFILE_2" on output: "DP-5"
Jul 27 18:04:03 main kded6[46686]: colord: EDID ICC Profile already exists "/home/username/.local/share/icc/edid-5284cf16c9111d9fd859880b029caebe.icc"
Jul 27 18:04:03 main kded6[46686]: colord: Device added "/org/freedesktop/ColorManager/devices/xrandr_Dell_Inc__Dell_AW3418DW__ASNBebk2u03d_username_1000"
Jul 27 18:04:03 main kded6[46686]: colord: Device changed "/org/freedesktop/ColorManager/devices/xrandr_Dell_Inc__Dell_AW3418DW__ASNBebk2u03d_username_1000"
Jul 27 18:04:03 main kded6[46686]: colord: Device changed "/org/freedesktop/ColorManager/devices/xrandr_Dell_Inc__Dell_AW3418DW__ASNBebk2u03d_username_1000"
Jul 27 18:04:03 main kded6[46686]: colord: profileDefault "/org/freedesktop/ColorManager/profiles/icc_5539629600833a471f9ac32b912f5817_username_1000"
Jul 27 18:04:03 main kded6[46686]: colord: Default Profile Filename "DP-0" "/home/username/.local/share/icc/edid-5284cf16c9111d9fd859880b029caebe.icc"
Jul 27 18:04:03 main kded6[46686]: colord: Profile does not have any VCGT data, reseting "DP-0" "/home/username/.local/share/icc/edid-5284cf16c9111d9fd859880b029caebe.icc"
Jul 27 18:04:03 main kded6[46686]: colord: Primary CRTC is at CRTC 0
Jul 27 18:04:03 main kded6[46686]: colord: Setting X atom (id: 0 ) "_ICC_PROFILE" on output: "DP-0"
Jul 27 18:04:03 main kded6[46686]: colord: EDID ICC Profile already exists "/home/username/.local/share/icc/edid-9440debc9077bee3daf4af97e5afcf30.icc"
Jul 27 18:04:03 main kded6[46686]: colord: EDID ICC Profile already exists "/home/username/.local/share/icc/edid-b9c1da027acd2ef8cc73a6a1eb9ae944.icc"
Jul 27 18:04:03 main kded6[46686]: colord: Device added "/org/freedesktop/ColorManager/devices/xrandr_ID160F_20200316_username_1000"
Jul 27 18:04:03 main kded6[46686]: colord: Device changed "/org/freedesktop/ColorManager/devices/xrandr_ID160F_20200316_username_1000"
Jul 27 18:04:03 main kded6[46686]: colord: Device changed "/org/freedesktop/ColorManager/devices/xrandr_ID160F_20200316_username_1000"
Jul 27 18:04:03 main kded6[46686]: colord: profileDefault "/org/freedesktop/ColorManager/profiles/icc_e276044e630d6bca4b0a595f94aedaaa_username_1000"
Jul 27 18:04:03 main kded6[46686]: colord: Default Profile Filename "HDMI-1" "/home/username/.local/share/icc/edid-b9c1da027acd2ef8cc73a6a1eb9ae944.icc"
Jul 27 18:04:03 main kded6[46686]: colord: Profile does not have any VCGT data, reseting "HDMI-1" "/home/username/.local/share/icc/edid-b9c1da027acd2ef8cc73a6a1eb9ae944.icc"
Jul 27 18:04:03 main kded6[46686]: colord: Primary CRTC is at CRTC 0
Jul 27 18:04:03 main kded6[46686]: colord: Setting X atom (id: 3 ) "_ICC_PROFILE_3" on output: "HDMI-1"
Jul 27 18:04:03 main kded6[46686]: colord: EDID ICC Profile already exists "/home/username/.local/share/icc/edid-79899ec4db6a85c75509e3e2182f24a7.icc"
Jul 27 18:04:03 main kded6[46686]: colord: Device added "/org/freedesktop/ColorManager/devices/xrandr_Philips_Consumer_Electronics_Company_PHL_241S6Q_UHB1638016981_username_1000"
Jul 27 18:04:03 main kded6[46686]: colord: Device changed "/org/freedesktop/ColorManager/devices/xrandr_Philips_Consumer_Electronics_Company_PHL_241S6Q_UHB1638016981_username_1000"
Jul 27 18:04:03 main kded6[46686]: colord: Device changed "/org/freedesktop/ColorManager/devices/xrandr_Philips_Consumer_Electronics_Company_PHL_241S6Q_UHB1638016981_username_1000"
Jul 27 18:04:03 main kded6[46686]: colord: profileDefault "/org/freedesktop/ColorManager/profiles/icc_ede05c59982adb1dd1888433e329d3ee_username_1000"
Jul 27 18:04:03 main kded6[46686]: colord: Default Profile Filename "DP-5" "/home/username/.local/share/icc/edid-79899ec4db6a85c75509e3e2182f24a7.icc"
Jul 27 18:04:03 main kded6[46686]: colord: Profile does not have any VCGT data, reseting "DP-5" "/home/username/.local/share/icc/edid-79899ec4db6a85c75509e3e2182f24a7.icc"
Jul 27 18:04:03 main kded6[46686]: colord: Primary CRTC is at CRTC 0
Jul 27 18:04:03 main kded6[46686]: colord: Setting X atom (id: 2 ) "_ICC_PROFILE_2" on output: "DP-5"
Jul 27 18:04:03 main kded6[46686]: colord: EDID ICC Profile already exists "/home/username/.local/share/icc/edid-5284cf16c9111d9fd859880b029caebe.icc"
Jul 27 18:04:03 main kded6[46686]: colord: EDID ICC Profile already exists "/home/username/.local/share/icc/edid-9440debc9077bee3daf4af97e5afcf30.icc"
Jul 27 18:04:03 main kded6[46686]: colord: EDID ICC Profile already exists "/home/username/.local/share/icc/edid-b9c1da027acd2ef8cc73a6a1eb9ae944.icc"
Jul 27 18:04:03 main kded6[46686]: colord: EDID ICC Profile already exists "/home/username/.local/share/icc/edid-79899ec4db6a85c75509e3e2182f24a7.icc"
Jul 27 18:04:03 main kded6[46686]: colord: EDID ICC Profile already exists "/home/username/.local/share/icc/edid-5284cf16c9111d9fd859880b029caebe.icc"
Jul 27 18:04:03 main kded6[46686]: colord: EDID ICC Profile already exists "/home/username/.local/share/icc/edid-9440debc9077bee3daf4af97e5afcf30.icc"
Jul 27 18:04:03 main kded6[46686]: colord: EDID ICC Profile already exists "/home/username/.local/share/icc/edid-b9c1da027acd2ef8cc73a6a1eb9ae944.icc"
Jul 27 18:04:03 main kded6[46686]: colord: EDID ICC Profile already exists "/home/username/.local/share/icc/edid-79899ec4db6a85c75509e3e2182f24a7.icc"
Jul 27 18:04:03 main kded6[46686]: colord: EDID ICC Profile already exists "/home/username/.local/share/icc/edid-5284cf16c9111d9fd859880b029caebe.icc"
Jul 27 18:04:03 main kded6[46686]: colord: EDID ICC Profile already exists "/home/username/.local/share/icc/edid-9440debc9077bee3daf4af97e5afcf30.icc"
Jul 27 18:04:03 main kded6[46686]: colord: EDID ICC Profile already exists "/home/username/.local/share/icc/edid-b9c1da027acd2ef8cc73a6a1eb9ae944.icc"
Jul 27 18:04:03 main kded6[46686]: colord: EDID ICC Profile already exists "/home/username/.local/share/icc/edid-79899ec4db6a85c75509e3e2182f24a7.icc"
Jul 27 18:04:03 main kded6[46686]: colord: EDID ICC Profile already exists "/home/username/.local/share/icc/edid-5284cf16c9111d9fd859880b029caebe.icc"
Jul 27 18:04:03 main kded6[46686]: colord: EDID ICC Profile already exists "/home/username/.local/share/icc/edid-9440debc9077bee3daf4af97e5afcf30.icc"
Jul 27 18:04:03 main kded6[46686]: colord: EDID ICC Profile already exists "/home/username/.local/share/icc/edid-b9c1da027acd2ef8cc73a6a1eb9ae944.icc"
Jul 27 18:04:03 main kded6[46686]: colord: EDID ICC Profile already exists "/home/username/.local/share/icc/edid-79899ec4db6a85c75509e3e2182f24a7.icc"
Jul 27 18:04:03 main kded6[46686]: colord: EDID ICC Profile already exists "/home/username/.local/share/icc/edid-5284cf16c9111d9fd859880b029caebe.icc"
Jul 27 18:04:03 main kded6[46686]: colord: EDID ICC Profile already exists "/home/username/.local/share/icc/edid-9440debc9077bee3daf4af97e5afcf30.icc"
Jul 27 18:04:03 main kded6[46686]: colord: EDID ICC Profile already exists "/home/username/.local/share/icc/edid-b9c1da027acd2ef8cc73a6a1eb9ae944.icc"
Jul 27 18:04:03 main kded6[46686]: colord: EDID ICC Profile already exists "/home/username/.local/share/icc/edid-79899ec4db6a85c75509e3e2182f24a7.icc"
Jul 27 18:04:03 main kded6[46686]: colord: EDID ICC Profile already exists "/home/username/.local/share/icc/edid-5284cf16c9111d9fd859880b029caebe.icc"
Jul 27 18:04:03 main kded6[46686]: colord: EDID ICC Profile already exists "/home/username/.local/share/icc/edid-9440debc9077bee3daf4af97e5afcf30.icc"
Jul 27 18:04:03 main kded6[46686]: colord: EDID ICC Profile already exists "/home/username/.local/share/icc/edid-b9c1da027acd2ef8cc73a6a1eb9ae944.icc"
Jul 27 18:04:03 main kded6[46686]: colord: EDID ICC Profile already exists "/home/username/.local/share/icc/edid-79899ec4db6a85c75509e3e2182f24a7.icc"
Jul 27 18:04:03 main kded6[46686]: colord: EDID ICC Profile already exists "/home/username/.local/share/icc/edid-5284cf16c9111d9fd859880b029caebe.icc"
Jul 27 18:04:03 main kded6[46686]: colord: EDID ICC Profile already exists "/home/username/.local/share/icc/edid-9440debc9077bee3daf4af97e5afcf30.icc"
Jul 27 18:04:03 main kded6[46686]: colord: EDID ICC Profile already exists "/home/username/.local/share/icc/edid-b9c1da027acd2ef8cc73a6a1eb9ae944.icc"
Jul 27 18:04:03 main kded6[46686]: colord: EDID ICC Profile already exists "/home/username/.local/share/icc/edid-79899ec4db6a85c75509e3e2182f24a7.icc"
Jul 27 18:04:03 main kded6[46686]: colord: EDID ICC Profile already exists "/home/username/.local/share/icc/edid-5284cf16c9111d9fd859880b029caebe.icc"
Jul 27 18:04:03 main kded6[46686]: colord: EDID ICC Profile already exists "/home/username/.local/share/icc/edid-9440debc9077bee3daf4af97e5afcf30.icc"
Jul 27 18:04:03 main kded6[46686]: colord: EDID ICC Profile already exists "/home/username/.local/share/icc/edid-b9c1da027acd2ef8cc73a6a1eb9ae944.icc"
Jul 27 18:04:03 main kded6[46686]: colord: EDID ICC Profile already exists "/home/username/.local/share/icc/edid-79899ec4db6a85c75509e3e2182f24a7.icc"
Jul 27 18:04:08 main systemd-coredump[57016]: Process 49019 (plasmashell) of user 1000 dumped core.
Stack trace of thread 49132:
#0 0x00007148cd8a53f4 n/a (libc.so.6 + 0x963f4)
#1 0x00007148cd84c120 raise (libc.so.6 + 0x3d120)
#2 0x00007148cfe46643 _ZN6KCrash19defaultCrashHandlerEi (libKF6Crash.so.6 + 0x6643)
#3 0x00007148cd84c1d0 n/a (libc.so.6 + 0x3d1d0)
#4 0x00007148cdeada70 _ZN14QOpenGLContext11doneCurrentEv (libQt6Gui.so.6 + 0x4ada70)
#5 0x00007148cdeae072 n/a (libQt6Gui.so.6 + 0x4ae072)
#6 0x00007148cd4d1a4c _ZN18QThreadStorageData6finishEPPv (libQt6Core.so.6 + 0x2d1a4c)
#7 0x00007148cd60b270 n/a (libQt6Core.so.6 + 0x40b270)
#8 0x00007148cd4c9754 n/a (libQt6Core.so.6 + 0x2c9754)
#9 0x00007148cd8a339d n/a (libc.so.6 + 0x9439d)
#10 0x00007148cd92849c n/a (libc.so.6 + 0x11949c)
Stack trace of thread 49023:
#0 0x00007148cd91a63d __poll (libc.so.6 + 0x10b63d)
#1 0x00007148cfe5a20b n/a (libxcb.so.1 + 0xd20b)
#2 0x00007148cfe5bf3d xcb_wait_for_event (libxcb.so.1 + 0xef3d)
#3 0x00007148c729a761 n/a (libQt6XcbQpa.so.6 + 0x4e761)
#4 0x00007148cd4c9747 n/a (libQt6Core.so.6 + 0x2c9747)
#5 0x00007148cd8a339d n/a (libc.so.6 + 0x9439d)
#6 0x00007148cd92849c n/a (libc.so.6 + 0x11949c)
Stack trace of thread 49130:
#0 0x00007148cd89fa19 n/a (libc.so.6 + 0x90a19)
#1 0x00007148cd8a2479 pthread_cond_wait (libc.so.6 + 0x93479)
#2 0x00007148cd4ce120 _ZN14QWaitCondition4waitEP6QMutex14QDeadlineTimer (libQt6Core.so.6 + 0x2ce120)
#3 0x00007148cee19f3a n/a (libQt6Quick.so.6 + 0x419f3a)
#4 0x00007148cd4c9747 n/a (libQt6Core.so.6 + 0x2c9747)
#5 0x00007148cd8a339d n/a (libc.so.6 + 0x9439d)
#6 0x00007148cd92849c n/a (libc.so.6 + 0x11949c)
Stack trace of thread 49022:
#0 0x00007148cd91a63d __poll (libc.so.6 + 0x10b63d)
#1 0x00007148cc1ce92d n/a (libglib-2.0.so.0 + 0xbe92d)
#2 0x00007148cc16bfc5 g_main_context_iteration (libglib-2.0.so.0 + 0x5bfc5)
#3 0x00007148cd5a2cbd _ZN20QEventDispatcherGlib13processEventsE6QFlagsIN10QEventLoop17ProcessEventsFlagEE (libQt6Core.so.6 + 0x3a2cbd)
#4 0x00007148cd34f01e _ZN10QEventLoop4execE6QFlagsINS_17ProcessEventsFlagEE (libQt6Core.so.6 + 0x14f01e)
#5 0x00007148cd43a410 _ZN7QThread4execEv (libQt6Core.so.6 + 0x23a410)
#6 0x00007148cf1c1e4e n/a (libQt6DBus.so.6 + 0x2de4e)
#7 0x00007148cd4c9747 n/a (libQt6Core.so.6 + 0x2c9747)
#8 0x00007148cd8a339d n/a (libc.so.6 + 0x9439d)
#9 0x00007148cd92849c n/a (libc.so.6 + 0x11949c)
Stack trace of thread 49019:
#0 0x00007148cd89fa19 n/a (libc.so.6 + 0x90a19)
#1 0x00007148cd8a2479 pthread_cond_wait (libc.so.6 + 0x93479)
#2 0x00007148cd4ce120 _ZN14QWaitCondition4waitEP6QMutex14QDeadlineTimer (libQt6Core.so.6 + 0x2ce120)
#3 0x00007148cd4c4e61 _ZN7QThread4waitE14QDeadlineTimer (libQt6Core.so.6 + 0x2c4e61)
#4 0x00007148cee13c10 n/a (libQt6Quick.so.6 + 0x413c10)
#5 0x00007148cdbdf0b8 _ZN7QWindow5eventEP6QEvent (libQt6Gui.so.6 + 0x1df0b8)
#6 0x00006223ae3988fc n/a (plasmashell + 0x4a8fc)
#7 0x00007148cf4fc51c _ZN19QApplicationPrivate13notify_helperEP7QObjectP6QEvent (libQt6Widgets.so.6 + 0xfc51c)
#8 0x00007148cd344d28 _ZN16QCoreApplication15notifyInternal2EP7QObjectP6QEvent (libQt6Core.so.6 + 0x144d28)
#9 0x00007148cdbd3254 _ZN14QWindowPrivate10setVisibleEb (libQt6Gui.so.6 + 0x1d3254)
#10 0x00007148cdbd748a _ZN14QWindowPrivate7destroyEv (libQt6Gui.so.6 + 0x1d748a)
#11 0x00007148cff4e0d4 _ZN11PlasmaQuick15ContainmentView7destroyEv (libPlasmaQuick.so.6 + 0x450d4)
#12 0x00006223ae3a8400 n/a (plasmashell + 0x5a400)
#13 0x00006223ae3a89ec n/a (plasmashell + 0x5a9ec)
#14 0x00007148cd3a16f7 n/a (libQt6Core.so.6 + 0x1a16f7)
#15 0x00006223ae3d55b7 n/a (plasmashell + 0x875b7)
#16 0x00007148cd3a16f7 n/a (libQt6Core.so.6 + 0x1a16f7)
#17 0x00007148cfed741a _ZN18OutputOrderWatcher18outputOrderChangedERK5QListI7QStringE (libkworkspace6.so.6 + 0xe41a)
#18 0x00007148cfef4cf4 n/a (libkworkspace6.so.6 + 0x2bcf4)
#19 0x00007148cd3a16f7 n/a (libQt6Core.so.6 + 0x1a16f7)
#20 0x00007148cdbeb0a1 _ZN22QWindowSystemInterface17handleScreenAddedEP15QPlatformScreenb (libQt6Gui.so.6 + 0x1eb0a1)
#21 0x00007148c728784d _ZN14QXcbConnection20createScreen_monitorEP18QXcbVirtualDesktopP24xcb_randr_monitor_info_tj (libQt6XcbQpa.so.6 + 0x3b84d)
#22 0x00007148c72881ff _ZN14QXcbConnection28initializeScreensFromMonitorEP21xcb_screen_iterator_tiPP10QXcbScreenb (libQt6XcbQpa.so.6 + 0x3c1ff)
#23 0x00007148c7288a17 _ZN14QXcbConnection17initializeScreensEb (libQt6XcbQpa.so.6 + 0x3ca17)
#24 0x00007148c727cc2d _ZN14QXcbConnection14handleXcbEventEP19xcb_generic_event_t (libQt6XcbQpa.so.6 + 0x30c2d)
#25 0x00007148c72839e2 _ZN14QXcbConnection16processXcbEventsE6QFlagsIN10QEventLoop17ProcessEventsFlagEE (libQt6XcbQpa.so.6 + 0x379e2)
#26 0x00007148c729d62f n/a (libQt6XcbQpa.so.6 + 0x5162f)
#27 0x00007148cc16cab9 n/a (libglib-2.0.so.0 + 0x5cab9)
#28 0x00007148cc1ce9e7 n/a (libglib-2.0.so.0 + 0xbe9e7)
#29 0x00007148cc16bfc5 g_main_context_iteration (libglib-2.0.so.0 + 0x5bfc5)
#30 0x00007148cd5a2cbd _ZN20QEventDispatcherGlib13processEventsE6QFlagsIN10QEventLoop17ProcessEventsFlagEE (libQt6Core.so.6 + 0x3a2cbd)
#31 0x00007148cd34f01e _ZN10QEventLoop4execE6QFlagsINS_17ProcessEventsFlagEE (libQt6Core.so.6 + 0x14f01e)
#32 0x00007148cd34934d _ZN16QCoreApplication4execEv (libQt6Core.so.6 + 0x14934d)
#33 0x00006223ae374d66 n/a (plasmashell + 0x26d66)
#34 0x00007148cd834e08 n/a (libc.so.6 + 0x25e08)
#35 0x00007148cd834ecc __libc_start_main (libc.so.6 + 0x25ecc)
#36 0x00006223ae375255 n/a (plasmashell + 0x27255)
Stack trace of thread 49056:
#0 0x00007148cd91a63d __poll (libc.so.6 + 0x10b63d)
#1 0x00007148cc1ce92d n/a (libglib-2.0.so.0 + 0xbe92d)
#2 0x00007148cc16bfc5 g_main_context_iteration (libglib-2.0.so.0 + 0x5bfc5)
#3 0x00007148cd5a2cbd _ZN20QEventDispatcherGlib13processEventsE6QFlagsIN10QEventLoop17ProcessEventsFlagEE (libQt6Core.so.6 + 0x3a2cbd)
#4 0x00007148cd34f01e _ZN10QEventLoop4execE6QFlagsINS_17ProcessEventsFlagEE (libQt6Core.so.6 + 0x14f01e)
#5 0x00007148cd43a410 _ZN7QThread4execEv (libQt6Core.so.6 + 0x23a410)
#6 0x00007148ced63bd8 n/a (libQt6Quick.so.6 + 0x363bd8)
#7 0x00007148cd4c9747 n/a (libQt6Core.so.6 + 0x2c9747)
#8 0x00007148cd8a339d n/a (libc.so.6 + 0x9439d)
#9 0x00007148cd92849c n/a (libc.so.6 + 0x11949c)
Stack trace of thread 49072:
#0 0x00007148cd91a63d __poll (libc.so.6 + 0x10b63d)
#1 0x00007148cc1ce92d n/a (libglib-2.0.so.0 + 0xbe92d)
#2 0x00007148cc16bfc5 g_main_context_iteration (libglib-2.0.so.0 + 0x5bfc5)
#3 0x00007148cd5a2cbd _ZN20QEventDispatcherGlib13processEventsE6QFlagsIN10QEventLoop17ProcessEventsFlagEE (libQt6Core.so.6 + 0x3a2cbd)
#4 0x00007148cd34f01e _ZN10QEventLoop4execE6QFlagsINS_17ProcessEventsFlagEE (libQt6Core.so.6 + 0x14f01e)
#5 0x00007148cd43a410 _ZN7QThread4execEv (libQt6Core.so.6 + 0x23a410)
#6 0x00007148ac1126c0 _ZN15KCupsConnection3runEv (libkcupslib.so.6.1.3 + 0x2d6c0)
#7 0x00007148cd4c9747 n/a (libQt6Core.so.6 + 0x2c9747)
#8 0x00007148cd8a339d n/a (libc.so.6 + 0x9439d)
#9 0x00007148cd92849c n/a (libc.so.6 + 0x11949c)
Stack trace of thread 50354:
#0 0x00007148cd89fa19 n/a (libc.so.6 + 0x90a19)
#1 0x00007148cd8a2479 pthread_cond_wait (libc.so.6 + 0x93479)
#2 0x00007148cd4ce120 _ZN14QWaitCondition4waitEP6QMutex14QDeadlineTimer (libQt6Core.so.6 + 0x2ce120)
#3 0x00007148cee19f3a n/a (libQt6Quick.so.6 + 0x419f3a)
#4 0x00007148cd4c9747 n/a (libQt6Core.so.6 + 0x2c9747)
#5 0x00007148cd8a339d n/a (libc.so.6 + 0x9439d)
#6 0x00007148cd92849c n/a (libc.so.6 + 0x11949c)
Stack trace of thread 56923:
#0 0x00007148cd89fa19 n/a (libc.so.6 + 0x90a19)
#1 0x00007148cd8a27e2 pthread_cond_timedwait (libc.so.6 + 0x937e2)
#2 0x00007148cd4ce0b8 _ZN14QWaitCondition4waitEP6QMutex14QDeadlineTimer (libQt6Core.so.6 + 0x2ce0b8)
#3 0x00007148cd4c7db2 n/a (libQt6Core.so.6 + 0x2c7db2)
#4 0x00007148cd4c9747 n/a (libQt6Core.so.6 + 0x2c9747)
#5 0x00007148cd8a339d n/a (libc.so.6 + 0x9439d)
#6 0x00007148cd92849c n/a (libc.so.6 + 0x11949c)
Stack trace of thread 53395:
#0 0x00007148cd89fa19 n/a (libc.so.6 + 0x90a19)
#1 0x00007148cd8a2479 pthread_cond_wait (libc.so.6 + 0x93479)
#2 0x00007148cd4ce120 _ZN14QWaitCondition4waitEP6QMutex14QDeadlineTimer (libQt6Core.so.6 + 0x2ce120)
#3 0x00007148cee19f3a n/a (libQt6Quick.so.6 + 0x419f3a)
#4 0x00007148cd4c9747 n/a (libQt6Core.so.6 + 0x2c9747)
#5 0x00007148cd8a339d n/a (libc.so.6 + 0x9439d)
#6 0x00007148cd92849c n/a (libc.so.6 + 0x11949c)
Stack trace of thread 56932:
#0 0x00007148cd89fa19 n/a (libc.so.6 + 0x90a19)
#1 0x00007148cd8a27e2 pthread_cond_timedwait (libc.so.6 + 0x937e2)
#2 0x00007148cd4ce0b8 _ZN14QWaitCondition4waitEP6QMutex14QDeadlineTimer (libQt6Core.so.6 + 0x2ce0b8)
#3 0x00007148cd4c7db2 n/a (libQt6Core.so.6 + 0x2c7db2)
#4 0x00007148cd4c9747 n/a (libQt6Core.so.6 + 0x2c9747)
#5 0x00007148cd8a339d n/a (libc.so.6 + 0x9439d)
#6 0x00007148cd92849c n/a (libc.so.6 + 0x11949c)
Stack trace of thread 49979:
#0 0x00007148cd89fa19 n/a (libc.so.6 + 0x90a19)
#1 0x00007148cd8a2479 pthread_cond_wait (libc.so.6 + 0x93479)
#2 0x00007148cd4ce120 _ZN14QWaitCondition4waitEP6QMutex14QDeadlineTimer (libQt6Core.so.6 + 0x2ce120)
#3 0x00007148cee19f3a n/a (libQt6Quick.so.6 + 0x419f3a)
#4 0x00007148cd4c9747 n/a (libQt6Core.so.6 + 0x2c9747)
#5 0x00007148cd8a339d n/a (libc.so.6 + 0x9439d)
#6 0x00007148cd92849c n/a (libc.so.6 + 0x11949c)
Stack trace of thread 50639:
#0 0x00007148cd89fa19 n/a (libc.so.6 + 0x90a19)
#1 0x00007148cd8a2479 pthread_cond_wait (libc.so.6 + 0x93479)
#2 0x00007148cd4ce120 _ZN14QWaitCondition4waitEP6QMutex14QDeadlineTimer (libQt6Core.so.6 + 0x2ce120)
#3 0x00007148cee19f3a n/a (libQt6Quick.so.6 + 0x419f3a)
#4 0x00007148cd4c9747 n/a (libQt6Core.so.6 + 0x2c9747)
#5 0x00007148cd8a339d n/a (libc.so.6 + 0x9439d)
#6 0x00007148cd92849c n/a (libc.so.6 + 0x11949c)
Stack trace of thread 56937:
#0 0x00007148cd89fa19 n/a (libc.so.6 + 0x90a19)
#1 0x00007148cd8a27e2 pthread_cond_timedwait (libc.so.6 + 0x937e2)
#2 0x00007148cd4ce0b8 _ZN14QWaitCondition4waitEP6QMutex14QDeadlineTimer (libQt6Core.so.6 + 0x2ce0b8)
#3 0x00007148cd4c7db2 n/a (libQt6Core.so.6 + 0x2c7db2)
#4 0x00007148cd4c9747 n/a (libQt6Core.so.6 + 0x2c9747)
#5 0x00007148cd8a339d n/a (libc.so.6 + 0x9439d)
#6 0x00007148cd92849c n/a (libc.so.6 + 0x11949c)
Stack trace of thread 51038:
#0 0x00007148cd89fa19 n/a (libc.so.6 + 0x90a19)
#1 0x00007148cd8a2479 pthread_cond_wait (libc.so.6 + 0x93479)
#2 0x00007148cd4ce120 _ZN14QWaitCondition4waitEP6QMutex14QDeadlineTimer (libQt6Core.so.6 + 0x2ce120)
#3 0x00007148cee19f3a n/a (libQt6Quick.so.6 + 0x419f3a)
#4 0x00007148cd4c9747 n/a (libQt6Core.so.6 + 0x2c9747)
#5 0x00007148cd8a339d n/a (libc.so.6 + 0x9439d)
#6 0x00007148cd92849c n/a (libc.so.6 + 0x11949c)
Stack trace of thread 56938:
#0 0x00007148cd89fa19 n/a (libc.so.6 + 0x90a19)
#1 0x00007148cd8a27e2 pthread_cond_timedwait (libc.so.6 + 0x937e2)
#2 0x00007148cd4ce0b8 _ZN14QWaitCondition4waitEP6QMutex14QDeadlineTimer (libQt6Core.so.6 + 0x2ce0b8)
#3 0x00007148cd4c7db2 n/a (libQt6Core.so.6 + 0x2c7db2)
#4 0x00007148cd4c9747 n/a (libQt6Core.so.6 + 0x2c9747)
#5 0x00007148cd8a339d n/a (libc.so.6 + 0x9439d)
#6 0x00007148cd92849c n/a (libc.so.6 + 0x11949c)
Stack trace of thread 56941:
#0 0x00007148cd89fa19 n/a (libc.so.6 + 0x90a19)
#1 0x00007148cd8a27e2 pthread_cond_timedwait (libc.so.6 + 0x937e2)
#2 0x00007148cd4ce0b8 _ZN14QWaitCondition4waitEP6QMutex14QDeadlineTimer (libQt6Core.so.6 + 0x2ce0b8)
#3 0x00007148cd4c7db2 n/a (libQt6Core.so.6 + 0x2c7db2)
#4 0x00007148cd4c9747 n/a (libQt6Core.so.6 + 0x2c9747)
#5 0x00007148cd8a339d n/a (libc.so.6 + 0x9439d)
#6 0x00007148cd92849c n/a (libc.so.6 + 0x11949c)
Stack trace of thread 56952:
#0 0x00007148cd89fa19 n/a (libc.so.6 + 0x90a19)
#1 0x00007148cd8a27e2 pthread_cond_timedwait (libc.so.6 + 0x937e2)
#2 0x00007148cd4ce0b8 _ZN14QWaitCondition4waitEP6QMutex14QDeadlineTimer (libQt6Core.so.6 + 0x2ce0b8)
#3 0x00007148cd4c7db2 n/a (libQt6Core.so.6 + 0x2c7db2)
#4 0x00007148cd4c9747 n/a (libQt6Core.so.6 + 0x2c9747)
#5 0x00007148cd8a339d n/a (libc.so.6 + 0x9439d)
#6 0x00007148cd92849c n/a (libc.so.6 + 0x11949c)
Stack trace of thread 56955:
#0 0x00007148cd89fa19 n/a (libc.so.6 + 0x90a19)
#1 0x00007148cd8a27e2 pthread_cond_timedwait (libc.so.6 + 0x937e2)
#2 0x00007148cd4ce0b8 _ZN14QWaitCondition4waitEP6QMutex14QDeadlineTimer (libQt6Core.so.6 + 0x2ce0b8)
#3 0x00007148cd4c7db2 n/a (libQt6Core.so.6 + 0x2c7db2)
#4 0x00007148cd4c9747 n/a (libQt6Core.so.6 + 0x2c9747)
#5 0x00007148cd8a339d n/a (libc.so.6 + 0x9439d)
#6 0x00007148cd92849c n/a (libc.so.6 + 0x11949c)
Stack trace of thread 56935:
#0 0x00007148cd89fa19 n/a (libc.so.6 + 0x90a19)
#1 0x00007148cd8a27e2 pthread_cond_timedwait (libc.so.6 + 0x937e2)
#2 0x00007148cd4ce0b8 _ZN14QWaitCondition4waitEP6QMutex14QDeadlineTimer (libQt6Core.so.6 + 0x2ce0b8)
#3 0x00007148cd4c7db2 n/a (libQt6Core.so.6 + 0x2c7db2)
#4 0x00007148cd4c9747 n/a (libQt6Core.so.6 + 0x2c9747)
#5 0x00007148cd8a339d n/a (libc.so.6 + 0x9439d)
#6 0x00007148cd92849c n/a (libc.so.6 + 0x11949c)
Stack trace of thread 56936:
#0 0x00007148cd89fa19 n/a (libc.so.6 + 0x90a19)
#1 0x00007148cd8a27e2 pthread_cond_timedwait (libc.so.6 + 0x937e2)
#2 0x00007148cd4ce0b8 _ZN14QWaitCondition4waitEP6QMutex14QDeadlineTimer (libQt6Core.so.6 + 0x2ce0b8)
#3 0x00007148cd4c7db2 n/a (libQt6Core.so.6 + 0x2c7db2)
#4 0x00007148cd4c9747 n/a (libQt6Core.so.6 + 0x2c9747)
#5 0x00007148cd8a339d n/a (libc.so.6 + 0x9439d)
#6 0x00007148cd92849c n/a (libc.so.6 + 0x11949c)
Stack trace of thread 49096:
#0 0x00007148cd89fa19 n/a (libc.so.6 + 0x90a19)
#1 0x00007148cd8a2479 pthread_cond_wait (libc.so.6 + 0x93479)
#2 0x00007148cd4ce120 _ZN14QWaitCondition4waitEP6QMutex14QDeadlineTimer (libQt6Core.so.6 + 0x2ce120)
#3 0x00007148cee19f3a n/a (libQt6Quick.so.6 + 0x419f3a)
#4 0x00007148cd4c9747 n/a (libQt6Core.so.6 + 0x2c9747)
#5 0x00007148cd8a339d n/a (libc.so.6 + 0x9439d)
#6 0x00007148cd92849c n/a (libc.so.6 + 0x11949c)
Stack trace of thread 56953:
#0 0x00007148cd89fa19 n/a (libc.so.6 + 0x90a19)
#1 0x00007148cd8a27e2 pthread_cond_timedwait (libc.so.6 + 0x937e2)
#2 0x00007148cd4ce0b8 _ZN14QWaitCondition4waitEP6QMutex14QDeadlineTimer (libQt6Core.so.6 + 0x2ce0b8)
#3 0x00007148cd4c7db2 n/a (libQt6Core.so.6 + 0x2c7db2)
#4 0x00007148cd4c9747 n/a (libQt6Core.so.6 + 0x2c9747)
#5 0x00007148cd8a339d n/a (libc.so.6 + 0x9439d)
#6 0x00007148cd92849c n/a (libc.so.6 + 0x11949c)
Stack trace of thread 56946:
#0 0x00007148cd89fa19 n/a (libc.so.6 + 0x90a19)
#1 0x00007148cd8a27e2 pthread_cond_timedwait (libc.so.6 + 0x937e2)
#2 0x00007148cd4ce0b8 _ZN14QWaitCondition4waitEP6QMutex14QDeadlineTimer (libQt6Core.so.6 + 0x2ce0b8)
#3 0x00007148cd4c7db2 n/a (libQt6Core.so.6 + 0x2c7db2)
#4 0x00007148cd4c9747 n/a (libQt6Core.so.6 + 0x2c9747)
#5 0x00007148cd8a339d n/a (libc.so.6 + 0x9439d)
#6 0x00007148cd92849c n/a (libc.so.6 + 0x11949c)
Stack trace of thread 56940:
#0 0x00007148cd89fa19 n/a (libc.so.6 + 0x90a19)
#1 0x00007148cd8a27e2 pthread_cond_timedwait (libc.so.6 + 0x937e2)
#2 0x00007148cd4ce0b8 _ZN14QWaitCondition4waitEP6QMutex14QDeadlineTimer (libQt6Core.so.6 + 0x2ce0b8)
#3 0x00007148cd4c7db2 n/a (libQt6Core.so.6 + 0x2c7db2)
#4 0x00007148cd4c9747 n/a (libQt6Core.so.6 + 0x2c9747)
#5 0x00007148cd8a339d n/a (libc.so.6 + 0x9439d)
#6 0x00007148cd92849c n/a (libc.so.6 + 0x11949c)
Stack trace of thread 56950:
#0 0x00007148cd89fa19 n/a (libc.so.6 + 0x90a19)
#1 0x00007148cd8a27e2 pthread_cond_timedwait (libc.so.6 + 0x937e2)
#2 0x00007148cd4ce0b8 _ZN14QWaitCondition4waitEP6QMutex14QDeadlineTimer (libQt6Core.so.6 + 0x2ce0b8)
#3 0x00007148cd4c7db2 n/a (libQt6Core.so.6 + 0x2c7db2)
#4 0x00007148cd4c9747 n/a (libQt6Core.so.6 + 0x2c9747)
#5 0x00007148cd8a339d n/a (libc.so.6 + 0x9439d)
#6 0x00007148cd92849c n/a (libc.so.6 + 0x11949c)
Stack trace of thread 56957:
#0 0x00007148cd89fa19 n/a (libc.so.6 + 0x90a19)
#1 0x00007148cd8a27e2 pthread_cond_timedwait (libc.so.6 + 0x937e2)
#2 0x00007148cd4ce0b8 _ZN14QWaitCondition4waitEP6QMutex14QDeadlineTimer (libQt6Core.so.6 + 0x2ce0b8)
#3 0x00007148cd4c7db2 n/a (libQt6Core.so.6 + 0x2c7db2)
#4 0x00007148cd4c9747 n/a (libQt6Core.so.6 + 0x2c9747)
#5 0x00007148cd8a339d n/a (libc.so.6 + 0x9439d)
#6 0x00007148cd92849c n/a (libc.so.6 + 0x11949c)
Stack trace of thread 56939:
#0 0x00007148cd89fa19 n/a (libc.so.6 + 0x90a19)
#1 0x00007148cd8a27e2 pthread_cond_timedwait (libc.so.6 + 0x937e2)
#2 0x00007148cd4ce0b8 _ZN14QWaitCondition4waitEP6QMutex14QDeadlineTimer (libQt6Core.so.6 + 0x2ce0b8)
#3 0x00007148cd4c7db2 n/a (libQt6Core.so.6 + 0x2c7db2)
#4 0x00007148cd4c9747 n/a (libQt6Core.so.6 + 0x2c9747)
#5 0x00007148cd8a339d n/a (libc.so.6 + 0x9439d)
#6 0x00007148cd92849c n/a (libc.so.6 + 0x11949c)
Stack trace of thread 49037:
#0 0x00007148cd91a63d __poll (libc.so.6 + 0x10b63d)
#1 0x00007148cc1ce92d n/a (libglib-2.0.so.0 + 0xbe92d)
#2 0x00007148cc16bfc5 g_main_context_iteration (libglib-2.0.so.0 + 0x5bfc5)
#3 0x00007148cd5a2cbd _ZN20QEventDispatcherGlib13processEventsE6QFlagsIN10QEventLoop17ProcessEventsFlagEE (libQt6Core.so.6 + 0x3a2cbd)
#4 0x00007148cd34f01e _ZN10QEventLoop4execE6QFlagsINS_17ProcessEventsFlagEE (libQt6Core.so.6 + 0x14f01e)
#5 0x00007148cd43a560 _ZN7QThread3runEv (libQt6Core.so.6 + 0x23a560)
#6 0x00007148cd4c9747 n/a (libQt6Core.so.6 + 0x2c9747)
#7 0x00007148cd8a339d n/a (libc.so.6 + 0x9439d)
#8 0x00007148cd92849c n/a (libc.so.6 + 0x11949c)
Stack trace of thread 56942:
#0 0x00007148cd89fa19 n/a (libc.so.6 + 0x90a19)
#1 0x00007148cd8a27e2 pthread_cond_timedwait (libc.so.6 + 0x937e2)
#2 0x00007148cd4ce0b8 _ZN14QWaitCondition4waitEP6QMutex14QDeadlineTimer (libQt6Core.so.6 + 0x2ce0b8)
#3 0x00007148cd4c7db2 n/a (libQt6Core.so.6 + 0x2c7db2)
#4 0x00007148cd4c9747 n/a (libQt6Core.so.6 + 0x2c9747)
#5 0x00007148cd8a339d n/a (libc.so.6 + 0x9439d)
#6 0x00007148cd92849c n/a (libc.so.6 + 0x11949c)
Stack trace of thread 56947:
#0 0x00007148cd89fa19 n/a (libc.so.6 + 0x90a19)
#1 0x00007148cd8a27e2 pthread_cond_timedwait (libc.so.6 + 0x937e2)
#2 0x00007148cd4ce0b8 _ZN14QWaitCondition4waitEP6QMutex14QDeadlineTimer (libQt6Core.so.6 + 0x2ce0b8)
#3 0x00007148cd4c7db2 n/a (libQt6Core.so.6 + 0x2c7db2)
#4 0x00007148cd4c9747 n/a (libQt6Core.so.6 + 0x2c9747)
#5 0x00007148cd8a339d n/a (libc.so.6 + 0x9439d)
#6 0x00007148cd92849c n/a (libc.so.6 + 0x11949c)
Stack trace of thread 56944:
#0 0x00007148cd89fa19 n/a (libc.so.6 + 0x90a19)
#1 0x00007148cd8a27e2 pthread_cond_timedwait (libc.so.6 + 0x937e2)
#2 0x00007148cd4ce0b8 _ZN14QWaitCondition4waitEP6QMutex14QDeadlineTimer (libQt6Core.so.6 + 0x2ce0b8)
#3 0x00007148cd4c7db2 n/a (libQt6Core.so.6 + 0x2c7db2)
#4 0x00007148cd4c9747 n/a (libQt6Core.so.6 + 0x2c9747)
#5 0x00007148cd8a339d n/a (libc.so.6 + 0x9439d)
#6 0x00007148cd92849c n/a (libc.so.6 + 0x11949c)
Stack trace of thread 56943:
#0 0x00007148cd89fa19 n/a (libc.so.6 + 0x90a19)
#1 0x00007148cd8a27e2 pthread_cond_timedwait (libc.so.6 + 0x937e2)
#2 0x00007148cd4ce0b8 _ZN14QWaitCondition4waitEP6QMutex14QDeadlineTimer (libQt6Core.so.6 + 0x2ce0b8)
#3 0x00007148cd4c7db2 n/a (libQt6Core.so.6 + 0x2c7db2)
#4 0x00007148cd4c9747 n/a (libQt6Core.so.6 + 0x2c9747)
#5 0x00007148cd8a339d n/a (libc.so.6 + 0x9439d)
#6 0x00007148cd92849c n/a (libc.so.6 + 0x11949c)
Stack trace of thread 56951:
#0 0x00007148cd89fa19 n/a (libc.so.6 + 0x90a19)
#1 0x00007148cd8a27e2 pthread_cond_timedwait (libc.so.6 + 0x937e2)
#2 0x00007148cd4ce0b8 _ZN14QWaitCondition4waitEP6QMutex14QDeadlineTimer (libQt6Core.so.6 + 0x2ce0b8)
#3 0x00007148cd4c7db2 n/a (libQt6Core.so.6 + 0x2c7db2)
#4 0x00007148cd4c9747 n/a (libQt6Core.so.6 + 0x2c9747)
#5 0x00007148cd8a339d n/a (libc.so.6 + 0x9439d)
#6 0x00007148cd92849c n/a (libc.so.6 + 0x11949c)
Stack trace of thread 56925:
#0 0x00007148cd89fa19 n/a (libc.so.6 + 0x90a19)
#1 0x00007148cd8a27e2 pthread_cond_timedwait (libc.so.6 + 0x937e2)
#2 0x00007148cd4ce0b8 _ZN14QWaitCondition4waitEP6QMutex14QDeadlineTimer (libQt6Core.so.6 + 0x2ce0b8)
#3 0x00007148cd4c7db2 n/a (libQt6Core.so.6 + 0x2c7db2)
#4 0x00007148cd4c9747 n/a (libQt6Core.so.6 + 0x2c9747)
#5 0x00007148cd8a339d n/a (libc.so.6 + 0x9439d)
#6 0x00007148cd92849c n/a (libc.so.6 + 0x11949c)
Stack trace of thread 56934:
#0 0x00007148cd89fa19 n/a (libc.so.6 + 0x90a19)
#1 0x00007148cd8a27e2 pthread_cond_timedwait (libc.so.6 + 0x937e2)
#2 0x00007148cd4ce0b8 _ZN14QWaitCondition4waitEP6QMutex14QDeadlineTimer (libQt6Core.so.6 + 0x2ce0b8)
#3 0x00007148cd4c7db2 n/a (libQt6Core.so.6 + 0x2c7db2)
#4 0x00007148cd4c9747 n/a (libQt6Core.so.6 + 0x2c9747)
#5 0x00007148cd8a339d n/a (libc.so.6 + 0x9439d)
#6 0x00007148cd92849c n/a (libc.so.6 + 0x11949c)
Stack trace of thread 56945:
#0 0x00007148cd89fa19 n/a (libc.so.6 + 0x90a19)
#1 0x00007148cd8a27e2 pthread_cond_timedwait (libc.so.6 + 0x937e2)
#2 0x00007148cd4ce0b8 _ZN14QWaitCondition4waitEP6QMutex14QDeadlineTimer (libQt6Core.so.6 + 0x2ce0b8)
#3 0x00007148cd4c7db2 n/a (libQt6Core.so.6 + 0x2c7db2)
#4 0x00007148cd4c9747 n/a (libQt6Core.so.6 + 0x2c9747)
#5 0x00007148cd8a339d n/a (libc.so.6 + 0x9439d)
#6 0x00007148cd92849c n/a (libc.so.6 + 0x11949c)
Stack trace of thread 56954:
#0 0x00007148cd89fa19 n/a (libc.so.6 + 0x90a19)
#1 0x00007148cd8a27e2 pthread_cond_timedwait (libc.so.6 + 0x937e2)
#2 0x00007148cd4ce0b8 _ZN14QWaitCondition4waitEP6QMutex14QDeadlineTimer (libQt6Core.so.6 + 0x2ce0b8)
#3 0x00007148cd4c7db2 n/a (libQt6Core.so.6 + 0x2c7db2)
#4 0x00007148cd4c9747 n/a (libQt6Core.so.6 + 0x2c9747)
#5 0x00007148cd8a339d n/a (libc.so.6 + 0x9439d)
#6 0x00007148cd92849c n/a (libc.so.6 + 0x11949c)
Stack trace of thread 56948:
#0 0x00007148cd89fa19 n/a (libc.so.6 + 0x90a19)
#1 0x00007148cd8a27e2 pthread_cond_timedwait (libc.so.6 + 0x937e2)
#2 0x00007148cd4ce0b8 _ZN14QWaitCondition4waitEP6QMutex14QDeadlineTimer (libQt6Core.so.6 + 0x2ce0b8)
#3 0x00007148cd4c7db2 n/a (libQt6Core.so.6 + 0x2c7db2)
#4 0x00007148cd4c9747 n/a (libQt6Core.so.6 + 0x2c9747)
#5 0x00007148cd8a339d n/a (libc.so.6 + 0x9439d)
#6 0x00007148cd92849c n/a (libc.so.6 + 0x11949c)
Stack trace of thread 56956:
#0 0x00007148cd89fa19 n/a (libc.so.6 + 0x90a19)
#1 0x00007148cd8a27e2 pthread_cond_timedwait (libc.so.6 + 0x937e2)
#2 0x00007148cd4ce0b8 _ZN14QWaitCondition4waitEP6QMutex14QDeadlineTimer (libQt6Core.so.6 + 0x2ce0b8)
#3 0x00007148cd4c7db2 n/a (libQt6Core.so.6 + 0x2c7db2)
#4 0x00007148cd4c9747 n/a (libQt6Core.so.6 + 0x2c9747)
#5 0x00007148cd8a339d n/a (libc.so.6 + 0x9439d)
#6 0x00007148cd92849c n/a (libc.so.6 + 0x11949c)
Stack trace of thread 56927:
#0 0x00007148cd89fa19 n/a (libc.so.6 + 0x90a19)
#1 0x00007148cd8a27e2 pthread_cond_timedwait (libc.so.6 + 0x937e2)
#2 0x00007148cd4ce0b8 _ZN14QWaitCondition4waitEP6QMutex14QDeadlineTimer (libQt6Core.so.6 + 0x2ce0b8)
#3 0x00007148cd4c7db2 n/a (libQt6Core.so.6 + 0x2c7db2)
#4 0x00007148cd4c9747 n/a (libQt6Core.so.6 + 0x2c9747)
#5 0x00007148cd8a339d n/a (libc.so.6 + 0x9439d)
#6 0x00007148cd92849c n/a (libc.so.6 + 0x11949c)
Stack trace of thread 49098:
#0 0x00007148cd91a63d __poll (libc.so.6 + 0x10b63d)
#1 0x00007148be816997 n/a (libnvidia-glcore.so.555.58.02 + 0xa16997)
#2 0x00007148be805f74 n/a (libnvidia-glcore.so.555.58.02 + 0xa05f74)
#3 0x00007148cd8a339d n/a (libc.so.6 + 0x9439d)
#4 0x00007148cd92849c n/a (libc.so.6 + 0x11949c)
Stack trace of thread 56924:
#0 0x00007148cd89fa19 n/a (libc.so.6 + 0x90a19)
#1 0x00007148cd8a27e2 pthread_cond_timedwait (libc.so.6 + 0x937e2)
#2 0x00007148cd4ce0b8 _ZN14QWaitCondition4waitEP6QMutex14QDeadlineTimer (libQt6Core.so.6 + 0x2ce0b8)
#3 0x00007148cd4c7db2 n/a (libQt6Core.so.6 + 0x2c7db2)
#4 0x00007148cd4c9747 n/a (libQt6Core.so.6 + 0x2c9747)
#5 0x00007148cd8a339d n/a (libc.so.6 + 0x9439d)
#6 0x00007148cd92849c n/a (libc.so.6 + 0x11949c)
Stack trace of thread 56949:
#0 0x00007148cd89fa19 n/a (libc.so.6 + 0x90a19)
#1 0x00007148cd8a27e2 pthread_cond_timedwait (libc.so.6 + 0x937e2)
#2 0x00007148cd4ce0b8 _ZN14QWaitCondition4waitEP6QMutex14QDeadlineTimer (libQt6Core.so.6 + 0x2ce0b8)
#3 0x00007148cd4c7db2 n/a (libQt6Core.so.6 + 0x2c7db2)
#4 0x00007148cd4c9747 n/a (libQt6Core.so.6 + 0x2c9747)
#5 0x00007148cd8a339d n/a (libc.so.6 + 0x9439d)
#6 0x00007148cd92849c n/a (libc.so.6 + 0x11949c)
Stack trace of thread 56926:
#0 0x00007148cd89fa19 n/a (libc.so.6 + 0x90a19)
#1 0x00007148cd8a27e2 pthread_cond_timedwait (libc.so.6 + 0x937e2)
#2 0x00007148cd4ce0b8 _ZN14QWaitCondition4waitEP6QMutex14QDeadlineTimer (libQt6Core.so.6 + 0x2ce0b8)
#3 0x00007148cd4c7db2 n/a (libQt6Core.so.6 + 0x2c7db2)
#4 0x00007148cd4c9747 n/a (libQt6Core.so.6 + 0x2c9747)
#5 0x00007148cd8a339d n/a (libc.so.6 + 0x9439d)
#6 0x00007148cd92849c n/a (libc.so.6 + 0x11949c)
Stack trace of thread 56933:
#0 0x00007148cd89fa19 n/a (libc.so.6 + 0x90a19)
#1 0x00007148cd8a27e2 pthread_cond_timedwait (libc.so.6 + 0x937e2)
#2 0x00007148cd4ce0b8 _ZN14QWaitCondition4waitEP6QMutex14QDeadlineTimer (libQt6Core.so.6 + 0x2ce0b8)
#3 0x00007148cd4c7db2 n/a (libQt6Core.so.6 + 0x2c7db2)
#4 0x00007148cd4c9747 n/a (libQt6Core.so.6 + 0x2c9747)
#5 0x00007148cd8a339d n/a (libc.so.6 + 0x9439d)
#6 0x00007148cd92849c n/a (libc.so.6 + 0x11949c)
Stack trace of thread 49073:
#0 0x00007148cd91a63d __poll (libc.so.6 + 0x10b63d)
#1 0x00007148b47949b7 n/a (libpulse.so.0 + 0x339b7)
#2 0x00007148b477e45c pa_mainloop_poll (libpulse.so.0 + 0x1d45c)
#3 0x00007148b478861c pa_mainloop_iterate (libpulse.so.0 + 0x2761c)
#4 0x00007148b47886d1 pa_mainloop_run (libpulse.so.0 + 0x276d1)
#5 0x00007148b4798bf2 n/a (libpulse.so.0 + 0x37bf2)
#6 0x00007148b41aa2b7 n/a (libpulsecommon-17.0.so + 0x5c2b7)
#7 0x00007148cd8a339d n/a (libc.so.6 + 0x9439d)
#8 0x00007148cd92849c n/a (libc.so.6 + 0x11949c)
ELF object binary architecture: AMD x86-64
Jul 27 18:04:08 main systemd[1]: systemd-coredump@6-57015-0.service: Deactivated successfully.
Jul 27 18:04:08 main systemd[1]: systemd-coredump@6-57015-0.service: Consumed 5.652s CPU time, 1.8G memory peak.
Jul 27 18:04:08 main systemd[46586]: plasma-plasmashell.service: Main process exited, code=dumped, status=11/SEGV
Jul 27 18:04:08 main systemd[46586]: plasma-plasmashell.service: Failed with result 'core-dump'.
Jul 27 18:04:08 main systemd[46586]: plasma-plasmashell.service: Consumed 2min 9.543s CPU time, 1.1G memory peak.
Jul 27 18:04:08 main drkonqi-coredump-processor[57017]: "/usr/bin/plasmashell" 49019 "/var/lib/systemd/coredump/core.plasmashell.1000.7616067c477b4a4f95a666d208e8cb00.49019.1722099842000000.zst"
Jul 27 18:04:08 main systemd[46586]: Started Launch DrKonqi for a systemd-coredump crash (PID 57017/UID 0).
Jul 27 18:04:08 main systemd[1]: drkonqi-coredump-processor@6-57015-0.service: Deactivated successfully.
Jul 27 18:04:08 main systemd[46586]: plasma-plasmashell.service: Scheduled restart job, restart counter is at 2.
Jul 27 18:04:08 main systemd[46586]: Starting KDE Plasma Workspace...
Jul 27 18:04:09 main drkonqi[57164]: excavating QList("dump", "COREDUMP_FILENAME=/var/lib/systemd/coredump/core.plasmashell.1000.7616067c477b4a4f95a666d208e8cb00.49019.1722099842000000.zst")
Jul 27 18:04:09 main drkonqi-coredump-launcher[57189]: PID: 49019 (plasmashell)
Jul 27 18:04:09 main drkonqi-coredump-launcher[57189]: UID: 1000 (username)
Jul 27 18:04:09 main drkonqi-coredump-launcher[57189]: GID: 1000 (username)
Jul 27 18:04:09 main drkonqi-coredump-launcher[57189]: Signal: 11 (SEGV)
Jul 27 18:04:09 main drkonqi-coredump-launcher[57189]: Timestamp: Sat 2024-07-27 18:04:02 BST (7s ago)
Jul 27 18:04:09 main drkonqi-coredump-launcher[57189]: Command Line: /usr/bin/plasmashell --no-respawn
Jul 27 18:04:09 main drkonqi-coredump-launcher[57189]: Executable: /usr/bin/plasmashell
Jul 27 18:04:09 main drkonqi-coredump-launcher[57189]: Control Group: /user.slice/user-1000.slice/user@1000.service/session.slice/plasma-plasmashell.service
Jul 27 18:04:09 main drkonqi-coredump-launcher[57189]: Unit: user@1000.service
Jul 27 18:04:09 main drkonqi-coredump-launcher[57189]: User Unit: plasma-plasmashell.service
Jul 27 18:04:09 main drkonqi-coredump-launcher[57189]: Slice: user-1000.slice
Jul 27 18:04:09 main drkonqi-coredump-launcher[57189]: Owner UID: 1000 (username)
Jul 27 18:04:09 main drkonqi-coredump-launcher[57189]: Boot ID: 7616067c477b4a4f95a666d208e8cb00
Jul 27 18:04:09 main drkonqi-coredump-launcher[57189]: Machine ID: 57386b8bec034097a7795dbe426438b0
Jul 27 18:04:09 main drkonqi-coredump-launcher[57189]: Hostname: main
Jul 27 18:04:09 main drkonqi-coredump-launcher[57189]: Storage: /var/lib/systemd/coredump/core.plasmashell.1000.7616067c477b4a4f95a666d208e8cb00.49019.1722099842000000.zst (present)
Jul 27 18:04:09 main drkonqi-coredump-launcher[57189]: Size on Disk: 263.3M
Jul 27 18:04:09 main drkonqi-coredump-launcher[57189]: Message: Process 49019 (plasmashell) of user 1000 dumped core.
Jul 27 18:04:09 main drkonqi-coredump-launcher[57189]:
Jul 27 18:04:09 main drkonqi-coredump-launcher[57189]: Stack trace of thread 49132:
Jul 27 18:04:09 main drkonqi-coredump-launcher[57189]: #0 0x00007148cd8a53f4 n/a (libc.so.6 + 0x963f4)
Jul 27 18:04:09 main drkonqi-coredump-launcher[57189]: #1 0x00007148cd84c120 raise (libc.so.6 + 0x3d120)
Jul 27 18:04:09 main drkonqi-coredump-launcher[57189]: #2 0x00007148cfe46643 _ZN6KCrash19defaultCrashHandlerEi (libKF6Crash.so.6 + 0x6643)
Jul 27 18:04:09 main drkonqi-coredump-launcher[57189]: #3 0x00007148cd84c1d0 n/a (libc.so.6 + 0x3d1d0)
Jul 27 18:04:09 main drkonqi-coredump-launcher[57189]: #4 0x00007148cdeada70 _ZN14QOpenGLContext11doneCurrentEv (libQt6Gui.so.6 + 0x4ada70)
Jul 27 18:04:09 main drkonqi-coredump-launcher[57189]: #5 0x00007148cdeae072 n/a (libQt6Gui.so.6 + 0x4ae072)
Jul 27 18:04:09 main drkonqi-coredump-launcher[57189]: #6 0x00007148cd4d1a4c _ZN18QThreadStorageData6finishEPPv (libQt6Core.so.6 + 0x2d1a4c)
Jul 27 18:04:09 main drkonqi-coredump-launcher[57189]: #7 0x00007148cd60b270 n/a (libQt6Core.so.6 + 0x40b270)
Jul 27 18:04:09 main drkonqi-coredump-launcher[57189]: #8 0x00007148cd4c9754 n/a (libQt6Core.so.6 + 0x2c9754)
Jul 27 18:04:09 main drkonqi-coredump-launcher[57189]: #9 0x00007148cd8a339d n/a (libc.so.6 + 0x9439d)
Jul 27 18:04:09 main drkonqi-coredump-launcher[57189]: #10 0x00007148cd92849c n/a (libc.so.6 + 0x11949c)
Jul 27 18:04:09 main drkonqi-coredump-launcher[57189]:
Jul 27 18:04:09 main drkonqi-coredump-launcher[57189]: Stack trace of thread 49023:
Jul 27 18:04:09 main drkonqi-coredump-launcher[57189]: #0 0x00007148cd91a63d __poll (libc.so.6 + 0x10b63d)
Jul 27 18:04:09 main drkonqi-coredump-launcher[57189]: #1 0x00007148cfe5a20b n/a (libxcb.so.1 + 0xd20b)
Jul 27 18:04:09 main drkonqi-coredump-launcher[57189]: #2 0x00007148cfe5bf3d xcb_wait_for_event (libxcb.so.1 + 0xef3d)
Jul 27 18:04:09 main drkonqi-coredump-launcher[57189]: #3 0x00007148c729a761 n/a (libQt6XcbQpa.so.6 + 0x4e761)
Jul 27 18:04:09 main drkonqi-coredump-launcher[57189]: #4 0x00007148cd4c9747 n/a (libQt6Core.so.6 + 0x2c9747)
Jul 27 18:04:09 main drkonqi-coredump-launcher[57189]: #5 0x00007148cd8a339d n/a (libc.so.6 + 0x9439d)
Jul 27 18:04:09 main drkonqi-coredump-launcher[57189]: #6 0x00007148cd92849c n/a (libc.so.6 + 0x11949c)
Jul 27 18:04:09 main drkonqi-coredump-launcher[57189]:
Jul 27 18:04:09 main drkonqi-coredump-launcher[57189]: Stack trace of thread 49130:
Jul 27 18:04:09 main drkonqi-coredump-launcher[57189]: #0 0x00007148cd89fa19 n/a (libc.so.6 + 0x90a19)
Jul 27 18:04:09 main drkonqi-coredump-launcher[57189]: #1 0x00007148cd8a2479 pthread_cond_wait (libc.so.6 + 0x93479)
Jul 27 18:04:09 main drkonqi-coredump-launcher[57189]: #2 0x00007148cd4ce120 _ZN14QWaitCondition4waitEP6QMutex14QDeadlineTimer (libQt6Core.so.6 + 0x2ce120)
Jul 27 18:04:09 main drkonqi-coredump-launcher[57189]: #3 0x00007148cee19f3a n/a (libQt6Quick.so.6 + 0x419f3a)
Jul 27 18:04:09 main drkonqi-coredump-launcher[57189]: #4 0x00007148cd4c9747 n/a (libQt6Core.so.6 + 0x2c9747)
Jul 27 18:04:09 main drkonqi-coredump-launcher[57189]: #5 0x00007148cd8a339d n/a (libc.so.6 + 0x9439d)
Jul 27 18:04:09 main drkonqi-coredump-launcher[57189]: #6 0x00007148cd92849c n/a (libc.so.6 + 0x11949c)
Jul 27 18:04:09 main drkonqi-coredump-launcher[57189]:
Jul 27 18:04:09 main drkonqi-coredump-launcher[57189]: Stack trace of thread 49022:
Jul 27 18:04:09 main drkonqi-coredump-launcher[57189]: #0 0x00007148cd91a63d __poll (libc.so.6 + 0x10b63d)
Jul 27 18:04:09 main drkonqi-coredump-launcher[57189]: #1 0x00007148cc1ce92d n/a (libglib-2.0.so.0 + 0xbe92d)
Jul 27 18:04:09 main drkonqi-coredump-launcher[57189]: #2 0x00007148cc16bfc5 g_main_context_iteration (libglib-2.0.so.0 + 0x5bfc5)
Jul 27 18:04:09 main drkonqi-coredump-launcher[57189]: #3 0x00007148cd5a2cbd _ZN20QEventDispatcherGlib13processEventsE6QFlagsIN10QEventLoop17ProcessEventsFlagEE (libQt6Core.so.6 + 0x3a2cbd)
Jul 27 18:04:09 main drkonqi-coredump-launcher[57189]: #4 0x00007148cd34f01e _ZN10QEventLoop4execE6QFlagsINS_17ProcessEventsFlagEE (libQt6Core.so.6 + 0x14f01e)
Jul 27 18:04:09 main drkonqi-coredump-launcher[57189]: #5 0x00007148cd43a410 _ZN7QThread4execEv (libQt6Core.so.6 + 0x23a410)
Jul 27 18:04:09 main drkonqi-coredump-launcher[57189]: #6 0x00007148cf1c1e4e n/a (libQt6DBus.so.6 + 0x2de4e)
Jul 27 18:04:09 main drkonqi-coredump-launcher[57189]: #7 0x00007148cd4c9747 n/a (libQt6Core.so.6 + 0x2c9747)
Jul 27 18:04:09 main drkonqi-coredump-launcher[57189]: #8 0x00007148cd8a339d n/a (libc.so.6 + 0x9439d)
Jul 27 18:04:09 main drkonqi-coredump-launcher[57189]: #9 0x00007148cd92849c n/a (libc.so.6 + 0x11949c)
Jul 27 18:04:09 main drkonqi-coredump-launcher[57189]:
Jul 27 18:04:09 main drkonqi-coredump-launcher[57189]: Stack trace of thread 49019:
Jul 27 18:04:09 main drkonqi-coredump-launcher[57189]: #0 0x00007148cd89fa19 n/a (libc.so.6 + 0x90a19)
Jul 27 18:04:09 main drkonqi-coredump-launcher[57189]: #1 0x00007148cd8a2479 pthread_cond_wait (libc.so.6 + 0x93479)
Jul 27 18:04:09 main drkonqi-coredump-launcher[57189]: #2 0x00007148cd4ce120 _ZN14QWaitCondition4waitEP6QMutex14QDeadlineTimer (libQt6Core.so.6 + 0x2ce120)
Jul 27 18:04:09 main drkonqi-coredump-launcher[57189]: #3 0x00007148cd4c4e61 _ZN7QThread4waitE14QDeadlineTimer (libQt6Core.so.6 + 0x2c4e61)
Jul 27 18:04:09 main drkonqi-coredump-launcher[57189]: #4 0x00007148cee13c10 n/a (libQt6Quick.so.6 + 0x413c10)
Jul 27 18:04:09 main drkonqi-coredump-launcher[57189]: #5 0x00007148cdbdf0b8 _ZN7QWindow5eventEP6QEvent (libQt6Gui.so.6 + 0x1df0b8)
Jul 27 18:04:09 main drkonqi-coredump-launcher[57189]: #6 0x00006223ae3988fc n/a (plasmashell + 0x4a8fc)
Jul 27 18:04:09 main drkonqi-coredump-launcher[57189]: #7 0x00007148cf4fc51c _ZN19QApplicationPrivate13notify_helperEP7QObjectP6QEvent (libQt6Widgets.so.6 + 0xfc51c)
Jul 27 18:04:09 main drkonqi-coredump-launcher[57189]: #8 0x00007148cd344d28 _ZN16QCoreApplication15notifyInternal2EP7QObjectP6QEvent (libQt6Core.so.6 + 0x144d28)
Jul 27 18:04:09 main drkonqi-coredump-launcher[57189]: #9 0x00007148cdbd3254 _ZN14QWindowPrivate10setVisibleEb (libQt6Gui.so.6 + 0x1d3254)
Jul 27 18:04:09 main drkonqi-coredump-launcher[57189]: #10 0x00007148cdbd748a _ZN14QWindowPrivate7destroyEv (libQt6Gui.so.6 + 0x1d748a)
Jul 27 18:04:09 main drkonqi-coredump-launcher[57189]: #11 0x00007148cff4e0d4 _ZN11PlasmaQuick15ContainmentView7destroyEv (libPlasmaQuick.so.6 + 0x450d4)
Jul 27 18:04:09 main drkonqi-coredump-launcher[57189]: #12 0x00006223ae3a8400 n/a (plasmashell + 0x5a400)
Jul 27 18:04:09 main drkonqi-coredump-launcher[57189]: #13 0x00006223ae3a89ec n/a (plasmashell + 0x5a9ec)
Jul 27 18:04:09 main drkonqi-coredump-launcher[57189]: #14 0x00007148cd3a16f7 n/a (libQt6Core.so.6 + 0x1a16f7)
Jul 27 18:04:09 main drkonqi-coredump-launcher[57189]: #15 0x00006223ae3d55b7 n/a (plasmashell + 0x875b7)
Jul 27 18:04:09 main drkonqi-coredump-launcher[57189]: #16 0x00007148cd3a16f7 n/a (libQt6Core.so.6 + 0x1a16f7)
Jul 27 18:04:09 main drkonqi-coredump-launcher[57189]: #17 0x00007148cfed741a _ZN18OutputOrderWatcher18outputOrderChangedERK5QListI7QStringE (libkworkspace6.so.6 + 0xe41a)
Jul 27 18:04:09 main drkonqi-coredump-launcher[57189]: #18 0x00007148cfef4cf4 n/a (libkworkspace6.so.6 + 0x2bcf4)
Jul 27 18:04:09 main drkonqi-coredump-launcher[57189]: #19 0x00007148cd3a16f7 n/a (libQt6Core.so.6 + 0x1a16f7)
Jul 27 18:04:09 main drkonqi-coredump-launcher[57189]: #20 0x00007148cdbeb0a1 _ZN22QWindowSystemInterface17handleScreenAddedEP15QPlatformScreenb (libQt6Gui.so.6 + 0x1eb0a1)
Jul 27 18:04:09 main drkonqi-coredump-launcher[57189]: #21 0x00007148c728784d _ZN14QXcbConnection20createScreen_monitorEP18QXcbVirtualDesktopP24xcb_randr_monitor_info_tj (libQt6XcbQpa.so.6 + 0x3b84d)
Jul 27 18:04:09 main drkonqi-coredump-launcher[57189]: #22 0x00007148c72881ff _ZN14QXcbConnection28initializeScreensFromMonitorEP21xcb_screen_iterator_tiPP10QXcbScreenb (libQt6XcbQpa.so.6 + 0x3c1ff)
Jul 27 18:04:09 main drkonqi-coredump-launcher[57189]: #23 0x00007148c7288a17 _ZN14QXcbConnection17initializeScreensEb (libQt6XcbQpa.so.6 + 0x3ca17)
Jul 27 18:04:09 main drkonqi-coredump-launcher[57189]: #24 0x00007148c727cc2d _ZN14QXcbConnection14handleXcbEventEP19xcb_generic_event_t (libQt6XcbQpa.so.6 + 0x30c2d)
Jul 27 18:04:09 main drkonqi-coredump-launcher[57189]: #25 0x00007148c72839e2 _ZN14QXcbConnection16processXcbEventsE6QFlagsIN10QEventLoop17ProcessEventsFlagEE (libQt6XcbQpa.so.6 + 0x379e2)
Jul 27 18:04:09 main drkonqi-coredump-launcher[57189]: #26 0x00007148c729d62f n/a (libQt6XcbQpa.so.6 + 0x5162f)
Jul 27 18:04:09 main drkonqi-coredump-launcher[57189]: #27 0x00007148cc16cab9 n/a (libglib-2.0.so.0 + 0x5cab9)
Jul 27 18:04:09 main drkonqi-coredump-launcher[57189]: #28 0x00007148cc1ce9e7 n/a (libglib-2.0.so.0 + 0xbe9e7)
Jul 27 18:04:09 main drkonqi-coredump-launcher[57189]: #29 0x00007148cc16bfc5 g_main_context_iteration (libglib-2.0.so.0 + 0x5bfc5)
Jul 27 18:04:09 main drkonqi-coredump-launcher[57189]: #30 0x00007148cd5a2cbd _ZN20QEventDispatcherGlib13processEventsE6QFlagsIN10QEventLoop17ProcessEventsFlagEE (libQt6Core.so.6 + 0x3a2cbd)
Jul 27 18:04:09 main drkonqi-coredump-launcher[57189]: #31 0x00007148cd34f01e _ZN10QEventLoop4execE6QFlagsINS_17ProcessEventsFlagEE (libQt6Core.so.6 + 0x14f01e)
Jul 27 18:04:09 main drkonqi-coredump-launcher[57189]: #32 0x00007148cd34934d _ZN16QCoreApplication4execEv (libQt6Core.so.6 + 0x14934d)
Jul 27 18:04:09 main drkonqi-coredump-launcher[57189]: #33 0x00006223ae374d66 n/a (plasmashell + 0x26d66)
Jul 27 18:04:09 main drkonqi-coredump-launcher[57189]: #34 0x00007148cd834e08 n/a (libc.so.6 + 0x25e08)
Jul 27 18:04:09 main drkonqi-coredump-launcher[57189]: #35 0x00007148cd834ecc __libc_start_main (libc.so.6 + 0x25ecc)
Jul 27 18:04:09 main drkonqi-coredump-launcher[57189]: #36 0x00006223ae375255 n/a (plasmashell + 0x27255)
Jul 27 18:04:09 main drkonqi-coredump-launcher[57189]:
Jul 27 18:04:09 main drkonqi-coredump-launcher[57189]: Stack trace of thread 49056:
Jul 27 18:04:09 main drkonqi-coredump-launcher[57189]: #0 0x00007148cd91a63d __poll (libc.so.6 + 0x10b63d)
Jul 27 18:04:09 main drkonqi-coredump-launcher[57189]: #1 0x00007148cc1ce92d n/a (libglib-2.0.so.0 + 0xbe92d)
Jul 27 18:04:09 main drkonqi-coredump-launcher[57189]: #2 0x00007148cc16bfc5 g_main_context_iteration (libglib-2.0.so.0 + 0x5bfc5)
Jul 27 18:04:09 main drkonqi-coredump-launcher[57189]: #3 0x00007148cd5a2cbd _ZN20QEventDispatcherGlib13processEventsE6QFlagsIN10QEventLoop17ProcessEventsFlagEE (libQt6Core.so.6 + 0x3a2cbd)
Jul 27 18:04:09 main drkonqi-coredump-launcher[57189]: #4 0x00007148cd34f01e _ZN10QEventLoop4execE6QFlagsINS_17ProcessEventsFlagEE (libQt6Core.so.6 + 0x14f01e)
Jul 27 18:04:09 main drkonqi-coredump-launcher[57189]: #5 0x00007148cd43a410 _ZN7QThread4execEv (libQt6Core.so.6 + 0x23a410)
Jul 27 18:04:09 main drkonqi-coredump-launcher[57189]: #6 0x00007148ced63bd8 n/a (libQt6Quick.so.6 + 0x363bd8)
Jul 27 18:04:09 main drkonqi-coredump-launcher[57189]: #7 0x00007148cd4c9747 n/a (libQt6Core.so.6 + 0x2c9747)
Jul 27 18:04:09 main drkonqi-coredump-launcher[57189]: #8 0x00007148cd8a339d n/a (libc.so.6 + 0x9439d)
Jul 27 18:04:09 main drkonqi-coredump-launcher[57189]: #9 0x00007148cd92849c n/a (libc.so.6 + 0x11949c)
Jul 27 18:04:09 main drkonqi-coredump-launcher[57189]:
Jul 27 18:04:09 main drkonqi-coredump-launcher[57189]: Stack trace of thread 49072:
Jul 27 18:04:09 main drkonqi-coredump-launcher[57189]: #0 0x00007148cd91a63d __poll (libc.so.6 + 0x10b63d)
Jul 27 18:04:09 main drkonqi-coredump-launcher[57189]: #1 0x00007148cc1ce92d n/a (libglib-2.0.so.0 + 0xbe92d)
Jul 27 18:04:09 main drkonqi-coredump-launcher[57189]: #2 0x00007148cc16bfc5 g_main_context_iteration (libglib-2.0.so.0 + 0x5bfc5)
Jul 27 18:04:09 main drkonqi-coredump-launcher[57189]: #3 0x00007148cd5a2cbd _ZN20QEventDispatcherGlib13processEventsE6QFlagsIN10QEventLoop17ProcessEventsFlagEE (libQt6Core.so.6 + 0x3a2cbd)
Jul 27 18:04:09 main drkonqi-coredump-launcher[57189]: #4 0x00007148cd34f01e _ZN10QEventLoop4execE6QFlagsINS_17ProcessEventsFlagEE (libQt6Core.so.6 + 0x14f01e)
Jul 27 18:04:09 main drkonqi-coredump-launcher[57189]: #5 0x00007148cd43a410 _ZN7QThread4execEv (libQt6Core.so.6 + 0x23a410)
Jul 27 18:04:09 main drkonqi-coredump-launcher[57189]: #6 0x00007148ac1126c0 _ZN15KCupsConnection3runEv (libkcupslib.so.6.1.3 + 0x2d6c0)
Jul 27 18:04:09 main drkonqi-coredump-launcher[57189]: #7 0x00007148cd4c9747 n/a (libQt6Core.so.6 + 0x2c9747)
Jul 27 18:04:09 main drkonqi-coredump-launcher[57189]: #8 0x00007148cd8a339d n/a (libc.so.6 + 0x9439d)
Jul 27 18:04:09 main drkonqi-coredump-launcher[57189]: #9 0x00007148cd92849c n/a (libc.so.6 + 0x11949c)
Jul 27 18:04:09 main drkonqi-coredump-launcher[57189]:
Jul 27 18:04:09 main drkonqi-coredump-launcher[57189]: Stack trace of thread 50354:
Jul 27 18:04:09 main drkonqi-coredump-launcher[57189]: #0 0x00007148cd89fa19 n/a (libc.so.6 + 0x90a19)
Jul 27 18:04:09 main drkonqi-coredump-launcher[57189]: #1 0x00007148cd8a2479 pthread_cond_wait (libc.so.6 + 0x93479)
Jul 27 18:04:09 main drkonqi-coredump-launcher[57189]: #2 0x00007148cd4ce120 _ZN14QWaitCondition4waitEP6QMutex14QDeadlineTimer (libQt6Core.so.6 + 0x2ce120)
Jul 27 18:04:09 main drkonqi-coredump-launcher[57189]: #3 0x00007148cee19f3a n/a (libQt6Quick.so.6 + 0x419f3a)
Jul 27 18:04:09 main drkonqi-coredump-launcher[57189]: #4 0x00007148cd4c9747 n/a (libQt6Core.so.6 + 0x2c9747)
Jul 27 18:04:09 main drkonqi-coredump-launcher[57189]: #5 0x00007148cd8a339d n/a (libc.so.6 + 0x9439d)
Jul 27 18:04:09 main drkonqi-coredump-launcher[57189]: #6 0x00007148cd92849c n/a (libc.so.6 + 0x11949c)
Jul 27 18:04:09 main drkonqi-coredump-launcher[57189]:
Jul 27 18:04:09 main drkonqi-coredump-launcher[57189]: Stack trace of thread 56923:
Jul 27 18:04:09 main drkonqi-coredump-launcher[57189]: #0 0x00007148cd89fa19 n/a (libc.so.6 + 0x90a19)
Jul 27 18:04:09 main drkonqi-coredump-launcher[57189]: #1 0x00007148cd8a27e2 pthread_cond_timedwait (libc.so.6 + 0x937e2)
Jul 27 18:04:09 main drkonqi-coredump-launcher[57189]: #2 0x00007148cd4ce0b8 _ZN14QWaitCondition4waitEP6QMutex14QDeadlineTimer (libQt6Core.so.6 + 0x2ce0b8)
Jul 27 18:04:09 main drkonqi-coredump-launcher[57189]: #3 0x00007148cd4c7db2 n/a (libQt6Core.so.6 + 0x2c7db2)
Jul 27 18:04:09 main drkonqi-coredump-launcher[57189]: #4 0x00007148cd4c9747 n/a (libQt6Core.so.6 + 0x2c9747)
Jul 27 18:04:09 main drkonqi-coredump-launcher[57189]: #5 0x00007148cd8a339d n/a (libc.so.6 + 0x9439d)
Jul 27 18:04:09 main drkonqi-coredump-launcher[57189]: #6 0x00007148cd92849c n/a (libc.so.6 + 0x11949c)
Jul 27 18:04:09 main drkonqi-coredump-launcher[57189]:
Jul 27 18:04:09 main drkonqi-coredump-launcher[57189]: Stack trace of thread 53395:
Jul 27 18:04:09 main drkonqi-coredump-launcher[57189]: #0 0x00007148cd89fa19 n/a (libc.so.6 + 0x90a19)
Jul 27 18:04:09 main drkonqi-coredump-launcher[57189]: #1 0x00007148cd8a2479 pthread_cond_wait (libc.so.6 + 0x93479)
Jul 27 18:04:09 main drkonqi-coredump-launcher[57189]: #2 0x00007148cd4ce120 _ZN14QWaitCondition4waitEP6QMutex14QDeadlineTimer (libQt6Core.so.6 + 0x2ce120)
Jul 27 18:04:09 main drkonqi-coredump-launcher[57189]: #3 0x00007148cee19f3a n/a (libQt6Quick.so.6 + 0x419f3a)
Jul 27 18:04:09 main drkonqi-coredump-launcher[57189]: #4 0x00007148cd4c9747 n/a (libQt6Core.so.6 + 0x2c9747)
Jul 27 18:04:09 main drkonqi-coredump-launcher[57189]: #5 0x00007148cd8a339d n/a (libc.so.6 + 0x9439d)
Jul 27 18:04:09 main drkonqi-coredump-launcher[57189]: #6 0x00007148cd92849c n/a (libc.so.6 + 0x11949c)
Jul 27 18:04:09 main drkonqi-coredump-launcher[57189]:
Jul 27 18:04:09 main drkonqi-coredump-launcher[57189]: Stack trace of thread 56932:
Jul 27 18:04:09 main drkonqi-coredump-launcher[57189]: #0 0x00007148cd89fa19 n/a (libc.so.6 + 0x90a19)
Jul 27 18:04:09 main drkonqi-coredump-launcher[57189]: #1 0x00007148cd8a27e2 pthread_cond_timedwait (libc.so.6 + 0x937e2)
Jul 27 18:04:09 main drkonqi-coredump-launcher[57189]: #2 0x00007148cd4ce0b8 _ZN14QWaitCondition4waitEP6QMutex14QDeadlineTimer (libQt6Core.so.6 + 0x2ce0b8)
Jul 27 18:04:09 main drkonqi-coredump-launcher[57189]: #3 0x00007148cd4c7db2 n/a (libQt6Core.so.6 + 0x2c7db2)
Jul 27 18:04:09 main drkonqi-coredump-launcher[57189]: #4 0x00007148cd4c9747 n/a (libQt6Core.so.6 + 0x2c9747)
Jul 27 18:04:09 main drkonqi-coredump-launcher[57189]: #5 0x00007148cd8a339d n/a (libc.so.6 + 0x9439d)
Jul 27 18:04:09 main drkonqi-coredump-launcher[57189]: #6 0x00007148cd92849c n/a (libc.so.6 + 0x11949c)
Jul 27 18:04:09 main drkonqi-coredump-launcher[57189]:
Jul 27 18:04:09 main drkonqi-coredump-launcher[57189]: Stack trace of thread 49979:
Jul 27 18:04:09 main drkonqi-coredump-launcher[57189]: #0 0x00007148cd89fa19 n/a (libc.so.6 + 0x90a19)
Jul 27 18:04:09 main drkonqi-coredump-launcher[57189]: #1 0x00007148cd8a2479 pthread_cond_wait (libc.so.6 + 0x93479)
Jul 27 18:04:09 main drkonqi-coredump-launcher[57189]: #2 0x00007148cd4ce120 _ZN14QWaitCondition4waitEP6QMutex14QDeadlineTimer (libQt6Core.so.6 + 0x2ce120)
Jul 27 18:04:09 main drkonqi-coredump-launcher[57189]: #3 0x00007148cee19f3a n/a (libQt6Quick.so.6 + 0x419f3a)
Jul 27 18:04:09 main drkonqi-coredump-launcher[57189]: #4 0x00007148cd4c9747 n/a (libQt6Core.so.6 + 0x2c9747)
Jul 27 18:04:09 main drkonqi-coredump-launcher[57189]: #5 0x00007148cd8a339d n/a (libc.so.6 + 0x9439d)
Jul 27 18:04:09 main drkonqi-coredump-launcher[57189]: #6 0x00007148cd92849c n/a (libc.so.6 + 0x11949c)
Jul 27 18:04:09 main drkonqi-coredump-launcher[57189]:
Jul 27 18:04:09 main drkonqi-coredump-launcher[57189]: Stack trace of thread 50639:
Jul 27 18:04:09 main drkonqi-coredump-launcher[57189]: #0 0x00007148cd89fa19 n/a (libc.so.6 + 0x90a19)
Jul 27 18:04:09 main drkonqi-coredump-launcher[57189]: #1 0x00007148cd8a2479 pthread_cond_wait (libc.so.6 + 0x93479)
Jul 27 18:04:09 main drkonqi-coredump-launcher[57189]: #2 0x00007148cd4ce120 _ZN14QWaitCondition4waitEP6QMutex14QDeadlineTimer (libQt6Core.so.6 + 0x2ce120)
Jul 27 18:04:09 main drkonqi-coredump-launcher[57189]: #3 0x00007148cee19f3a n/a (libQt6Quick.so.6 + 0x419f3a)
Jul 27 18:04:09 main drkonqi-coredump-launcher[57189]: #4 0x00007148cd4c9747 n/a (libQt6Core.so.6 + 0x2c9747)
Jul 27 18:04:09 main drkonqi-coredump-launcher[57189]: #5 0x00007148cd8a339d n/a (libc.so.6 + 0x9439d)
Jul 27 18:04:09 main drkonqi-coredump-launcher[57189]: #6 0x00007148cd92849c n/a (libc.so.6 + 0x11949c)
Jul 27 18:04:09 main drkonqi-coredump-launcher[57189]:
Jul 27 18:04:09 main drkonqi-coredump-launcher[57189]: Stack trace of thread 56937:
Jul 27 18:04:09 main drkonqi-coredump-launcher[57189]: #0 0x00007148cd89fa19 n/a (libc.so.6 + 0x90a19)
Jul 27 18:04:09 main drkonqi-coredump-launcher[57189]: #1 0x00007148cd8a27e2 pthread_cond_timedwait (libc.so.6 + 0x937e2)
Jul 27 18:04:09 main drkonqi-coredump-launcher[57189]: #2 0x00007148cd4ce0b8 _ZN14QWaitCondition4waitEP6QMutex14QDeadlineTimer (libQt6Core.so.6 + 0x2ce0b8)
Jul 27 18:04:09 main drkonqi-coredump-launcher[57189]: #3 0x00007148cd4c7db2 n/a (libQt6Core.so.6 + 0x2c7db2)
Jul 27 18:04:09 main drkonqi-coredump-launcher[57189]: #4 0x00007148cd4c9747 n/a (libQt6Core.so.6 + 0x2c9747)
Jul 27 18:04:09 main drkonqi-coredump-launcher[57189]: #5 0x00007148cd8a339d n/a (libc.so.6 + 0x9439d)
Jul 27 18:04:09 main drkonqi-coredump-launcher[57189]: #6 0x00007148cd92849c n/a (libc.so.6 + 0x11949c)
Jul 27 18:04:09 main drkonqi-coredump-launcher[57189]:
Jul 27 18:04:09 main drkonqi-coredump-launcher[57189]: Stack trace of thread 51038:
Jul 27 18:04:09 main drkonqi-coredump-launcher[57189]: #0 0x00007148cd89fa19 n/a (libc.so.6 + 0x90a19)
Jul 27 18:04:09 main drkonqi-coredump-launcher[57189]: #1 0x00007148cd8a2479 pthread_cond_wait (libc.so.6 + 0x93479)
Jul 27 18:04:09 main drkonqi-coredump-launcher[57189]: #2 0x00007148cd4ce120 _ZN14QWaitCondition4waitEP6QMutex14QDeadlineTimer (libQt6Core.so.6 + 0x2ce120)
Jul 27 18:04:09 main drkonqi-coredump-launcher[57189]: #3 0x00007148cee19f3a n/a (libQt6Quick.so.6 + 0x419f3a)
Jul 27 18:04:09 main drkonqi-coredump-launcher[57189]: #4 0x00007148cd4c9747 n/a (libQt6Core.so.6 + 0x2c9747)
Jul 27 18:04:09 main drkonqi-coredump-launcher[57189]: #5 0x00007148cd8a339d n/a (libc.so.6 + 0x9439d)
Jul 27 18:04:09 main drkonqi-coredump-launcher[57189]: #6 0x00007148cd92849c n/a (libc.so.6 + 0x11949c)
Jul 27 18:04:09 main drkonqi-coredump-launcher[57189]:
Jul 27 18:04:09 main drkonqi-coredump-launcher[57189]: Stack trace of thread 56938:
Jul 27 18:04:09 main drkonqi-coredump-launcher[57189]: #0 0x00007148cd89fa19 n/a (libc.so.6 + 0x90a19)
Jul 27 18:04:09 main drkonqi-coredump-launcher[57189]: #1 0x00007148cd8a27e2 pthread_cond_timedwait (libc.so.6 + 0x937e2)
Jul 27 18:04:09 main drkonqi-coredump-launcher[57189]: #2 0x00007148cd4ce0b8 _ZN14QWaitCondition4waitEP6QMutex14QDeadlineTimer (libQt6Core.so.6 + 0x2ce0b8)
Jul 27 18:04:09 main drkonqi-coredump-launcher[57189]: #3 0x00007148cd4c7db2 n/a (libQt6Core.so.6 + 0x2c7db2)
Jul 27 18:04:09 main drkonqi-coredump-launcher[57189]: #4 0x00007148cd4c9747 n/a (libQt6Core.so.6 + 0x2c9747)
Jul 27 18:04:09 main drkonqi-coredump-launcher[57189]: #5 0x00007148cd8a339d n/a (libc.so.6 + 0x9439d)
Jul 27 18:04:09 main drkonqi-coredump-launcher[57189]: #6 0x00007148cd92849c n/a (libc.so.6 + 0x11949c)
Jul 27 18:04:09 main drkonqi-coredump-launcher[57189]:
Jul 27 18:04:09 main drkonqi-coredump-launcher[57189]: Stack trace of thread 56941:
Jul 27 18:04:09 main drkonqi-coredump-launcher[57189]: #0 0x00007148cd89fa19 n/a (libc.so.6 + 0x90a19)
Jul 27 18:04:09 main drkonqi-coredump-launcher[57189]: #1 0x00007148cd8a27e2 pthread_cond_timedwait (libc.so.6 + 0x937e2)
Jul 27 18:04:09 main drkonqi-coredump-launcher[57189]: #2 0x00007148cd4ce0b8 _ZN14QWaitCondition4waitEP6QMutex14QDeadlineTimer (libQt6Core.so.6 + 0x2ce0b8)
Jul 27 18:04:09 main drkonqi-coredump-launcher[57189]: #3 0x00007148cd4c7db2 n/a (libQt6Core.so.6 + 0x2c7db2)
Jul 27 18:04:09 main drkonqi-coredump-launcher[57189]: #4 0x00007148cd4c9747 n/a (libQt6Core.so.6 + 0x2c9747)
Jul 27 18:04:09 main drkonqi-coredump-launcher[57189]: #5 0x00007148cd8a339d n/a (libc.so.6 + 0x9439d)
Jul 27 18:04:09 main drkonqi-coredump-launcher[57189]: #6 0x00007148cd92849c n/a (libc.so.6 + 0x11949c)
Jul 27 18:04:09 main drkonqi-coredump-launcher[57189]:
Jul 27 18:04:09 main drkonqi-coredump-launcher[57189]: Stack trace of thread 56952:
Jul 27 18:04:09 main drkonqi-coredump-launcher[57189]: #0 0x00007148cd89fa19 n/a (libc.so.6 + 0x90a19)
Jul 27 18:04:09 main drkonqi-coredump-launcher[57189]: #1 0x00007148cd8a27e2 pthread_cond_timedwait (libc.so.6 + 0x937e2)
Jul 27 18:04:09 main drkonqi-coredump-launcher[57189]: #2 0x00007148cd4ce0b8 _ZN14QWaitCondition4waitEP6QMutex14QDeadlineTimer (libQt6Core.so.6 + 0x2ce0b8)
Jul 27 18:04:09 main drkonqi-coredump-launcher[57189]: #3 0x00007148cd4c7db2 n/a (libQt6Core.so.6 + 0x2c7db2)
Jul 27 18:04:09 main drkonqi-coredump-launcher[57189]: #4 0x00007148cd4c9747 n/a (libQt6Core.so.6 + 0x2c9747)
Jul 27 18:04:09 main drkonqi-coredump-launcher[57189]: #5 0x00007148cd8a339d n/a (libc.so.6 + 0x9439d)
Jul 27 18:04:09 main drkonqi-coredump-launcher[57189]: #6 0x00007148cd92849c n/a (libc.so.6 + 0x11949c)
Jul 27 18:04:09 main drkonqi-coredump-launcher[57189]:
Jul 27 18:04:09 main drkonqi-coredump-launcher[57189]: Stack trace of thread 56955:
Jul 27 18:04:09 main drkonqi-coredump-launcher[57189]: #0 0x00007148cd89fa19 n/a (libc.so.6 + 0x90a19)
Jul 27 18:04:09 main drkonqi-coredump-launcher[57189]: #1 0x00007148cd8a27e2 pthread_cond_timedwait (libc.so.6 + 0x937e2)
Jul 27 18:04:09 main drkonqi-coredump-launcher[57189]: #2 0x00007148cd4ce0b8 _ZN14QWaitCondition4waitEP6QMutex14QDeadlineTimer (libQt6Core.so.6 + 0x2ce0b8)
Jul 27 18:04:09 main drkonqi-coredump-launcher[57189]: #3 0x00007148cd4c7db2 n/a (libQt6Core.so.6 + 0x2c7db2)
Jul 27 18:04:09 main drkonqi-coredump-launcher[57189]: #4 0x00007148cd4c9747 n/a (libQt6Core.so.6 + 0x2c9747)
Jul 27 18:04:09 main drkonqi-coredump-launcher[57189]: #5 0x00007148cd8a339d n/a (libc.so.6 + 0x9439d)
Jul 27 18:04:09 main drkonqi-coredump-launcher[57189]: #6 0x00007148cd92849c n/a (libc.so.6 + 0x11949c)
Jul 27 18:04:09 main drkonqi-coredump-launcher[57189]:
Jul 27 18:04:09 main drkonqi-coredump-launcher[57189]: Stack trace of thread 56935:
Jul 27 18:04:09 main drkonqi-coredump-launcher[57189]: #0 0x00007148cd89fa19 n/a (libc.so.6 + 0x90a19)
Jul 27 18:04:09 main drkonqi-coredump-launcher[57189]: #1 0x00007148cd8a27e2 pthread_cond_timedwait (libc.so.6 + 0x937e2)
Jul 27 18:04:09 main drkonqi-coredump-launcher[57189]: #2 0x00007148cd4ce0b8 _ZN14QWaitCondition4waitEP6QMutex14QDeadlineTimer (libQt6Core.so.6 + 0x2ce0b8)
Jul 27 18:04:09 main drkonqi-coredump-launcher[57189]: #3 0x00007148cd4c7db2 n/a (libQt6Core.so.6 + 0x2c7db2)
Jul 27 18:04:09 main drkonqi-coredump-launcher[57189]: #4 0x00007148cd4c9747 n/a (libQt6Core.so.6 + 0x2c9747)
Jul 27 18:04:09 main drkonqi-coredump-launcher[57189]: #5 0x00007148cd8a339d n/a (libc.so.6 + 0x9439d)
Jul 27 18:04:09 main drkonqi-coredump-launcher[57189]: #6 0x00007148cd92849c n/a (libc.so.6 + 0x11949c)
Jul 27 18:04:09 main drkonqi-coredump-launcher[57189]:
Jul 27 18:04:09 main drkonqi-coredump-launcher[57189]: Stack trace of thread 56936:
Jul 27 18:04:09 main drkonqi-coredump-launcher[57189]: #0 0x00007148cd89fa19 n/a (libc.so.6 + 0x90a19)
Jul 27 18:04:09 main drkonqi-coredump-launcher[57189]: #1 0x00007148cd8a27e2 pthread_cond_timedwait (libc.so.6 + 0x937e2)
Jul 27 18:04:09 main drkonqi-coredump-launcher[57189]: #2 0x00007148cd4ce0b8 _ZN14QWaitCondition4waitEP6QMutex14QDeadlineTimer (libQt6Core.so.6 + 0x2ce0b8)
Jul 27 18:04:09 main drkonqi-coredump-launcher[57189]: #3 0x00007148cd4c7db2 n/a (libQt6Core.so.6 + 0x2c7db2)
Jul 27 18:04:09 main drkonqi-coredump-launcher[57189]: #4 0x00007148cd4c9747 n/a (libQt6Core.so.6 + 0x2c9747)
Jul 27 18:04:09 main drkonqi-coredump-launcher[57189]: #5 0x00007148cd8a339d n/a (libc.so.6 + 0x9439d)
Jul 27 18:04:09 main drkonqi-coredump-launcher[57189]: #6 0x00007148cd92849c n/a (libc.so.6 + 0x11949c)
Jul 27 18:04:09 main drkonqi-coredump-launcher[57189]:
Jul 27 18:04:09 main drkonqi-coredump-launcher[57189]: Stack trace of thread 49096:
Jul 27 18:04:09 main drkonqi-coredump-launcher[57189]: #0 0x00007148cd89fa19 n/a (libc.so.6 + 0x90a19)
Jul 27 18:04:09 main drkonqi-coredump-launcher[57189]: #1 0x00007148cd8a2479 pthread_cond_wait (libc.so.6 + 0x93479)
Jul 27 18:04:09 main drkonqi-coredump-launcher[57189]: #2 0x00007148cd4ce120 _ZN14QWaitCondition4waitEP6QMutex14QDeadlineTimer (libQt6Core.so.6 + 0x2ce120)
Jul 27 18:04:09 main drkonqi-coredump-launcher[57189]: #3 0x00007148cee19f3a n/a (libQt6Quick.so.6 + 0x419f3a)
Jul 27 18:04:09 main drkonqi-coredump-launcher[57189]: #4 0x00007148cd4c9747 n/a (libQt6Core.so.6 + 0x2c9747)
Jul 27 18:04:09 main drkonqi-coredump-launcher[57189]: #5 0x00007148cd8a339d n/a (libc.so.6 + 0x9439d)
Jul 27 18:04:09 main drkonqi-coredump-launcher[57189]: #6 0x00007148cd92849c n/a (libc.so.6 + 0x11949c)
Jul 27 18:04:09 main drkonqi-coredump-launcher[57189]:
Jul 27 18:04:09 main drkonqi-coredump-launcher[57189]: Stack trace of thread 56953:
Jul 27 18:04:09 main drkonqi-coredump-launcher[57189]: #0 0x00007148cd89fa19 n/a (libc.so.6 + 0x90a19)
Jul 27 18:04:09 main drkonqi-coredump-launcher[57189]: #1 0x00007148cd8a27e2 pthread_cond_timedwait (libc.so.6 + 0x937e2)
Jul 27 18:04:09 main drkonqi-coredump-launcher[57189]: #2 0x00007148cd4ce0b8 _ZN14QWaitCondition4waitEP6QMutex14QDeadlineTimer (libQt6Core.so.6 + 0x2ce0b8)
Jul 27 18:04:09 main drkonqi-coredump-launcher[57189]: #3 0x00007148cd4c7db2 n/a (libQt6Core.so.6 + 0x2c7db2)
Jul 27 18:04:09 main drkonqi-coredump-launcher[57189]: #4 0x00007148cd4c9747 n/a (libQt6Core.so.6 + 0x2c9747)
Jul 27 18:04:09 main drkonqi-coredump-launcher[57189]: #5 0x00007148cd8a339d n/a (libc.so.6 + 0x9439d)
Jul 27 18:04:09 main drkonqi-coredump-launcher[57189]: #6 0x00007148cd92849c n/a (libc.so.6 + 0x11949c)
Jul 27 18:04:09 main drkonqi-coredump-launcher[57189]:
Jul 27 18:04:09 main drkonqi-coredump-launcher[57189]: Stack trace of thread 56946:
Jul 27 18:04:09 main drkonqi-coredump-launcher[57189]: #0 0x00007148cd89fa19 n/a (libc.so.6 + 0x90a19)
Jul 27 18:04:09 main drkonqi-coredump-launcher[57189]: #1 0x00007148cd8a27e2 pthread_cond_timedwait (libc.so.6 + 0x937e2)
Jul 27 18:04:09 main drkonqi-coredump-launcher[57189]: #2 0x00007148cd4ce0b8 _ZN14QWaitCondition4waitEP6QMutex14QDeadlineTimer (libQt6Core.so.6 + 0x2ce0b8)
Jul 27 18:04:09 main drkonqi-coredump-launcher[57189]: #3 0x00007148cd4c7db2 n/a (libQt6Core.so.6 + 0x2c7db2)
Jul 27 18:04:09 main drkonqi-coredump-launcher[57189]: #4 0x00007148cd4c9747 n/a (libQt6Core.so.6 + 0x2c9747)
Jul 27 18:04:09 main drkonqi-coredump-launcher[57189]: #5 0x00007148cd8a339d n/a (libc.so.6 + 0x9439d)
Jul 27 18:04:09 main drkonqi-coredump-launcher[57189]: #6 0x00007148cd92849c n/a (libc.so.6 + 0x11949c)
Jul 27 18:04:09 main drkonqi-coredump-launcher[57189]:
Jul 27 18:04:09 main drkonqi-coredump-launcher[57189]: Stack trace of thread 56940:
Jul 27 18:04:09 main drkonqi-coredump-launcher[57189]: #0 0x00007148cd89fa19 n/a (libc.so.6 + 0x90a19)
Jul 27 18:04:09 main drkonqi-coredump-launcher[57189]: #1 0x00007148cd8a27e2 pthread_cond_timedwait (libc.so.6 + 0x937e2)
Jul 27 18:04:09 main drkonqi-coredump-launcher[57189]: #2 0x00007148cd4ce0b8 _ZN14QWaitCondition4waitEP6QMutex14QDeadlineTimer (libQt6Core.so.6 + 0x2ce0b8)
Jul 27 18:04:09 main drkonqi-coredump-launcher[57189]: #3 0x00007148cd4c7db2 n/a (libQt6Core.so.6 + 0x2c7db2)
Jul 27 18:04:09 main drkonqi-coredump-launcher[57189]: #4 0x00007148cd4c9747 n/a (libQt6Core.so.6 + 0x2c9747)
Jul 27 18:04:09 main drkonqi-coredump-launcher[57189]: #5 0x00007148cd8a339d n/a (libc.so.6 + 0x9439d)
Jul 27 18:04:09 main drkonqi-coredump-launcher[57189]: #6 0x00007148cd92849c n/a (libc.so.6 + 0x11949c)
Jul 27 18:04:09 main drkonqi-coredump-launcher[57189]:
Jul 27 18:04:09 main drkonqi-coredump-launcher[57189]: Stack trace of thread 56950:
Jul 27 18:04:09 main drkonqi-coredump-launcher[57189]: #0 0x00007148cd89fa19 n/a (libc.so.6 + 0x90a19)
Jul 27 18:04:09 main drkonqi-coredump-launcher[57189]: #1 0x00007148cd8a27e2 pthread_cond_timedwait (libc.so.6 + 0x937e2)
Jul 27 18:04:09 main drkonqi-coredump-launcher[57189]: #2 0x00007148cd4ce0b8 _ZN14QWaitCondition4waitEP6QMutex14QDeadlineTimer (libQt6Core.so.6 + 0x2ce0b8)
Jul 27 18:04:09 main drkonqi-coredump-launcher[57189]: #3 0x00007148cd4c7db2 n/a (libQt6Core.so.6 + 0x2c7db2)
Jul 27 18:04:09 main drkonqi-coredump-launcher[57189]: #4 0x00007148cd4c9747 n/a (libQt6Core.so.6 + 0x2c9747)
Jul 27 18:04:09 main drkonqi-coredump-launcher[57189]: #5 0x00007148cd8a339d n/a (libc.so.6 + 0x9439d)
Jul 27 18:04:09 main drkonqi-coredump-launcher[57189]: #6 0x00007148cd92849c n/a (libc.so.6 + 0x11949c)
Jul 27 18:04:09 main drkonqi-coredump-launcher[57189]:
Jul 27 18:04:09 main drkonqi-coredump-launcher[57189]: Stack trace of thread 56957:
Jul 27 18:04:09 main drkonqi-coredump-launcher[57189]: #0 0x00007148cd89fa19 n/a (libc.so.6 + 0x90a19)
Jul 27 18:04:09 main drkonqi-coredump-launcher[57189]: #1 0x00007148cd8a27e2 pthread_cond_timedwait (libc.so.6 + 0x937e2)
Jul 27 18:04:09 main drkonqi-coredump-launcher[57189]: #2 0x00007148cd4ce0b8 _ZN14QWaitCondition4waitEP6QMutex14QDeadlineTimer (libQt6Core.so.6 + 0x2ce0b8)
Jul 27 18:04:09 main drkonqi-coredump-launcher[57189]: #3 0x00007148cd4c7db2 n/a (libQt6Core.so.6 + 0x2c7db2)
Jul 27 18:04:09 main drkonqi-coredump-launcher[57189]: #4 0x00007148cd4c9747 n/a (libQt6Core.so.6 + 0x2c9747)
Jul 27 18:04:09 main drkonqi-coredump-launcher[57189]: #5 0x00007148cd8a339d n/a (libc.so.6 + 0x9439d)
Jul 27 18:04:09 main drkonqi-coredump-launcher[57189]: #6 0x00007148cd92849c n/a (libc.so.6 + 0x11949c)
Jul 27 18:04:09 main drkonqi-coredump-launcher[57189]:
Jul 27 18:04:09 main drkonqi-coredump-launcher[57189]: Stack trace of thread 56939:
Jul 27 18:04:09 main drkonqi-coredump-launcher[57189]: #0 0x00007148cd89fa19 n/a (libc.so.6 + 0x90a19)
Jul 27 18:04:09 main drkonqi-coredump-launcher[57189]: #1 0x00007148cd8a27e2 pthread_cond_timedwait (libc.so.6 + 0x937e2)
Jul 27 18:04:09 main drkonqi-coredump-launcher[57189]: #2 0x00007148cd4ce0b8 _ZN14QWaitCondition4waitEP6QMutex14QDeadlineTimer (libQt6Core.so.6 + 0x2ce0b8)
Jul 27 18:04:09 main drkonqi-coredump-launcher[57189]: #3 0x00007148cd4c7db2 n/a (libQt6Core.so.6 + 0x2c7db2)
Jul 27 18:04:09 main drkonqi-coredump-launcher[57189]: #4 0x00007148cd4c9747 n/a (libQt6Core.so.6 + 0x2c9747)
Jul 27 18:04:09 main drkonqi-coredump-launcher[57189]: #5 0x00007148cd8a339d n/a (libc.so.6 + 0x9439d)
Jul 27 18:04:09 main drkonqi-coredump-launcher[57189]: #6 0x00007148cd92849c n/a (libc.so.6 + 0x11949c)
Jul 27 18:04:09 main drkonqi-coredump-launcher[57189]:
Jul 27 18:04:09 main drkonqi-coredump-launcher[57189]: Stack trace of thread 49037:
Jul 27 18:04:09 main drkonqi-coredump-launcher[57189]: #0 0x00007148cd91a63d __poll (libc.so.6 + 0x10b63d)
Jul 27 18:04:09 main drkonqi-coredump-launcher[57189]: #1 0x00007148cc1ce92d n/a (libglib-2.0.so.0 + 0xbe92d)
Jul 27 18:04:09 main drkonqi-coredump-launcher[57189]: #2 0x00007148cc16bfc5 g_main_context_iteration (libglib-2.0.so.0 + 0x5bfc5)
Jul 27 18:04:09 main drkonqi-coredump-launcher[57189]: #3 0x00007148cd5a2cbd _ZN20QEventDispatcherGlib13processEventsE6QFlagsIN10QEventLoop17ProcessEventsFlagEE (libQt6Core.so.6 + 0x3a2cbd)
Jul 27 18:04:09 main drkonqi-coredump-launcher[57189]: #4 0x00007148cd34f01e _ZN10QEventLoop4execE6QFlagsINS_17ProcessEventsFlagEE (libQt6Core.so.6 + 0x14f01e)
Jul 27 18:04:09 main drkonqi-coredump-launcher[57189]: #5 0x00007148cd43a560 _ZN7QThread3runEv (libQt6Core.so.6 + 0x23a560)
Jul 27 18:04:09 main drkonqi-coredump-launcher[57189]: #6 0x00007148cd4c9747 n/a (libQt6Core.so.6 + 0x2c9747)
Jul 27 18:04:09 main drkonqi-coredump-launcher[57189]: #7 0x00007148cd8a339d n/a (libc.so.6 + 0x9439d)
Jul 27 18:04:09 main drkonqi-coredump-launcher[57189]: #8 0x00007148cd92849c n/a (libc.so.6 + 0x11949c)
Jul 27 18:04:09 main drkonqi-coredump-launcher[57189]:
Jul 27 18:04:09 main drkonqi-coredump-launcher[57189]: Stack trace of thread 56942:
Jul 27 18:04:09 main drkonqi-coredump-launcher[57189]: #0 0x00007148cd89fa19 n/a (libc.so.6 + 0x90a19)
Jul 27 18:04:09 main drkonqi-coredump-launcher[57189]: #1 0x00007148cd8a27e2 pthread_cond_timedwait (libc.so.6 + 0x937e2)
Jul 27 18:04:09 main drkonqi-coredump-launcher[57189]: #2 0x00007148cd4ce0b8 _ZN14QWaitCondition4waitEP6QMutex14QDeadlineTimer (libQt6Core.so.6 + 0x2ce0b8)
Jul 27 18:04:09 main drkonqi-coredump-launcher[57189]: #3 0x00007148cd4c7db2 n/a (libQt6Core.so.6 + 0x2c7db2)
Jul 27 18:04:09 main drkonqi-coredump-launcher[57189]: #4 0x00007148cd4c9747 n/a (libQt6Core.so.6 + 0x2c9747)
Jul 27 18:04:09 main drkonqi-coredump-launcher[57189]: #5 0x00007148cd8a339d n/a (libc.so.6 + 0x9439d)
Jul 27 18:04:09 main drkonqi-coredump-launcher[57189]: #6 0x00007148cd92849c n/a (libc.so.6 + 0x11949c)
Jul 27 18:04:09 main drkonqi-coredump-launcher[57189]:
Jul 27 18:04:09 main drkonqi-coredump-launcher[57189]: Stack trace of thread 56947:
Jul 27 18:04:09 main drkonqi-coredump-launcher[57189]: #0 0x00007148cd89fa19 n/a (libc.so.6 + 0x90a19)
Jul 27 18:04:09 main drkonqi-coredump-launcher[57189]: #1 0x00007148cd8a27e2 pthread_cond_timedwait (libc.so.6 + 0x937e2)
Jul 27 18:04:09 main drkonqi-coredump-launcher[57189]: #2 0x00007148cd4ce0b8 _ZN14QWaitCondition4waitEP6QMutex14QDeadlineTimer (libQt6Core.so.6 + 0x2ce0b8)
Jul 27 18:04:09 main drkonqi-coredump-launcher[57189]: #3 0x00007148cd4c7db2 n/a (libQt6Core.so.6 + 0x2c7db2)
Jul 27 18:04:09 main drkonqi-coredump-launcher[57189]: #4 0x00007148cd4c9747 n/a (libQt6Core.so.6 + 0x2c9747)
Jul 27 18:04:09 main drkonqi-coredump-launcher[57189]: #5 0x00007148cd8a339d n/a (libc.so.6 + 0x9439d)
Jul 27 18:04:09 main drkonqi-coredump-launcher[57189]: #6 0x00007148cd92849c n/a (libc.so.6 + 0x11949c)
Jul 27 18:04:09 main drkonqi-coredump-launcher[57189]:
Jul 27 18:04:09 main drkonqi-coredump-launcher[57189]: Stack trace of thread 56944:
Jul 27 18:04:09 main drkonqi-coredump-launcher[57189]: #0 0x00007148cd89fa19 n/a (libc.so.6 + 0x90a19)
Jul 27 18:04:09 main drkonqi-coredump-launcher[57189]: #1 0x00007148cd8a27e2 pthread_cond_timedwait (libc.so.6 + 0x937e2)
Jul 27 18:04:09 main drkonqi-coredump-launcher[57189]: #2 0x00007148cd4ce0b8 _ZN14QWaitCondition4waitEP6QMutex14QDeadlineTimer (libQt6Core.so.6 + 0x2ce0b8)
Jul 27 18:04:09 main drkonqi-coredump-launcher[57189]: #3 0x00007148cd4c7db2 n/a (libQt6Core.so.6 + 0x2c7db2)
Jul 27 18:04:09 main drkonqi-coredump-launcher[57189]: #4 0x00007148cd4c9747 n/a (libQt6Core.so.6 + 0x2c9747)
Jul 27 18:04:09 main drkonqi-coredump-launcher[57189]: #5 0x00007148cd8a339d n/a (libc.so.6 + 0x9439d)
Jul 27 18:04:09 main drkonqi-coredump-launcher[57189]: #6 0x00007148cd92849c n/a (libc.so.6 + 0x11949c)
Jul 27 18:04:09 main drkonqi-coredump-launcher[57189]:
Jul 27 18:04:09 main drkonqi-coredump-launcher[57189]: Stack trace of thread 56943:
Jul 27 18:04:09 main drkonqi-coredump-launcher[57189]: #0 0x00007148cd89fa19 n/a (libc.so.6 + 0x90a19)
Jul 27 18:04:09 main drkonqi-coredump-launcher[57189]: #1 0x00007148cd8a27e2 pthread_cond_timedwait (libc.so.6 + 0x937e2)
Jul 27 18:04:09 main drkonqi-coredump-launcher[57189]: #2 0x00007148cd4ce0b8 _ZN14QWaitCondition4waitEP6QMutex14QDeadlineTimer (libQt6Core.so.6 + 0x2ce0b8)
Jul 27 18:04:09 main drkonqi-coredump-launcher[57189]: #3 0x00007148cd4c7db2 n/a (libQt6Core.so.6 + 0x2c7db2)
Jul 27 18:04:09 main drkonqi-coredump-launcher[57189]: #4 0x00007148cd4c9747 n/a (libQt6Core.so.6 + 0x2c9747)
Jul 27 18:04:09 main drkonqi-coredump-launcher[57189]: #5 0x00007148cd8a339d n/a (libc.so.6 + 0x9439d)
Jul 27 18:04:09 main drkonqi-coredump-launcher[57189]: #6 0x00007148cd92849c n/a (libc.so.6 + 0x11949c)
Jul 27 18:04:09 main drkonqi-coredump-launcher[57189]:
Jul 27 18:04:09 main drkonqi-coredump-launcher[57189]: Stack trace of thread 56951:
Jul 27 18:04:09 main drkonqi-coredump-launcher[57189]: #0 0x00007148cd89fa19 n/a (libc.so.6 + 0x90a19)
Jul 27 18:04:09 main drkonqi-coredump-launcher[57189]: #1 0x00007148cd8a27e2 pthread_cond_timedwait (libc.so.6 + 0x937e2)
Jul 27 18:04:09 main drkonqi-coredump-launcher[57189]: #2 0x00007148cd4ce0b8 _ZN14QWaitCondition4waitEP6QMutex14QDeadlineTimer (libQt6Core.so.6 + 0x2ce0b8)
Jul 27 18:04:09 main drkonqi-coredump-launcher[57189]: #3 0x00007148cd4c7db2 n/a (libQt6Core.so.6 + 0x2c7db2)
Jul 27 18:04:09 main drkonqi-coredump-launcher[57189]: #4 0x00007148cd4c9747 n/a (libQt6Core.so.6 + 0x2c9747)
Jul 27 18:04:09 main drkonqi-coredump-launcher[57189]: #5 0x00007148cd8a339d n/a (libc.so.6 + 0x9439d)
Jul 27 18:04:09 main drkonqi-coredump-launcher[57189]: #6 0x00007148cd92849c n/a (libc.so.6 + 0x11949c)
Jul 27 18:04:09 main drkonqi-coredump-launcher[57189]:
Jul 27 18:04:09 main drkonqi-coredump-launcher[57189]: Stack trace of thread 56925:
Jul 27 18:04:09 main drkonqi-coredump-launcher[57189]: #0 0x00007148cd89fa19 n/a (libc.so.6 + 0x90a19)
Jul 27 18:04:09 main drkonqi-coredump-launcher[57189]: #1 0x00007148cd8a27e2 pthread_cond_timedwait (libc.so.6 + 0x937e2)
Jul 27 18:04:09 main drkonqi-coredump-launcher[57189]: #2 0x00007148cd4ce0b8 _ZN14QWaitCondition4waitEP6QMutex14QDeadlineTimer (libQt6Core.so.6 + 0x2ce0b8)
Jul 27 18:04:09 main drkonqi-coredump-launcher[57189]: #3 0x00007148cd4c7db2 n/a (libQt6Core.so.6 + 0x2c7db2)
Jul 27 18:04:09 main drkonqi-coredump-launcher[57189]: #4 0x00007148cd4c9747 n/a (libQt6Core.so.6 + 0x2c9747)
Jul 27 18:04:09 main drkonqi-coredump-launcher[57189]: #5 0x00007148cd8a339d n/a (libc.so.6 + 0x9439d)
Jul 27 18:04:09 main drkonqi-coredump-launcher[57189]: #6 0x00007148cd92849c n/a (libc.so.6 + 0x11949c)
Jul 27 18:04:09 main drkonqi-coredump-launcher[57189]:
Jul 27 18:04:09 main drkonqi-coredump-launcher[57189]: Stack trace of thread 56934:
Jul 27 18:04:09 main drkonqi-coredump-launcher[57189]: #0 0x00007148cd89fa19 n/a (libc.so.6 + 0x90a19)
Jul 27 18:04:09 main drkonqi-coredump-launcher[57189]: #1 0x00007148cd8a27e2 pthread_cond_timedwait (libc.so.6 + 0x937e2)
Jul 27 18:04:09 main drkonqi-coredump-launcher[57189]: #2 0x00007148cd4ce0b8 _ZN14QWaitCondition4waitEP6QMutex14QDeadlineTimer (libQt6Core.so.6 + 0x2ce0b8)
Jul 27 18:04:09 main drkonqi-coredump-launcher[57189]: #3 0x00007148cd4c7db2 n/a (libQt6Core.so.6 + 0x2c7db2)
Jul 27 18:04:09 main drkonqi-coredump-launcher[57189]: #4 0x00007148cd4c9747 n/a (libQt6Core.so.6 + 0x2c9747)
Jul 27 18:04:09 main drkonqi-coredump-launcher[57189]: #5 0x00007148cd8a339d n/a (libc.so.6 + 0x9439d)
Jul 27 18:04:09 main drkonqi-coredump-launcher[57189]: #6 0x00007148cd92849c n/a (libc.so.6 + 0x11949c)
Jul 27 18:04:09 main drkonqi-coredump-launcher[57189]:
Jul 27 18:04:09 main drkonqi-coredump-launcher[57189]: Stack trace of thread 56945:
Jul 27 18:04:09 main drkonqi-coredump-launcher[57189]: #0 0x00007148cd89fa19 n/a (libc.so.6 + 0x90a19)
Jul 27 18:04:09 main drkonqi-coredump-launcher[57189]: #1 0x00007148cd8a27e2 pthread_cond_timedwait (libc.so.6 + 0x937e2)
Jul 27 18:04:09 main drkonqi-coredump-launcher[57189]: #2 0x00007148cd4ce0b8 _ZN14QWaitCondition4waitEP6QMutex14QDeadlineTimer (libQt6Core.so.6 + 0x2ce0b8)
Jul 27 18:04:09 main drkonqi-coredump-launcher[57189]: #3 0x00007148cd4c7db2 n/a (libQt6Core.so.6 + 0x2c7db2)
Jul 27 18:04:09 main drkonqi-coredump-launcher[57189]: #4 0x00007148cd4c9747 n/a (libQt6Core.so.6 + 0x2c9747)
Jul 27 18:04:09 main drkonqi-coredump-launcher[57189]: #5 0x00007148cd8a339d n/a (libc.so.6 + 0x9439d)
Jul 27 18:04:09 main drkonqi-coredump-launcher[57189]: #6 0x00007148cd92849c n/a (libc.so.6 + 0x11949c)
Jul 27 18:04:09 main drkonqi-coredump-launcher[57189]:
Jul 27 18:04:09 main drkonqi-coredump-launcher[57189]: Stack trace of thread 56954:
Jul 27 18:04:09 main drkonqi-coredump-launcher[57189]: #0 0x00007148cd89fa19 n/a (libc.so.6 + 0x90a19)
Jul 27 18:04:09 main drkonqi-coredump-launcher[57189]: #1 0x00007148cd8a27e2 pthread_cond_timedwait (libc.so.6 + 0x937e2)
Jul 27 18:04:09 main drkonqi-coredump-launcher[57189]: #2 0x00007148cd4ce0b8 _ZN14QWaitCondition4waitEP6QMutex14QDeadlineTimer (libQt6Core.so.6 + 0x2ce0b8)
Jul 27 18:04:09 main drkonqi-coredump-launcher[57189]: #3 0x00007148cd4c7db2 n/a (libQt6Core.so.6 + 0x2c7db2)
Jul 27 18:04:09 main drkonqi-coredump-launcher[57189]: #4 0x00007148cd4c9747 n/a (libQt6Core.so.6 + 0x2c9747)
Jul 27 18:04:09 main drkonqi-coredump-launcher[57189]: #5 0x00007148cd8a339d n/a (libc.so.6 + 0x9439d)
Jul 27 18:04:09 main drkonqi-coredump-launcher[57189]: #6 0x00007148cd92849c n/a (libc.so.6 + 0x11949c)
Jul 27 18:04:09 main drkonqi-coredump-launcher[57189]:
Jul 27 18:04:09 main drkonqi-coredump-launcher[57189]: Stack trace of thread 56948:
Jul 27 18:04:09 main drkonqi-coredump-launcher[57189]: #0 0x00007148cd89fa19 n/a (libc.so.6 + 0x90a19)
Jul 27 18:04:09 main drkonqi-coredump-launcher[57189]: #1 0x00007148cd8a27e2 pthread_cond_timedwait (libc.so.6 + 0x937e2)
Jul 27 18:04:09 main drkonqi-coredump-launcher[57189]: #2 0x00007148cd4ce0b8 _ZN14QWaitCondition4waitEP6QMutex14QDeadlineTimer (libQt6Core.so.6 + 0x2ce0b8)
Jul 27 18:04:09 main drkonqi-coredump-launcher[57189]: #3 0x00007148cd4c7db2 n/a (libQt6Core.so.6 + 0x2c7db2)
Jul 27 18:04:09 main drkonqi-coredump-launcher[57189]: #4 0x00007148cd4c9747 n/a (libQt6Core.so.6 + 0x2c9747)
Jul 27 18:04:09 main drkonqi-coredump-launcher[57189]: #5 0x00007148cd8a339d n/a (libc.so.6 + 0x9439d)
Jul 27 18:04:09 main drkonqi-coredump-launcher[57189]: #6 0x00007148cd92849c n/a (libc.so.6 + 0x11949c)
Jul 27 18:04:09 main drkonqi-coredump-launcher[57189]:
Jul 27 18:04:09 main drkonqi-coredump-launcher[57189]: Stack trace of thread 56956:
Jul 27 18:04:09 main drkonqi-coredump-launcher[57189]: #0 0x00007148cd89fa19 n/a (libc.so.6 + 0x90a19)
Jul 27 18:04:09 main drkonqi-coredump-launcher[57189]: #1 0x00007148cd8a27e2 pthread_cond_timedwait (libc.so.6 + 0x937e2)
Jul 27 18:04:09 main drkonqi-coredump-launcher[57189]: #2 0x00007148cd4ce0b8 _ZN14QWaitCondition4waitEP6QMutex14QDeadlineTimer (libQt6Core.so.6 + 0x2ce0b8)
Jul 27 18:04:09 main drkonqi-coredump-launcher[57189]: #3 0x00007148cd4c7db2 n/a (libQt6Core.so.6 + 0x2c7db2)
Jul 27 18:04:09 main drkonqi-coredump-launcher[57189]: #4 0x00007148cd4c9747 n/a (libQt6Core.so.6 + 0x2c9747)
Jul 27 18:04:09 main drkonqi-coredump-launcher[57189]: #5 0x00007148cd8a339d n/a (libc.so.6 + 0x9439d)
Jul 27 18:04:09 main drkonqi-coredump-launcher[57189]: #6 0x00007148cd92849c n/a (libc.so.6 + 0x11949c)
Jul 27 18:04:09 main drkonqi-coredump-launcher[57189]:
Jul 27 18:04:09 main drkonqi-coredump-launcher[57189]: Stack trace of thread 56927:
Jul 27 18:04:09 main drkonqi-coredump-launcher[57189]: #0 0x00007148cd89fa19 n/a (libc.so.6 + 0x90a19)
Jul 27 18:04:09 main drkonqi-coredump-launcher[57189]: #1 0x00007148cd8a27e2 pthread_cond_timedwait (libc.so.6 + 0x937e2)
Jul 27 18:04:09 main drkonqi-coredump-launcher[57189]: #2 0x00007148cd4ce0b8 _ZN14QWaitCondition4waitEP6QMutex14QDeadlineTimer (libQt6Core.so.6 + 0x2ce0b8)
Jul 27 18:04:09 main drkonqi-coredump-launcher[57189]: #3 0x00007148cd4c7db2 n/a (libQt6Core.so.6 + 0x2c7db2)
Jul 27 18:04:09 main drkonqi-coredump-launcher[57189]: #4 0x00007148cd4c9747 n/a (libQt6Core.so.6 + 0x2c9747)
Jul 27 18:04:09 main drkonqi-coredump-launcher[57189]: #5 0x00007148cd8a339d n/a (libc.so.6 + 0x9439d)
Jul 27 18:04:09 main drkonqi-coredump-launcher[57189]: #6 0x00007148cd92849c n/a (libc.so.6 + 0x11949c)
Jul 27 18:04:09 main drkonqi-coredump-launcher[57189]:
Jul 27 18:04:09 main drkonqi-coredump-launcher[57189]: Stack trace of thread 49098:
Jul 27 18:04:09 main drkonqi-coredump-launcher[57189]: #0 0x00007148cd91a63d __poll (libc.so.6 + 0x10b63d)
Jul 27 18:04:09 main drkonqi-coredump-launcher[57189]: #1 0x00007148be816997 n/a (libnvidia-glcore.so.555.58.02 + 0xa16997)
Jul 27 18:04:09 main drkonqi-coredump-launcher[57189]: #2 0x00007148be805f74 n/a (libnvidia-glcore.so.555.58.02 + 0xa05f74)
Jul 27 18:04:09 main drkonqi-coredump-launcher[57189]: #3 0x00007148cd8a339d n/a (libc.so.6 + 0x9439d)
Jul 27 18:04:09 main drkonqi-coredump-launcher[57189]: #4 0x00007148cd92849c n/a (libc.so.6 + 0x11949c)
Jul 27 18:04:09 main drkonqi-coredump-launcher[57189]:
Jul 27 18:04:09 main drkonqi-coredump-launcher[57189]: Stack trace of thread 56924:
Jul 27 18:04:09 main drkonqi-coredump-launcher[57189]: #0 0x00007148cd89fa19 n/a (libc.so.6 + 0x90a19)
Jul 27 18:04:09 main drkonqi-coredump-launcher[57189]: #1 0x00007148cd8a27e2 pthread_cond_timedwait (libc.so.6 + 0x937e2)
Jul 27 18:04:09 main drkonqi-coredump-launcher[57189]: #2 0x00007148cd4ce0b8 _ZN14QWaitCondition4waitEP6QMutex14QDeadlineTimer (libQt6Core.so.6 + 0x2ce0b8)
Jul 27 18:04:09 main drkonqi-coredump-launcher[57189]: #3 0x00007148cd4c7db2 n/a (libQt6Core.so.6 + 0x2c7db2)
Jul 27 18:04:09 main drkonqi-coredump-launcher[57189]: #4 0x00007148cd4c9747 n/a (libQt6Core.so.6 + 0x2c9747)
Jul 27 18:04:09 main drkonqi-coredump-launcher[57189]: #5 0x00007148cd8a339d n/a (libc.so.6 + 0x9439d)
Jul 27 18:04:09 main drkonqi-coredump-launcher[57189]: #6 0x00007148cd92849c n/a (libc.so.6 + 0x11949c)
Jul 27 18:04:09 main drkonqi-coredump-launcher[57189]:
Jul 27 18:04:09 main drkonqi-coredump-launcher[57189]: Stack trace of thread 56949:
Jul 27 18:04:09 main drkonqi-coredump-launcher[57189]: #0 0x00007148cd89fa19 n/a (libc.so.6 + 0x90a19)
Jul 27 18:04:09 main drkonqi-coredump-launcher[57189]: #1 0x00007148cd8a27e2 pthread_cond_timedwait (libc.so.6 + 0x937e2)
Jul 27 18:04:09 main drkonqi-coredump-launcher[57189]: #2 0x00007148cd4ce0b8 _ZN14QWaitCondition4waitEP6QMutex14QDeadlineTimer (libQt6Core.so.6 + 0x2ce0b8)
Jul 27 18:04:09 main drkonqi-coredump-launcher[57189]: #3 0x00007148cd4c7db2 n/a (libQt6Core.so.6 + 0x2c7db2)
Jul 27 18:04:09 main drkonqi-coredump-launcher[57189]: #4 0x00007148cd4c9747 n/a (libQt6Core.so.6 + 0x2c9747)
Jul 27 18:04:09 main drkonqi-coredump-launcher[57189]: #5 0x00007148cd8a339d n/a (libc.so.6 + 0x9439d)
Jul 27 18:04:09 main drkonqi-coredump-launcher[57189]: #6 0x00007148cd92849c n/a (libc.so.6 + 0x11949c)
Jul 27 18:04:09 main drkonqi-coredump-launcher[57189]:
Jul 27 18:04:09 main drkonqi-coredump-launcher[57189]: Stack trace of thread 56926:
Jul 27 18:04:09 main drkonqi-coredump-launcher[57189]: #0 0x00007148cd89fa19 n/a (libc.so.6 + 0x90a19)
Jul 27 18:04:09 main drkonqi-coredump-launcher[57189]: #1 0x00007148cd8a27e2 pthread_cond_timedwait (libc.so.6 + 0x937e2)
Jul 27 18:04:09 main drkonqi-coredump-launcher[57189]: #2 0x00007148cd4ce0b8 _ZN14QWaitCondition4waitEP6QMutex14QDeadlineTimer (libQt6Core.so.6 + 0x2ce0b8)
Jul 27 18:04:09 main drkonqi-coredump-launcher[57189]: #3 0x00007148cd4c7db2 n/a (libQt6Core.so.6 + 0x2c7db2)
Jul 27 18:04:09 main drkonqi-coredump-launcher[57189]: #4 0x00007148cd4c9747 n/a (libQt6Core.so.6 + 0x2c9747)
Jul 27 18:04:09 main drkonqi-coredump-launcher[57189]: #5 0x00007148cd8a339d n/a (libc.so.6 + 0x9439d)
Jul 27 18:04:09 main drkonqi-coredump-launcher[57189]: #6 0x00007148cd92849c n/a (libc.so.6 + 0x11949c)
Jul 27 18:04:09 main drkonqi-coredump-launcher[57189]:
Jul 27 18:04:09 main drkonqi-coredump-launcher[57189]: Stack trace of thread 56933:
Jul 27 18:04:09 main drkonqi-coredump-launcher[57189]: #0 0x00007148cd89fa19 n/a (libc.so.6 + 0x90a19)
Jul 27 18:04:09 main drkonqi-coredump-launcher[57189]: #1 0x00007148cd8a27e2 pthread_cond_timedwait (libc.so.6 + 0x937e2)
Jul 27 18:04:09 main drkonqi-coredump-launcher[57189]: #2 0x00007148cd4ce0b8 _ZN14QWaitCondition4waitEP6QMutex14QDeadlineTimer (libQt6Core.so.6 + 0x2ce0b8)
Jul 27 18:04:09 main drkonqi-coredump-launcher[57189]: #3 0x00007148cd4c7db2 n/a (libQt6Core.so.6 + 0x2c7db2)
Jul 27 18:04:09 main drkonqi-coredump-launcher[57189]: #4 0x00007148cd4c9747 n/a (libQt6Core.so.6 + 0x2c9747)
Jul 27 18:04:09 main drkonqi-coredump-launcher[57189]: #5 0x00007148cd8a339d n/a (libc.so.6 + 0x9439d)
Jul 27 18:04:09 main drkonqi-coredump-launcher[57189]: #6 0x00007148cd92849c n/a (libc.so.6 + 0x11949c)
Jul 27 18:04:09 main drkonqi-coredump-launcher[57189]:
Jul 27 18:04:09 main drkonqi-coredump-launcher[57189]: Stack trace of thread 49073:
Jul 27 18:04:09 main drkonqi-coredump-launcher[57189]: #0 0x00007148cd91a63d __poll (libc.so.6 + 0x10b63d)
Jul 27 18:04:09 main drkonqi-coredump-launcher[57189]: #1 0x00007148b47949b7 n/a (libpulse.so.0 + 0x339b7)
Jul 27 18:04:09 main drkonqi-coredump-launcher[57189]: #2 0x00007148b477e45c pa_mainloop_poll (libpulse.so.0 + 0x1d45c)
Jul 27 18:04:09 main drkonqi-coredump-launcher[57189]: #3 0x00007148b478861c pa_mainloop_iterate (libpulse.so.0 + 0x2761c)
Jul 27 18:04:09 main drkonqi-coredump-launcher[57189]: #4 0x00007148b47886d1 pa_mainloop_run (libpulse.so.0 + 0x276d1)
Jul 27 18:04:09 main drkonqi-coredump-launcher[57189]: #5 0x00007148b4798bf2 n/a (libpulse.so.0 + 0x37bf2)
Jul 27 18:04:09 main drkonqi-coredump-launcher[57189]: #6 0x00007148b41aa2b7 n/a (libpulsecommon-17.0.so + 0x5c2b7)
Jul 27 18:04:09 main drkonqi-coredump-launcher[57189]: #7 0x00007148cd8a339d n/a (libc.so.6 + 0x9439d)
Jul 27 18:04:09 main drkonqi-coredump-launcher[57189]: #8 0x00007148cd92849c n/a (libc.so.6 + 0x11949c)
Jul 27 18:04:09 main drkonqi-coredump-launcher[57189]: ELF object binary architecture: AMD x86-64
Jul 27 18:04:09 main drkonqi[57164]: qrc:/ui/MainPage.qml:64:13: QML MainPageButton: Binding loop detected for property "icon.height"
Jul 27 18:04:09 main drkonqi[57164]: qrc:/ui/MainPage.qml:48:13: QML MainPageButton: Binding loop detected for property "icon.height"
Jul 27 18:04:09 main plasmashell[57170]: kf.svg: The theme "Mac-Custom-light-doc" uses the legacy metadata.desktop. Consider contacting the author and asking them update it to use the newer JSON format.
Jul 27 18:04:09 main plasmashell[57170]: kf.svg: The theme "Mac-Custom-light-doc" uses the legacy metadata.desktop. Consider contacting the author and asking them update it to use the newer JSON format.
Jul 27 18:04:09 main plasmashell[57170]: kf.plasma.core: The theme "Mac-Custom-light-doc" uses the legacy metadata.desktop. Consider contacting the author and asking them update it to use the newer JSON format.
Jul 27 18:04:09 main plasmashell[57170]: kf.plasma.core: The theme "Mac-Custom-light-doc" uses the legacy metadata.desktop. Consider contacting the author and asking them update it to use the newer JSON format.
Jul 27 18:04:09 main systemd[46586]: Started KDE Plasma Workspace.
Jul 27 18:04:09 main plasmashell[57170]: KPackageStructure of KPluginMetaData(pluginId:"com.softtechok.processmonitor", fileName: "/home/username/.local/share/plasma/plasmoids/com.softtechok.processmonitor/metadata.json") does not match requested format "Plasma/Applet"
Jul 27 18:04:09 main plasmashell[57170]: KPackageStructure of KPluginMetaData(pluginId:"org.kde.plasma.betterinlineclock", fileName: "/home/username/.local/share/plasma/plasmoids/org.kde.plasma.betterinlineclock/metadata.json") does not match requested format "Plasma/Applet"
Jul 27 18:04:09 main plasmashell[57170]: KPackageStructure of KPluginMetaData(pluginId:"org.kde.windowtitle", fileName: "/home/username/.local/share/plasma/plasmoids/org.kde.windowtitle/metadata.json") does not match requested format "Plasma/Applet"
Jul 27 18:04:09 main plasmashell[57170]: KPackageStructure of KPluginMetaData(pluginId:"org.kde.netspeedWidget", fileName: "/home/username/.local/share/plasma/plasmoids/org.kde.netspeedWidget/metadata.json") does not match requested format "Plasma/Applet"
Jul 27 18:04:09 main plasmashell[57170]: KPackageStructure of KPluginMetaData(pluginId:"org.kde.graphsplasmoid", fileName: "/usr/share/plasma/plasmoids/org.kde.graphsplasmoid/metadata.json") does not match requested format "Plasma/Applet"
Jul 27 18:04:09 main plasmashell[57170]: KPackageStructure of KPluginMetaData(pluginId:"org.kde.plasma.kclock_1x2", fileName: "/usr/share/plasma/plasmoids/org.kde.plasma.kclock_1x2/metadata.json") does not match requested format "Plasma/Applet"
Jul 27 18:04:09 main plasmashell[57170]: KPackageStructure of KPluginMetaData(pluginId:"org.kde.plasma.kweather_1x4", fileName: "/usr/share/plasma/plasmoids/org.kde.plasma.kweather_1x4/metadata.json") does not match requested format "Plasma/Applet"
Jul 27 18:04:09 main plasmashell[57170]: KPackageStructure of KPluginMetaData(pluginId:"org.kde.windowappmenu", fileName: "/usr/share/plasma/plasmoids/org.kde.windowappmenu/metadata.json") does not match requested format "Plasma/Applet"
Jul 27 18:04:09 main plasmashell[57170]: KPackageStructure of KPluginMetaData(pluginId:"org.kde.merkuro.contact", fileName: "/usr/share/plasma/plasmoids/org.kde.merkuro.contact/metadata.json") does not match requested format "Plasma/Applet"
Jul 27 18:04:09 main plasmashell[57170]: kf.svg: The theme "Mac-Custom-light-doc" uses the legacy metadata.desktop. Consider contacting the author and asking them update it to use the newer JSON format.
Jul 27 18:04:09 main plasmashell[57170]: kf.plasma.quick: Applet preload policy set to 1
Jul 27 18:04:09 main plasmashell[57170]: file:///usr/share/plasma/plasmoids/org.kde.desktopcontainment/contents/ui/main.qml:195:25: QML FolderViewDropArea (parent or ancestor of QQuickLayoutAttached): Binding loop detected for property "minimumWidth"
Jul 27 18:04:09 main plasmashell[57170]: Toolbox not loading, toolbox package is either invalid or disabled.
Jul 27 18:04:09 main plasmashell[57170]: file:///usr/share/plasma/plasmoids/org.kde.desktopcontainment/contents/ui/main.qml:195:25: QML FolderViewDropArea (parent or ancestor of QQuickLayoutAttached): Binding loop detected for property "minimumWidth"
Jul 27 18:04:09 main plasmashell[57170]: Toolbox not loading, toolbox package is either invalid or disabled.
Jul 27 18:04:09 main plasmashell[57170]: file:///usr/share/plasma/plasmoids/org.kde.desktopcontainment/contents/ui/main.qml:195:25: QML FolderViewDropArea (parent or ancestor of QQuickLayoutAttached): Binding loop detected for property "minimumWidth"
Jul 27 18:04:09 main plasmashell[57170]: Toolbox not loading, toolbox package is either invalid or disabled.
Jul 27 18:04:10 main plasmashell[57170]: qt.svg: link #mask-topleft-6 is undefined!
Jul 27 18:04:10 main plasmashell[57170]: qt.svg: link #mask-topleft-6 is undefined!
Jul 27 18:04:10 main plasmashell[57170]: qt.svg: link #mask-topleft-6 is undefined!
Jul 27 18:04:10 main plasmashell[57170]: file:///usr/share/plasma/plasmoids/org.kde.plasma.private.systemtray/contents/ui/main.qml:162:21: QML KSortFilterProxyModel: Binding loop detected for property "sourceModel"
Jul 27 18:04:10 main plasmashell[57170]: file:///usr/share/plasma/plasmoids/org.kde.plasma.private.systemtray/contents/ui/main.qml:162:21: QML KSortFilterProxyModel: Binding loop detected for property "sourceModel"
Jul 27 18:04:10 main plasmashell[57170]: qt.dbus.integration: Could not connect "org.cups.cupsd.Notifier" to PrinterFinishingsChanged(QString, QString, QString, uint, QString, bool) :
Jul 27 18:04:10 main plasmashell[57170]: file:///usr/share/plasma/plasmoids/org.kde.plasma.addons.katesessions/contents/ui/main.qml:42: TypeError: Property 'removeAction' of object Plasma::Applet(0x57fff7713a00) is not a function
Jul 27 18:04:10 main plasmashell[57170]: kameleon supported false
Jul 27 18:04:10 main plasmashell[57170]: kameleon enabled true
Jul 27 18:04:10 main plasmashell[57170]: kde.plasma.activitiesstats: [Error at ResultSetPrivate::initQuery]: QSqlError("11", "Unable to fetch row", "database disk image is malformed")
Jul 27 18:04:10 main plasmashell[57170]: kde.plasma.activitiesstats: [Error at ResultSetPrivate::initQuery]: QSqlError("11", "Unable to fetch row", "database disk image is malformed")
Jul 27 18:04:10 main plasmashell[57170]: kde.plasma.activitiesstats: [Error at ResultSetPrivate::initQuery]: QSqlError("11", "Unable to fetch row", "database disk image is malformed")
Jul 27 18:04:10 main plasmashell[57170]: kde.plasma.activitiesstats: [Error at ResultSetPrivate::initQuery]: QSqlError("11", "Unable to fetch row", "database disk image is malformed")
Jul 27 18:04:10 main plasmashell[57170]: expression for onAppListConfigChanged@file:///home/username/.local/share/plasma/plasmoids/org.kde.plasma.scpmk/contents/ui/main.qml:43
Jul 27 18:04:10 main plasmashell[57170]: Too many arguments, ignoring 2
Jul 27 18:04:10 main plasmashell[57170]: qt.qml.context: file:///home/username/.local/share/plasma/plasmoids/org.kde.plasma.scpmk/contents/ui/main.qml:35:9 Parameter "data" is not declared. Injection of parameters into signal handlers is deprecated. Use JavaScript functions with formal parameters instead.
Jul 27 18:04:10 main plasmashell[57170]: expression for onAppListConfigChanged@file:///home/username/.local/share/plasma/plasmoids/org.kde.plasma.scpmk/contents/ui/main.qml:43
Jul 27 18:04:10 main plasmashell[57170]: Too many arguments, ignoring 2
Jul 27 18:04:10 main plasmashell[57170]: expression for onAppListConfigChanged@file:///home/username/.local/share/plasma/plasmoids/org.kde.plasma.scpmk/contents/ui/main.qml:43
Jul 27 18:04:10 main plasmashell[57170]: Too many arguments, ignoring 2
Jul 27 18:04:10 main plasmashell[57170]: expression for onAppListConfigChanged@file:///home/username/.local/share/plasma/plasmoids/org.kde.plasma.scpmk/contents/ui/main.qml:43
Jul 27 18:04:10 main plasmashell[57170]: Too many arguments, ignoring 2
Jul 27 18:04:10 main plasmashell[57170]: expression for onAppListConfigChanged@file:///home/username/.local/share/plasma/plasmoids/org.kde.plasma.scpmk/contents/ui/main.qml:43
Jul 27 18:04:10 main plasmashell[57170]: Too many arguments, ignoring 2
Jul 27 18:04:10 main plasmashell[57170]: file:///home/username/.local/share/plasma/plasmoids/org.kde.windowtitle/contents/ui/PlasmaTasksModel.qml:16:9: Unable to assign [undefined] to QRect
Jul 27 18:04:10 main systemd[46586]: Started dbus-:1.2-org.kde.KSplash@2.service.
Jul 27 18:04:11 main plasmashell[57170]: error getting max keyboard brightness via dbus QDBusError("org.freedesktop.DBus.Error.UnknownObject", "No such object path '/org/kde/Solid/PowerManagement/Actions/KeyboardBrightnessControl'")
Jul 27 18:04:11 main plasmashell[57170]: QFont::setPointSizeF: Point size <= 0 (0.000000), must be greater than 0
Jul 27 18:04:11 main plasmashell[57170]: QFont::setPointSizeF: Point size <= 0 (0.000000), must be greater than 0
Jul 27 18:04:11 main plasmashell[57170]: QFont::setPointSizeF: Point size <= 0 (0.000000), must be greater than 0
Jul 27 18:04:11 main plasmashell[57170]: QFont::setPointSizeF: Point size <= 0 (0.000000), must be greater than 0
Jul 27 18:04:11 main plasmashell[57170]: qt.gui.imageio: libpng warning: iCCP: known incorrect sRGB profile
Jul 27 18:04:11 main plasmashell[57170]: qt.gui.imageio: libpng warning: iCCP: known incorrect sRGB profile
Jul 27 18:04:11 main plasmashell[57170]: qt.gui.imageio: libpng warning: iCCP: known incorrect sRGB profile
Jul 27 18:04:11 main drkonqi[57164]: Core dump excavation complete 0 QProcess::NormalExit
Jul 27 18:04:11 main drkonqi-coredump-launcher[57246]: warning: Can't open file /memfd:/.glXXXXXX (deleted) during file-backed mapping note processing
Jul 27 18:04:11 main drkonqi-coredump-launcher[57246]: warning: Can't open file /memfd:JSGCHeap:QtQml (deleted) during file-backed mapping note processing
Jul 27 18:04:11 main drkonqi-coredump-launcher[57246]: warning: Can't open file /memfd:unknown-usage:QtQml (deleted) during file-backed mapping note processing
Jul 27 18:04:11 main drkonqi-coredump-launcher[57246]: warning: Can't open file /memfd:JITCode:QtQml (deleted) during file-backed mapping note processing
Jul 27 18:04:11 main drkonqi-coredump-launcher[57246]: warning: Can't open file /memfd:/.nvidia_drv.XXXXXX (deleted) during file-backed mapping note processing
Jul 27 18:04:11 main drkonqi-coredump-launcher[57246]: warning: Can't open file /home/username/.cache/plasmashell/qmlcache/33e546ee74ab2a9bf470424f8a50bcbb4430d92d.qmlc (deleted) during file-backed mapping note processing
Jul 27 18:04:11 main drkonqi-coredump-launcher[57246]: warning: Can't open file /home/username/.cache/plasmashell/qmlcache/0dc2aa4ab8fb8857abf07d7ce561b170fbd242bf.qmlc (deleted) during file-backed mapping note processing
Jul 27 18:04:11 main plasmashell[57170]: QFont::setPointSizeF: Point size <= 0 (0.000000), must be greater than 0
Jul 27 18:04:11 main drkonqi-coredump-launcher[57246]: warning: Can't open file /home/username/.cache/plasmashell/qmlcache/3c7046493df8930311902504c264ae3fec7dd001.qmlc (deleted) during file-backed mapping note processing
Jul 27 18:04:11 main drkonqi-coredump-launcher[57246]: warning: Can't open file /memfd:pulseaudio (deleted) during file-backed mapping note processing
Jul 27 18:04:11 main drkonqi-coredump-launcher[57246]: warning: Can't open file /home/username/.cache/plasmashell/qmlcache/f2c21c4ed1b87dc0bccf43acede1c2e8d782a3dd.qmlc (deleted) during file-backed mapping note processing
Jul 27 18:04:11 main drkonqi-coredump-launcher[57246]: warning: Can't open file /home/username/.cache/plasmashell/qmlcache/123c59e74dfdb0c0720a4b24507c3e74ee65cb18.qmlc (deleted) during file-backed mapping note processing
Jul 27 18:04:11 main drkonqi-coredump-launcher[57246]: warning: Can't open file /home/username/.cache/plasmashell/qmlcache/b6812303354b0fc30feb03352fdc96b13481972e.qmlc (deleted) during file-backed mapping note processing
Jul 27 18:04:11 main drkonqi-coredump-launcher[57246]: warning: Can't open file /home/username/.cache/plasmashell/qmlcache/27ccb62863115205a0af1c213216db42ae58ba6c.qmlc (deleted) during file-backed mapping note processing
Jul 27 18:04:11 main drkonqi-coredump-launcher[57246]: warning: Can't open file /home/username/.cache/plasmashell/qmlcache/2cd889abf8ca50857f22dbd4a1ffed6202baa09c.qmlc (deleted) during file-backed mapping note processing
Jul 27 18:04:11 main drkonqi-coredump-launcher[57246]: warning: Can't open file /home/username/.cache/plasmashell/qmlcache/1408c1360a15b2d3f240aeb0574253f1fb956755.qmlc (deleted) during file-backed mapping note processing
Jul 27 18:04:11 main drkonqi-coredump-launcher[57246]: warning: Can't open file /memfd:xorg (deleted) during file-backed mapping note processing
Jul 27 18:04:11 main drkonqi-coredump-launcher[57246]: warning: Can't open file /home/username/.cache/plasmashell/qmlcache/3bf33d0e44130692145828ba698629488b20f3c8.qmlc (deleted) during file-backed mapping note processing
Jul 27 18:04:11 main drkonqi-coredump-launcher[57246]: warning: Can't open file /home/username/.cache/plasmashell/qmlcache/33c917e773abe4bc3a0103a6068c9216dcb36d95.qmlc (deleted) during file-backed mapping note processing
Jul 27 18:04:11 main drkonqi-coredump-launcher[57246]: warning: Can't open file /home/username/.cache/plasmashell/qmlcache/6619bfb40bfbb70d412708498b0fe9d7545c6c4c.qmlc (deleted) during file-backed mapping note processing
Jul 27 18:04:11 main drkonqi-coredump-launcher[57246]: warning: Can't open file /home/username/.cache/plasmashell/qmlcache/269d180e0b992c7912c25ac7872ddf08d257f916.qmlc (deleted) during file-backed mapping note processing
Jul 27 18:04:11 main drkonqi-coredump-launcher[57246]: warning: Can't open file /home/username/.cache/plasmashell/qmlcache/6358abf35463f13e2274beed39bc4fd1200d4410.qmlc (deleted) during file-backed mapping note processing
Jul 27 18:04:11 main drkonqi-coredump-launcher[57246]: warning: Can't open file /home/username/.cache/plasmashell/qmlcache/c3d54385f9a1f0f0928171a48019d6859557c4ac.qmlc (deleted) during file-backed mapping note processing
Jul 27 18:04:11 main drkonqi-coredump-launcher[57246]: warning: Can't open file /home/username/.cache/plasmashell/qmlcache/211c8ef3617d107d34748027d20c0aa01004a5ba.qmlc (deleted) during file-backed mapping note processing
Jul 27 18:04:11 main drkonqi-coredump-launcher[57246]: warning: Can't open file /home/username/.cache/plasmashell/qmlcache/be9726676cc7ae806f4abaacf19ff20f610baab0.qmlc (deleted) during file-backed mapping note processing
Jul 27 18:04:11 main drkonqi-coredump-launcher[57246]: warning: Can't open file /home/username/.cache/plasmashell/qmlcache/4adbf3794249d8212164b9fb1861df23f4d88430.qmlc (deleted) during file-backed mapping note processing
Jul 27 18:04:11 main drkonqi-coredump-launcher[57246]: warning: Can't open file /home/username/.cache/plasma_theme_Mac-Custom-light-doc.kcache (deleted) during file-backed mapping note processing
Jul 27 18:04:11 main drkonqi-coredump-launcher[57246]: warning: Can't open file /home/username/.cache/plasmashell/qmlcache/d8214defc9309b5a8db3e1f414d66d23ad3ae3cb.qmlc (deleted) during file-backed mapping note processing
Jul 27 18:04:11 main drkonqi-coredump-launcher[57246]: warning: Can't open file /home/username/.cache/plasmashell/qmlcache/a27e1c2a0b6cdc12787ab03090c60229f6903ec7.qmlc (deleted) during file-backed mapping note processing
Jul 27 18:04:11 main drkonqi-coredump-launcher[57246]: warning: Can't open file /home/username/.cache/plasmashell/qmlcache/f3a2350eff981333236fa78741e3211695ad320d.qmlc (deleted) during file-backed mapping note processing
Jul 27 18:04:11 main drkonqi-coredump-launcher[57246]: warning: Can't open file /home/username/.cache/plasmashell/qmlcache/0509fd8636623126e9a310036326c94e2cbc70a5.qmlc (deleted) during file-backed mapping note processing
Jul 27 18:04:11 main drkonqi-coredump-launcher[57246]: warning: Can't open file /home/username/.cache/plasmashell/qmlcache/5f612594f2dbf235ceb0690f5ba4a2d73e811317.qmlc (deleted) during file-backed mapping note processing
Jul 27 18:04:11 main drkonqi-coredump-launcher[57246]: warning: Can't open file /memfd:JSVMStack:QtQml (deleted) during file-backed mapping note processing
Jul 27 18:04:12 main plasmashell[57170]: qt.svg: <input>:1:22037: Could not resolve property: #radialGradient2005
Jul 27 18:04:16 main flatpak[57429]: libostree pull from 'flathub' for appstream2/x86_64 complete
security: GPG: summary+commit
security: SIGN: disabled http: TLS
delta: parts: 1 loose: 3
transfer: secs: 0 size: 259.5 kB
Jul 27 18:04:16 main flatpak[57429]: /var/tmp/flatpak-cache-CKVUR2/repo-aGT3Jl: Pulled appstream2/x86_64 from flathub
Jul 27 18:04:16 main systemd[1]: Starting flatpak system helper...
Jul 27 18:04:16 main systemd[1]: Started flatpak system helper.
Jul 27 18:04:17 main flatpak-system-helper[57455]: system: Pulled appstream2/x86_64 from /var/tmp/flatpak-cache-CKVUR2/repo-aGT3Jl
Jul 27 18:04:17 main plasmashell[57170]: file:///home/username/.local/share/plasma/plasmoids/d4rkwzd.colorpicker-tray/contents/ui/CompactRepresentation.qml:59: ReferenceError: circleRepeater is not defined
Jul 27 18:04:17 main plasmashell[57170]: file:///home/username/.local/share/plasma/plasmoids/d4rkwzd.colorpicker-tray/contents/ui/CompactRepresentation.qml:22: ReferenceError: spacer is not defined
Jul 27 18:04:18 main flatpak[57429]: libostree pull from 'flathub-beta' for appstream2/x86_64 complete
security: GPG: summary+commit
security: SIGN: disabled http: TLS
delta: parts: 1 loose: 3
transfer: secs: 0 size: 21.9 kB
Jul 27 18:04:18 main flatpak[57429]: /var/tmp/flatpak-cache-CKVUR2/repo-ffEzbi: Pulled appstream2/x86_64 from flathub-beta
Jul 27 18:04:18 main flatpak-system-helper[57455]: system: Pulled appstream2/x86_64 from /var/tmp/flatpak-cache-CKVUR2/repo-ffEzbi
Jul 27 18:04:19 main drkonqi-coredump-launcher[57246]: /usr/share/drkonqi/gdb/python/gdb_preamble/preamble.py:515: DeprecationWarning: datetime.datetime.utcfromtimestamp() is deprecated and scheduled for removal in a future version. Use timezone-aware objects to represent datetimes in UTC: datetime.datetime.fromtimestamp(timestamp, datetime.UTC).
Jul 27 18:04:19 main drkonqi-coredump-launcher[57246]: boot_time = datetime.utcfromtimestamp(psutil.boot_time()).strftime('%Y-%m-%dT%H:%M:%S')
Jul 27 18:04:19 main systemd[1]: Starting Hostname Service...
Jul 27 18:04:19 main systemd[1]: Started Hostname Service.
Jul 27 18:04:19 main systemd[1]: Starting Time & Date Service...
Jul 27 18:04:19 main systemd[1]: Started Time & Date Service.
Jul 27 18:04:27 main drkonqi[57164]: void ReportInterface::maybePickUpPostbox()
Jul 27 18:04:27 main drkonqi[57164]: qrc:/ui/SentryPage.qml:11:1: QML SentryPage: Created graphical object was not placed in the graphics scene.
Jul 27 18:04:31 main systemd[46586]: Started Kate - Advanced Text Editor.
Jul 27 18:04:31 main kate[57544]: kf.sonnet.core: No language dictionaries for the language: "en_US"
Jul 27 18:04:31 main kate[57544]: kf.sonnet.core: No language dictionaries for the language: "en_US"
Jul 27 18:04:31 main kate[57544]: kf.sonnet.core: No language dictionaries for the language: "en_US"
Jul 27 18:04:31 main kate[57544]: kf.sonnet.core: No language dictionaries for the language: "en_US"
Jul 27 18:04:31 main kate[57544]: kf.sonnet.core: No language dictionaries for the language: "en_US"
Jul 27 18:04:32 main samba-dcerpcd[57567]: [2024/07/27 18:04:32.100413, 0] ../../source3/rpc_server/rpc_host.c:2905(main)
Jul 27 18:04:32 main samba-dcerpcd[57567]: samba-dcerpcd version 4.20.2 started.
Jul 27 18:04:32 main samba-dcerpcd[57567]: Copyright Andrew Tridgell and the Samba Team 1992-2024
Jul 27 18:04:32 main rpcd_lsad[57576]: [2024/07/27 18:04:32.177848, 0] ../../source3/rpc_server/rpc_worker.c:1155(rpc_worker_main)
Jul 27 18:04:32 main rpcd_lsad[57576]: rpcd_lsad version 4.20.2 started.
Jul 27 18:04:32 main rpcd_lsad[57576]: Copyright Andrew Tridgell and the Samba Team 1992-2024
Jul 27 18:04:32 main smbd[57565]: pam_unix(samba:session): session closed for user nobody
Jul 27 18:04:49 main systemd[1]: systemd-hostnamed.service: Deactivated successfully.
Jul 27 18:04:49 main systemd[1]: systemd-timedated.service: Deactivated successfully.
Jul 27 18:05:10 main plasma_waitforname[57227]: org.kde.plasma.waitforname: WaitForName: Service was not registered within timeout
Jul 27 18:05:10 main systemd[46586]: dbus-:1.2-org.kde.KSplash@2.service: Main process exited, code=exited, status=1/FAILURE
Jul 27 18:05:10 main systemd[46586]: dbus-:1.2-org.kde.KSplash@2.service: Failed with result 'exit-code'.
Jul 27 18:06:14 main kwin_x11[46687]: kwin_core: Failed to focus 0x7600011 (error 8)
Jul 27 18:06:14 main kate[57544]: kf.notifications: Playing audio notification failed: Destroyed
Jul 27 18:06:14 main kwin_x11[46687]: kwin_core: Failed to focus 0x7600011 (error 3)
Jul 27 18:06:14 main systemd[46586]: app-org.kde.kate@2000bc936a564f6aa68413a9e32bb7f3.service: Consumed 5.339s CPU time, 108.8M memory peak.
Jul 27 18:06:14 main clamd[2928]: Sat Jul 27 18:06:14 2024 -> SelfCheck: Database status OK.
Jul 27 18:06:16 main drkonqi-coredump-launcher[57246]: /usr/share/drkonqi/gdb/python/gdb_preamble/preamble.py:532: DeprecationWarning: datetime.datetime.utcnow() is deprecated and scheduled for removal in a future version. Use timezone-aware objects to represent datetimes in UTC: datetime.datetime.now(datetime.UTC).
Jul 27 18:06:16 main drkonqi-coredump-launcher[57246]: 'timestamp': datetime.utcnow().isoformat(),
Jul 27 18:06:19 main drkonqi[57164]: void ReportInterface::maybePickUpPostbox()
Jul 27 18:06:19 main systemd[46586]: Started Submitting pending crash events.
Jul 27 18:06:40 main systemd[46586]: drkonqi-coredump-launcher@65-57017-0.service: Consumed 2min 30.376s CPU time, 14.7G memory peak.
Jul 27 18:07:38 main systemd[46586]: Started Kate - Advanced Text Editor.
Jul 27 18:07:39 main kate[57778]: kf.sonnet.core: No language dictionaries for the language: "en_US"
Jul 27 18:07:39 main kate[57778]: kf.sonnet.core: No language dictionaries for the language: "en_US"
Jul 27 18:07:39 main kate[57778]: kf.sonnet.core: No language dictionaries for the language: "en_US"
Jul 27 18:07:39 main kate[57778]: kf.sonnet.core: No language dictionaries for the language: "en_US"
Jul 27 18:07:39 main kate[57778]: kf.sonnet.core: No language dictionaries for the language: "en_US"
Jul 27 18:07:39 main samba-dcerpcd[57800]: [2024/07/27 18:07:39.605153, 0] ../../source3/rpc_server/rpc_host.c:2905(main)
Jul 27 18:07:39 main samba-dcerpcd[57800]: samba-dcerpcd version 4.20.2 started.
Jul 27 18:07:39 main samba-dcerpcd[57800]: Copyright Andrew Tridgell and the Samba Team 1992-2024
Jul 27 18:07:39 main rpcd_lsad[57810]: [2024/07/27 18:07:39.681174, 0] ../../source3/rpc_server/rpc_worker.c:1155(rpc_worker_main)
Jul 27 18:07:39 main rpcd_lsad[57810]: rpcd_lsad version 4.20.2 started.
Jul 27 18:07:39 main rpcd_lsad[57810]: Copyright Andrew Tridgell and the Samba Team 1992-2024
Jul 27 18:07:39 main smbd[57798]: pam_unix(samba:session): session closed for user nobody
Jul 27 18:07:42 main systemd[46586]: app-org.kde.kate@d9de38fe4bad4cdabd531d8313843a9c.service: Consumed 1.004s CPU time, 72.8M memory peak.
Jul 27 18:07:51 main systemd[46586]: Started Kate - Advanced Text Editor.
Jul 27 18:07:52 main kate[57898]: kf.sonnet.core: No language dictionaries for the language: "en_US"
Jul 27 18:07:52 main kate[57898]: kf.sonnet.core: No language dictionaries for the language: "en_US"
Jul 27 18:07:52 main kate[57898]: kf.sonnet.core: No language dictionaries for the language: "en_US"
Jul 27 18:07:52 main kate[57898]: kf.sonnet.core: No language dictionaries for the language: "en_US"
Jul 27 18:07:52 main kate[57898]: kf.sonnet.core: No language dictionaries for the language: "en_US"
Jul 27 18:07:52 main smbd[57918]: pam_unix(samba:session): session closed for user nobody
Jul 27 18:07:54 main systemd[46586]: app-org.kde.kate@de25b060a23647519d414d4516c50031.service: Consumed 965ms CPU time, 72.1M memory peak.
Jul 27 18:08:04 main systemd[46586]: Started sh '/home/username/scripts/screen scripts/screenswitch.sh' left.
Jul 27 18:08:04 main kscreen_backend_launcher[46864]: kscreen.xcb.helper: RRNotify_CrtcChange
Jul 27 18:08:04 main kscreen_backend_launcher[46864]: kscreen.xcb.helper: Timestamp: 41458348
Jul 27 18:08:04 main kscreen_backend_launcher[46864]: kscreen.xcb.helper: CRTC: 440
Jul 27 18:08:04 main kscreen_backend_launcher[46864]: kscreen.xcb.helper: Mode: 0
Jul 27 18:08:04 main kded6[46686]: colord: Checking outputs
Jul 27 18:08:04 main kscreen_backend_launcher[46864]: kscreen.xcb.helper: Rotation: "Rotate_0"
Jul 27 18:08:04 main kscreen_backend_launcher[46864]: kscreen.xcb.helper: Geometry: 0 0 0 0
Jul 27 18:08:04 main kscreen_backend_launcher[46864]: kscreen.xcb.helper: RRNotify_OutputChange
Jul 27 18:08:04 main kscreen_backend_launcher[46864]: kscreen.xcb.helper: Timestamp: 41458348
Jul 27 18:08:04 main kscreen_backend_launcher[46864]: kscreen.xcb.helper: Output: 444
Jul 27 18:08:04 main kscreen_backend_launcher[46864]: kscreen.xcb.helper: CRTC: 0
Jul 27 18:08:04 main kscreen_backend_launcher[46864]: kscreen.xcb.helper: Mode: 0
Jul 27 18:08:04 main kscreen_backend_launcher[46864]: kscreen.xcb.helper: Rotation: "Rotate_0"
Jul 27 18:08:04 main kscreen_backend_launcher[46864]: kscreen.xcb.helper: Connection: "Connected"
Jul 27 18:08:04 main kscreen_backend_launcher[46864]: kscreen.xcb.helper: Subpixel Order: 0
Jul 27 18:08:04 main kscreen_backend_launcher[46864]: kscreen.xcb.helper: RRScreenChangeNotify
Jul 27 18:08:04 main kscreen_backend_launcher[46864]: kscreen.xcb.helper: Timestamp: 41458348
Jul 27 18:08:04 main kscreen_backend_launcher[46864]: kscreen.xcb.helper: Config_timestamp: 33729241
Jul 27 18:08:04 main kscreen_backend_launcher[46864]: kscreen.xcb.helper: Window: 48234504
Jul 27 18:08:04 main kscreen_backend_launcher[46864]: kscreen.xcb.helper: Root: 494
Jul 27 18:08:04 main kscreen_backend_launcher[46864]: kscreen.xcb.helper: Rotation: "Rotate_0"
Jul 27 18:08:04 main kscreen_backend_launcher[46864]: kscreen.xcb.helper: Size ID: 65535
Jul 27 18:08:04 main kscreen_backend_launcher[46864]: kscreen.xcb.helper: Size: 7080 2760
Jul 27 18:08:04 main kscreen_backend_launcher[46864]: kscreen.xcb.helper: SizeMM: 1676 653
Jul 27 18:08:04 main kscreen_backend_launcher[46864]: kscreen.xcb.helper: RRNotify_CrtcChange
Jul 27 18:08:04 main kscreen_backend_launcher[46864]: kscreen.xcb.helper: Timestamp: 41458348
Jul 27 18:08:04 main kscreen_backend_launcher[46864]: kscreen.xcb.helper: CRTC: 440
Jul 27 18:08:04 main kscreen_backend_launcher[46864]: kscreen.xcb.helper: Mode: 0
Jul 27 18:08:04 main kscreen_backend_launcher[46864]: kscreen.xcb.helper: Rotation: "Rotate_0"
Jul 27 18:08:04 main kscreen_backend_launcher[46864]: kscreen.xcb.helper: Geometry: 0 0 0 0
Jul 27 18:08:04 main kscreen_backend_launcher[46864]: kscreen.xcb.helper: RRNotify_OutputChange
Jul 27 18:08:04 main kscreen_backend_launcher[46864]: kscreen.xcb.helper: Timestamp: 41458348
Jul 27 18:08:04 main kscreen_backend_launcher[46864]: kscreen.xcb.helper: Output: 444
Jul 27 18:08:04 main kscreen_backend_launcher[46864]: kscreen.xcb.helper: CRTC: 0
Jul 27 18:08:04 main kscreen_backend_launcher[46864]: kscreen.xcb.helper: Mode: 0
Jul 27 18:08:04 main kscreen_backend_launcher[46864]: kscreen.xcb.helper: Rotation: "Rotate_0"
Jul 27 18:08:04 main kscreen_backend_launcher[46864]: kscreen.xcb.helper: Connection: "Connected"
Jul 27 18:08:04 main kscreen_backend_launcher[46864]: kscreen.xcb.helper: Subpixel Order: 0
Jul 27 18:08:05 main env[46999]: [2024-07-27 17:08:05.740][8045][client.platformscreens][src/platformscreens.cpp:34][info] Updating screens due to notification
Jul 27 18:08:05 main env[46999]: [2024-07-27 17:08:05.740][8045][client.platformscreens][src/platformscreens.cpp:46][info] Screens changed from ( 4 ):
Jul 27 18:08:05 main env[46999]: [2024-07-27 17:08:05.740][8045][client.platformscreens][src/platformscreens.cpp:42][info] - 0 QRect(2560,240 3440x1440) QRect(2560,240 3440x1440) (primary)
Jul 27 18:08:05 main env[46999]: [2024-07-27 17:08:05.740][8045][client.platformscreens][src/platformscreens.cpp:42][info] - 1 QRect(0,240 2560x1440) QRect(0,240 2560x1440)
Jul 27 18:08:05 main env[46999]: [2024-07-27 17:08:05.740][8045][client.platformscreens][src/platformscreens.cpp:42][info] - 2 QRect(6000,0 1080x1920) QRect(6000,0 1080x1920)
Jul 27 18:08:05 main env[46999]: [2024-07-27 17:08:05.740][8045][client.platformscreens][src/platformscreens.cpp:42][info] - 3 QRect(2912,1680 1920x1080) QRect(2912,1680 1920x1080)
Jul 27 18:08:05 main env[46999]: [2024-07-27 17:08:05.740][8045][client.platformscreens][src/platformscreens.cpp:48][info] to ( 4 ):
Jul 27 18:08:05 main env[46999]: [2024-07-27 17:08:05.740][8045][client.platformscreens][src/platformscreens.cpp:42][info] - 0 QRect(0,240 2560x1440) QRect(0,240 2560x1440) (primary)
Jul 27 18:08:05 main env[46999]: [2024-07-27 17:08:05.740][8045][client.platformscreens][src/platformscreens.cpp:42][info] - 1 QRect(2560,240 3440x1440) QRect(2560,240 3440x1440)
Jul 27 18:08:05 main env[46999]: [2024-07-27 17:08:05.740][8045][client.platformscreens][src/platformscreens.cpp:42][info] - 2 QRect(6000,0 1080x1920) QRect(6000,0 1080x1920)
Jul 27 18:08:05 main env[46999]: [2024-07-27 17:08:05.740][8045][client.platformscreens][src/platformscreens.cpp:42][info] - 3 QRect(2912,1680 1920x1080) QRect(2912,1680 1920x1080)
Jul 27 18:08:05 main env[46999]: [2024-07-27 17:08:05.740][8045][client.workspacechange][src/workspacechange.cpp:16][info] Workspace changed
Jul 27 18:08:05 main env[46999]: [2024-07-27 17:08:05.740][8045][client.workspacechange][src/workspacechange.cpp:16][info] Workspace changed
Jul 27 18:08:05 main env[46999]: [2024-07-27 17:08:05.740][8045][client.workspacechange][src/workspacechange.cpp:16][info] Workspace changed
Jul 27 18:08:05 main env[46999]: [2024-07-27 17:08:05.740][8045][client.workspacechange][src/workspacechange.cpp:16][info] Workspace changed
Jul 27 18:08:05 main env[46999]: [2024-07-27 17:08:05.740][8045][client.platformscreens][src/platformscreens.cpp:34][info] Updating screens due to notification
Jul 27 18:08:05 main kded6[46686]: colord: remove device
Jul 27 18:08:05 main env[46999]: [2024-07-27 17:08:05.740][8045][client.platformscreens][src/platformscreens.cpp:46][info] Screens changed from ( 4 ):
Jul 27 18:08:05 main env[46999]: [2024-07-27 17:08:05.740][8045][client.platformscreens][src/platformscreens.cpp:42][info] - 0 QRect(0,240 2560x1440) QRect(0,240 2560x1440) (primary)
Jul 27 18:08:05 main env[46999]: [2024-07-27 17:08:05.740][8045][client.platformscreens][src/platformscreens.cpp:42][info] - 1 QRect(2560,240 3440x1440) QRect(2560,240 3440x1440)
Jul 27 18:08:05 main env[46999]: [2024-07-27 17:08:05.740][8045][client.platformscreens][src/platformscreens.cpp:42][info] - 2 QRect(6000,0 1080x1920) QRect(6000,0 1080x1920)
Jul 27 18:08:05 main env[46999]: [2024-07-27 17:08:05.740][8045][client.platformscreens][src/platformscreens.cpp:42][info] - 3 QRect(2912,1680 1920x1080) QRect(2912,1680 1920x1080)
Jul 27 18:08:05 main env[46999]: [2024-07-27 17:08:05.740][8045][client.platformscreens][src/platformscreens.cpp:48][info] to ( 3 ):
Jul 27 18:08:05 main env[46999]: [2024-07-27 17:08:05.740][8045][client.platformscreens][src/platformscreens.cpp:42][info] - 0 QRect(0,240 2560x1440) QRect(0,240 2560x1440) (primary)
Jul 27 18:08:05 main env[46999]: [2024-07-27 17:08:05.740][8045][client.platformscreens][src/platformscreens.cpp:42][info] - 1 QRect(6000,0 1080x1920) QRect(6000,0 1080x1920)
Jul 27 18:08:05 main env[46999]: [2024-07-27 17:08:05.740][8045][client.platformscreens][src/platformscreens.cpp:42][info] - 2 QRect(2912,1680 1920x1080) QRect(2912,1680 1920x1080)
Jul 27 18:08:05 main env[46999]: [2024-07-27 17:08:05.740][8045][client.workspacechange][src/workspacechange.cpp:16][info] Workspace changed
Jul 27 18:08:05 main env[46999]: [2024-07-27 17:08:05.740][8045][client.workspacechange][src/workspacechange.cpp:16][info] Workspace changed
Jul 27 18:08:05 main env[46999]: [2024-07-27 17:08:05.740][8045][client.workspacechange][src/workspacechange.cpp:16][info] Workspace changed
Jul 27 18:08:05 main env[46999]: [2024-07-27 17:08:05.740][8045][client.workspacechange][src/workspacechange.cpp:16][info] Workspace changed
Jul 27 18:08:05 main kded6[46686]: colord: PNP ID "ACI" Vendor Name "Ancor Communications Inc"
Jul 27 18:08:05 main kded6[46686]: colord: Adding device id "xrandr-Ancor Communications Inc-ROG PG278Q-#ASMJW+hoxMPd"
Jul 27 18:08:05 main kded6[46686]: colord: Output Hash "9440debc9077bee3daf4af97e5afcf30"
Jul 27 18:08:05 main kded6[46686]: colord: Output isLaptop false
Jul 27 18:08:05 main env[46999]: [2024-07-27 17:08:05.760][8045][client.platformscreens][src/platformscreens.cpp:34][info] Updating screens due to notification
Jul 27 18:08:05 main env[46999]: [2024-07-27 17:08:05.760][8045][client.platformscreens][src/platformscreens.cpp:46][info] Screens changed from ( 3 ):
Jul 27 18:08:05 main env[46999]: [2024-07-27 17:08:05.760][8045][client.platformscreens][src/platformscreens.cpp:42][info] - 0 QRect(0,240 2560x1440) QRect(0,240 2560x1440) (primary)
Jul 27 18:08:05 main env[46999]: [2024-07-27 17:08:05.760][8045][client.platformscreens][src/platformscreens.cpp:42][info] - 1 QRect(6000,0 1080x1920) QRect(6000,0 1080x1920)
Jul 27 18:08:05 main env[46999]: [2024-07-27 17:08:05.760][8045][client.platformscreens][src/platformscreens.cpp:42][info] - 2 QRect(2912,1680 1920x1080) QRect(2912,1680 1920x1080)
Jul 27 18:08:05 main env[46999]: [2024-07-27 17:08:05.760][8045][client.platformscreens][src/platformscreens.cpp:48][info] to ( 2 ):
Jul 27 18:08:05 main env[46999]: [2024-07-27 17:08:05.760][8045][client.platformscreens][src/platformscreens.cpp:42][info] - 0 QRect(0,240 2560x1440) QRect(0,240 2560x1440) (primary)
Jul 27 18:08:05 main env[46999]: [2024-07-27 17:08:05.760][8045][client.platformscreens][src/platformscreens.cpp:42][info] - 1 QRect(2912,1680 1920x1080) QRect(2912,1680 1920x1080)
Jul 27 18:08:05 main env[46999]: [2024-07-27 17:08:05.760][8045][client.workspacechange][src/workspacechange.cpp:16][info] Workspace changed
Jul 27 18:08:05 main env[46999]: [2024-07-27 17:08:05.760][8045][client.workspacechange][src/workspacechange.cpp:16][info] Workspace changed
Jul 27 18:08:05 main env[46999]: [2024-07-27 17:08:05.760][8045][client.workspacechange][src/workspacechange.cpp:16][info] Workspace changed
Jul 27 18:08:05 main env[46999]: [2024-07-27 17:08:05.760][8045][client.workspacechange][src/workspacechange.cpp:16][info] Workspace changed
Jul 27 18:08:05 main env[46999]: [2024-07-27 17:08:05.761][8045][client.platformscreens][src/platformscreens.cpp:34][info] Updating screens due to notification
Jul 27 18:08:05 main env[46999]: [2024-07-27 17:08:05.761][8045][client.platformscreens][src/platformscreens.cpp:46][info] Screens changed from ( 2 ):
Jul 27 18:08:05 main env[46999]: [2024-07-27 17:08:05.761][8045][client.platformscreens][src/platformscreens.cpp:42][info] - 0 QRect(0,240 2560x1440) QRect(0,240 2560x1440) (primary)
Jul 27 18:08:05 main env[46999]: [2024-07-27 17:08:05.761][8045][client.platformscreens][src/platformscreens.cpp:42][info] - 1 QRect(2912,1680 1920x1080) QRect(2912,1680 1920x1080)
Jul 27 18:08:05 main env[46999]: [2024-07-27 17:08:05.761][8045][client.platformscreens][src/platformscreens.cpp:48][info] to ( 1 ):
Jul 27 18:08:05 main env[46999]: [2024-07-27 17:08:05.761][8045][client.platformscreens][src/platformscreens.cpp:42][info] - 0 QRect(0,240 2560x1440) QRect(0,240 2560x1440) (primary)
Jul 27 18:08:05 main env[46999]: [2024-07-27 17:08:05.761][8045][client.workspacechange][src/workspacechange.cpp:16][info] Workspace changed
Jul 27 18:08:05 main env[46999]: [2024-07-27 17:08:05.761][8045][client.workspacechange][src/workspacechange.cpp:16][info] Workspace changed
Jul 27 18:08:05 main env[46999]: [2024-07-27 17:08:05.761][8045][client.workspacechange][src/workspacechange.cpp:16][info] Workspace changed
Jul 27 18:08:05 main env[46999]: [2024-07-27 17:08:05.761][8045][client.workspacechange][src/workspacechange.cpp:16][info] Workspace changed
Jul 27 18:08:05 main env[46999]: [2024-07-27 17:08:05.761][8045][client.platformscreens][src/platformscreens.cpp:34][info] Updating screens due to notification
Jul 27 18:08:05 main env[46999]: [2024-07-27 17:08:05.761][8045][client.platformscreens][src/platformscreens.cpp:46][info] Screens changed from ( 1 ):
Jul 27 18:08:05 main env[46999]: [2024-07-27 17:08:05.761][8045][client.platformscreens][src/platformscreens.cpp:42][info] - 0 QRect(0,240 2560x1440) QRect(0,240 2560x1440) (primary)
Jul 27 18:08:05 main env[46999]: [2024-07-27 17:08:05.761][8045][client.platformscreens][src/platformscreens.cpp:48][info] to ( 1 ):
Jul 27 18:08:05 main env[46999]: [2024-07-27 17:08:05.761][8045][client.platformscreens][src/platformscreens.cpp:42][info] - 0 QRect(0,0 2560x1440) QRect(0,0 2560x1440) (primary)
Jul 27 18:08:05 main env[46999]: [2024-07-27 17:08:05.761][8045][client.workspacechange][src/workspacechange.cpp:16][info] Workspace changed
Jul 27 18:08:05 main env[46999]: [2024-07-27 17:08:05.761][8045][client.workspacechange][src/workspacechange.cpp:16][info] Workspace changed
Jul 27 18:08:05 main env[46999]: [2024-07-27 17:08:05.761][8045][client.workspacechange][src/workspacechange.cpp:16][info] Workspace changed
Jul 27 18:08:05 main env[46999]: [2024-07-27 17:08:05.761][8045][client.workspacechange][src/workspacechange.cpp:16][info] Workspace changed
Jul 27 18:08:05 main kscreen_backend_launcher[46864]: kscreen.xcb.helper: RRNotify_CrtcChange
Jul 27 18:08:05 main kscreen_backend_launcher[46864]: kscreen.xcb.helper: Timestamp: 41701030
Jul 27 18:08:05 main kscreen_backend_launcher[46864]: kscreen.xcb.helper: CRTC: 441
Jul 27 18:08:05 main kscreen_backend_launcher[46864]: kscreen.xcb.helper: Mode: 0
Jul 27 18:08:05 main kscreen_backend_launcher[46864]: kscreen.xcb.helper: Rotation: "Rotate_0"
Jul 27 18:08:05 main kscreen_backend_launcher[46864]: kscreen.xcb.helper: Geometry: 0 0 0 0
Jul 27 18:08:05 main kscreen_backend_launcher[46864]: kscreen.xcb.helper: RRNotify_OutputChange
Jul 27 18:08:05 main kscreen_backend_launcher[46864]: kscreen.xcb.helper: Timestamp: 41701030
Jul 27 18:08:05 main kscreen_backend_launcher[46864]: kscreen.xcb.helper: Output: 466
Jul 27 18:08:05 main kscreen_backend_launcher[46864]: kscreen.xcb.helper: CRTC: 0
Jul 27 18:08:05 main kscreen_backend_launcher[46864]: kscreen.xcb.helper: Mode: 0
Jul 27 18:08:05 main kscreen_backend_launcher[46864]: kscreen.xcb.helper: Rotation: "Rotate_0"
Jul 27 18:08:05 main kscreen_backend_launcher[46864]: kscreen.xcb.helper: Connection: "Connected"
Jul 27 18:08:05 main kscreen_backend_launcher[46864]: kscreen.xcb.helper: Subpixel Order: 0
Jul 27 18:08:05 main kscreen_backend_launcher[46864]: kscreen.xcb.helper: RRScreenChangeNotify
Jul 27 18:08:05 main kscreen_backend_launcher[46864]: kscreen.xcb.helper: Timestamp: 41701030
Jul 27 18:08:05 main kscreen_backend_launcher[46864]: kscreen.xcb.helper: Config_timestamp: 33729241
Jul 27 18:08:05 main kscreen_backend_launcher[46864]: kscreen.xcb.helper: Window: 48234504
Jul 27 18:08:05 main kscreen_backend_launcher[46864]: kscreen.xcb.helper: Root: 494
Jul 27 18:08:05 main kscreen_backend_launcher[46864]: kscreen.xcb.helper: Rotation: "Rotate_0"
Jul 27 18:08:05 main kscreen_backend_launcher[46864]: kscreen.xcb.helper: Size ID: 65535
Jul 27 18:08:05 main kscreen_backend_launcher[46864]: kscreen.xcb.helper: Size: 7080 2760
Jul 27 18:08:05 main kscreen_backend_launcher[46864]: kscreen.xcb.helper: SizeMM: 1676 653
Jul 27 18:08:05 main kscreen_backend_launcher[46864]: kscreen.xcb.helper: RRNotify_CrtcChange
Jul 27 18:08:05 main kscreen_backend_launcher[46864]: kscreen.xcb.helper: Timestamp: 41701030
Jul 27 18:08:05 main kscreen_backend_launcher[46864]: kscreen.xcb.helper: CRTC: 441
Jul 27 18:08:05 main kscreen_backend_launcher[46864]: kscreen.xcb.helper: Mode: 0
Jul 27 18:08:05 main kscreen_backend_launcher[46864]: kscreen.xcb.helper: Rotation: "Rotate_0"
Jul 27 18:08:05 main kscreen_backend_launcher[46864]: kscreen.xcb.helper: Geometry: 0 0 0 0
Jul 27 18:08:05 main kscreen_backend_launcher[46864]: kscreen.xcb.helper: RRNotify_OutputChange
Jul 27 18:08:05 main kscreen_backend_launcher[46864]: kscreen.xcb.helper: Timestamp: 41701030
Jul 27 18:08:05 main kscreen_backend_launcher[46864]: kscreen.xcb.helper: Output: 466
Jul 27 18:08:05 main kscreen_backend_launcher[46864]: kscreen.xcb.helper: CRTC: 0
Jul 27 18:08:05 main kscreen_backend_launcher[46864]: kscreen.xcb.helper: Mode: 0
Jul 27 18:08:05 main kscreen_backend_launcher[46864]: kscreen.xcb.helper: Rotation: "Rotate_0"
Jul 27 18:08:05 main kscreen_backend_launcher[46864]: kscreen.xcb.helper: Connection: "Connected"
Jul 27 18:08:05 main kscreen_backend_launcher[46864]: kscreen.xcb.helper: Subpixel Order: 0
Jul 27 18:08:05 main kscreen_backend_launcher[46864]: kscreen.xcb.helper: RRNotify_CrtcChange
Jul 27 18:08:05 main kscreen_backend_launcher[46864]: kscreen.xcb.helper: Timestamp: 41701262
Jul 27 18:08:05 main kscreen_backend_launcher[46864]: kscreen.xcb.helper: CRTC: 442
Jul 27 18:08:05 main kscreen_backend_launcher[46864]: kscreen.xcb.helper: Mode: 0
Jul 27 18:08:05 main kscreen_backend_launcher[46864]: kscreen.xcb.helper: Rotation: "Rotate_0"
Jul 27 18:08:05 main kscreen_backend_launcher[46864]: kscreen.xcb.helper: Geometry: 0 0 0 0
Jul 27 18:08:05 main kscreen_backend_launcher[46864]: kscreen.xcb.helper: RRNotify_OutputChange
Jul 27 18:08:05 main kscreen_backend_launcher[46864]: kscreen.xcb.helper: Timestamp: 41701262
Jul 27 18:08:05 main kscreen_backend_launcher[46864]: kscreen.xcb.helper: Output: 481
Jul 27 18:08:05 main kscreen_backend_launcher[46864]: kscreen.xcb.helper: CRTC: 0
Jul 27 18:08:05 main kscreen_backend_launcher[46864]: kscreen.xcb.helper: Mode: 0
Jul 27 18:08:05 main kscreen_backend_launcher[46864]: kscreen.xcb.helper: Rotation: "Rotate_0"
Jul 27 18:08:05 main kscreen_backend_launcher[46864]: kscreen.xcb.helper: Connection: "Connected"
Jul 27 18:08:05 main kscreen_backend_launcher[46864]: kscreen.xcb.helper: Subpixel Order: 0
Jul 27 18:08:05 main kscreen_backend_launcher[46864]: kscreen.xcb.helper: RRScreenChangeNotify
Jul 27 18:08:05 main kscreen_backend_launcher[46864]: kscreen.xcb.helper: Timestamp: 41701262
Jul 27 18:08:05 main kscreen_backend_launcher[46864]: kscreen.xcb.helper: Config_timestamp: 33729241
Jul 27 18:08:05 main kscreen_backend_launcher[46864]: kscreen.xcb.helper: Window: 48234504
Jul 27 18:08:05 main kscreen_backend_launcher[46864]: kscreen.xcb.helper: Root: 494
Jul 27 18:08:05 main kscreen_backend_launcher[46864]: kscreen.xcb.helper: Rotation: "Rotate_0"
Jul 27 18:08:05 main kscreen_backend_launcher[46864]: kscreen.xcb.helper: Size ID: 65535
Jul 27 18:08:05 main kscreen_backend_launcher[46864]: kscreen.xcb.helper: Size: 7080 2760
Jul 27 18:08:05 main kscreen_backend_launcher[46864]: kscreen.xcb.helper: SizeMM: 1676 653
Jul 27 18:08:05 main kscreen_backend_launcher[46864]: kscreen.xcb.helper: RRNotify_CrtcChange
Jul 27 18:08:05 main kscreen_backend_launcher[46864]: kscreen.xcb.helper: Timestamp: 41701262
Jul 27 18:08:05 main kscreen_backend_launcher[46864]: kscreen.xcb.helper: CRTC: 442
Jul 27 18:08:05 main kscreen_backend_launcher[46864]: kscreen.xcb.helper: Mode: 0
Jul 27 18:08:05 main kscreen_backend_launcher[46864]: kscreen.xcb.helper: Rotation: "Rotate_0"
Jul 27 18:08:05 main kscreen_backend_launcher[46864]: kscreen.xcb.helper: Geometry: 0 0 0 0
Jul 27 18:08:05 main kscreen_backend_launcher[46864]: kscreen.xcb.helper: RRNotify_OutputChange
Jul 27 18:08:05 main kscreen_backend_launcher[46864]: kscreen.xcb.helper: Timestamp: 41701262
Jul 27 18:08:05 main kscreen_backend_launcher[46864]: kscreen.xcb.helper: Output: 481
Jul 27 18:08:05 main kscreen_backend_launcher[46864]: kscreen.xcb.helper: CRTC: 0
Jul 27 18:08:05 main kscreen_backend_launcher[46864]: kscreen.xcb.helper: Mode: 0
Jul 27 18:08:05 main kscreen_backend_launcher[46864]: kscreen.xcb.helper: Rotation: "Rotate_0"
Jul 27 18:08:05 main kscreen_backend_launcher[46864]: kscreen.xcb.helper: Connection: "Connected"
Jul 27 18:08:05 main kscreen_backend_launcher[46864]: kscreen.xcb.helper: Subpixel Order: 0
Jul 27 18:08:05 main kscreen_backend_launcher[46864]: kscreen.xcb.helper: RRNotify_CrtcChange
Jul 27 18:08:05 main kscreen_backend_launcher[46864]: kscreen.xcb.helper: Timestamp: 41701375
Jul 27 18:08:05 main kscreen_backend_launcher[46864]: kscreen.xcb.helper: CRTC: 443
Jul 27 18:08:05 main kscreen_backend_launcher[46864]: kscreen.xcb.helper: Mode: 0
Jul 27 18:08:05 main kscreen_backend_launcher[46864]: kscreen.xcb.helper: Rotation: "Rotate_0"
Jul 27 18:08:05 main kscreen_backend_launcher[46864]: kscreen.xcb.helper: Geometry: 0 0 0 0
Jul 27 18:08:05 main kscreen_backend_launcher[46864]: kscreen.xcb.helper: RRNotify_OutputChange
Jul 27 18:08:05 main kscreen_backend_launcher[46864]: kscreen.xcb.helper: Timestamp: 41701375
Jul 27 18:08:05 main kscreen_backend_launcher[46864]: kscreen.xcb.helper: Output: 474
Jul 27 18:08:05 main kscreen_backend_launcher[46864]: kscreen.xcb.helper: CRTC: 0
Jul 27 18:08:05 main kscreen_backend_launcher[46864]: kscreen.xcb.helper: Mode: 0
Jul 27 18:08:05 main kscreen_backend_launcher[46864]: kscreen.xcb.helper: Rotation: "Rotate_0"
Jul 27 18:08:05 main kscreen_backend_launcher[46864]: kscreen.xcb.helper: Connection: "Connected"
Jul 27 18:08:05 main kscreen_backend_launcher[46864]: kscreen.xcb.helper: Subpixel Order: 0
Jul 27 18:08:05 main kscreen_backend_launcher[46864]: kscreen.xcb.helper: RRScreenChangeNotify
Jul 27 18:08:05 main kscreen_backend_launcher[46864]: kscreen.xcb.helper: Timestamp: 41701375
Jul 27 18:08:05 main kscreen_backend_launcher[46864]: kscreen.xcb.helper: Config_timestamp: 33729241
Jul 27 18:08:05 main kscreen_backend_launcher[46864]: kscreen.xcb.helper: Window: 48234504
Jul 27 18:08:05 main kscreen_backend_launcher[46864]: kscreen.xcb.helper: Root: 494
Jul 27 18:08:05 main kscreen_backend_launcher[46864]: kscreen.xcb.helper: Rotation: "Rotate_0"
Jul 27 18:08:05 main kscreen_backend_launcher[46864]: kscreen.xcb.helper: Size ID: 65535
Jul 27 18:08:05 main kscreen_backend_launcher[46864]: kscreen.xcb.helper: Size: 7080 2760
Jul 27 18:08:05 main kscreen_backend_launcher[46864]: kscreen.xcb.helper: SizeMM: 1676 653
Jul 27 18:08:05 main kscreen_backend_launcher[46864]: kscreen.xcb.helper: RRNotify_CrtcChange
Jul 27 18:08:05 main kscreen_backend_launcher[46864]: kscreen.xcb.helper: Timestamp: 41701375
Jul 27 18:08:05 main kscreen_backend_launcher[46864]: kscreen.xcb.helper: CRTC: 443
Jul 27 18:08:05 main kscreen_backend_launcher[46864]: kscreen.xcb.helper: Mode: 0
Jul 27 18:08:05 main kscreen_backend_launcher[46864]: kscreen.xcb.helper: Rotation: "Rotate_0"
Jul 27 18:08:05 main kscreen_backend_launcher[46864]: kscreen.xcb.helper: Geometry: 0 0 0 0
Jul 27 18:08:05 main kscreen_backend_launcher[46864]: kscreen.xcb.helper: RRNotify_OutputChange
Jul 27 18:08:05 main kscreen_backend_launcher[46864]: kscreen.xcb.helper: Timestamp: 41701375
Jul 27 18:08:05 main kscreen_backend_launcher[46864]: kscreen.xcb.helper: Output: 474
Jul 27 18:08:05 main kscreen_backend_launcher[46864]: kscreen.xcb.helper: CRTC: 0
Jul 27 18:08:05 main kscreen_backend_launcher[46864]: kscreen.xcb.helper: Mode: 0
Jul 27 18:08:05 main kscreen_backend_launcher[46864]: kscreen.xcb.helper: Rotation: "Rotate_0"
Jul 27 18:08:05 main kscreen_backend_launcher[46864]: kscreen.xcb.helper: Connection: "Connected"
Jul 27 18:08:05 main kscreen_backend_launcher[46864]: kscreen.xcb.helper: Subpixel Order: 0
Jul 27 18:08:05 main kscreen_backend_launcher[46864]: kscreen.xcb.helper: RRScreenChangeNotify
Jul 27 18:08:05 main kscreen_backend_launcher[46864]: kscreen.xcb.helper: Timestamp: 41701488
Jul 27 18:08:05 main kscreen_backend_launcher[46864]: kscreen.xcb.helper: Config_timestamp: 33729241
Jul 27 18:08:05 main kscreen_backend_launcher[46864]: kscreen.xcb.helper: Window: 48234504
Jul 27 18:08:05 main kscreen_backend_launcher[46864]: kscreen.xcb.helper: Root: 494
Jul 27 18:08:05 main kscreen_backend_launcher[46864]: kscreen.xcb.helper: Rotation: "Rotate_0"
Jul 27 18:08:05 main kscreen_backend_launcher[46864]: kscreen.xcb.helper: Size ID: 65535
Jul 27 18:08:05 main kscreen_backend_launcher[46864]: kscreen.xcb.helper: Size: 2560 1440
Jul 27 18:08:05 main kscreen_backend_launcher[46864]: kscreen.xcb.helper: SizeMM: 605 340
Jul 27 18:08:05 main kscreen_backend_launcher[46864]: kscreen.xcb.helper: RRNotify_CrtcChange
Jul 27 18:08:05 main kscreen_backend_launcher[46864]: kscreen.xcb.helper: Timestamp: 41701488
Jul 27 18:08:05 main kscreen_backend_launcher[46864]: kscreen.xcb.helper: CRTC: 441
Jul 27 18:08:05 main kscreen_backend_launcher[46864]: kscreen.xcb.helper: Mode: 469
Jul 27 18:08:05 main kscreen_backend_launcher[46864]: kscreen.xcb.helper: Rotation: "Rotate_0"
Jul 27 18:08:05 main kscreen_backend_launcher[46864]: kscreen.xcb.helper: Geometry: 0 0 2560 1440
Jul 27 18:08:05 main kscreen_backend_launcher[46864]: kscreen.xcb.helper: RRNotify_OutputChange
Jul 27 18:08:05 main kscreen_backend_launcher[46864]: kscreen.xcb.helper: Timestamp: 41701488
Jul 27 18:08:05 main kscreen_backend_launcher[46864]: kscreen.xcb.helper: Output: 466
Jul 27 18:08:05 main kscreen_backend_launcher[46864]: kscreen.xcb.helper: CRTC: 441
Jul 27 18:08:05 main kscreen_backend_launcher[46864]: kscreen.xcb.helper: Mode: 469
Jul 27 18:08:05 main kscreen_backend_launcher[46864]: kscreen.xcb.helper: Rotation: "Rotate_0"
Jul 27 18:08:05 main kscreen_backend_launcher[46864]: kscreen.xcb.helper: Connection: "Connected"
Jul 27 18:08:05 main kscreen_backend_launcher[46864]: kscreen.xcb.helper: Subpixel Order: 0
Jul 27 18:08:05 main kscreen_backend_launcher[46864]: kscreen.xcb.helper: RRScreenChangeNotify
Jul 27 18:08:05 main kscreen_backend_launcher[46864]: kscreen.xcb.helper: Timestamp: 41701488
Jul 27 18:08:05 main kscreen_backend_launcher[46864]: kscreen.xcb.helper: Config_timestamp: 33729241
Jul 27 18:08:05 main kscreen_backend_launcher[46864]: kscreen.xcb.helper: Window: 48234504
Jul 27 18:08:05 main kscreen_backend_launcher[46864]: kscreen.xcb.helper: Root: 494
Jul 27 18:08:05 main kscreen_backend_launcher[46864]: kscreen.xcb.helper: Rotation: "Rotate_0"
Jul 27 18:08:05 main kscreen_backend_launcher[46864]: kscreen.xcb.helper: Size ID: 0
Jul 27 18:08:05 main kscreen_backend_launcher[46864]: kscreen.xcb.helper: Size: 2560 1440
Jul 27 18:08:05 main kscreen_backend_launcher[46864]: kscreen.xcb.helper: SizeMM: 605 340
Jul 27 18:08:05 main kscreen_backend_launcher[46864]: kscreen.xcb.helper: RRNotify_CrtcChange
Jul 27 18:08:05 main kscreen_backend_launcher[46864]: kscreen.xcb.helper: Timestamp: 41701488
Jul 27 18:08:05 main kscreen_backend_launcher[46864]: kscreen.xcb.helper: CRTC: 441
Jul 27 18:08:05 main kscreen_backend_launcher[46864]: kscreen.xcb.helper: Mode: 469
Jul 27 18:08:05 main kscreen_backend_launcher[46864]: kscreen.xcb.helper: Rotation: "Rotate_0"
Jul 27 18:08:05 main kscreen_backend_launcher[46864]: kscreen.xcb.helper: Geometry: 0 0 2560 1440
Jul 27 18:08:05 main kscreen_backend_launcher[46864]: kscreen.xcb.helper: RRNotify_OutputChange
Jul 27 18:08:05 main kscreen_backend_launcher[46864]: kscreen.xcb.helper: Timestamp: 41701488
Jul 27 18:08:05 main kscreen_backend_launcher[46864]: kscreen.xcb.helper: Output: 466
Jul 27 18:08:05 main kscreen_backend_launcher[46864]: kscreen.xcb.helper: CRTC: 441
Jul 27 18:08:05 main kscreen_backend_launcher[46864]: kscreen.xcb.helper: Mode: 469
Jul 27 18:08:05 main kscreen_backend_launcher[46864]: kscreen.xcb.helper: Rotation: "Rotate_0"
Jul 27 18:08:05 main kscreen_backend_launcher[46864]: kscreen.xcb.helper: Connection: "Connected"
Jul 27 18:08:05 main kscreen_backend_launcher[46864]: kscreen.xcb.helper: Subpixel Order: 0
Jul 27 18:08:05 main kscreen_backend_launcher[46864]: kscreen.xcb.helper: RRNotify_CrtcChange
Jul 27 18:08:05 main kscreen_backend_launcher[46864]: kscreen.xcb.helper: Timestamp: 41701553
Jul 27 18:08:05 main kscreen_backend_launcher[46864]: kscreen.xcb.helper: CRTC: 440
Jul 27 18:08:05 main kscreen_backend_launcher[46864]: kscreen.xcb.helper: Mode: 0
Jul 27 18:08:05 main kscreen_backend_launcher[46864]: kscreen.xcb.helper: Rotation: "Rotate_0"
Jul 27 18:08:05 main kscreen_backend_launcher[46864]: kscreen.xcb.helper: Geometry: 0 0 0 0
Jul 27 18:08:05 main kscreen_backend_launcher[46864]: kscreen.xcb.helper: RRNotify_CrtcChange
Jul 27 18:08:05 main kscreen_backend_launcher[46864]: kscreen.xcb.helper: Timestamp: 41701553
Jul 27 18:08:05 main kscreen_backend_launcher[46864]: kscreen.xcb.helper: CRTC: 441
Jul 27 18:08:05 main kscreen_backend_launcher[46864]: kscreen.xcb.helper: Mode: 469
Jul 27 18:08:05 main kscreen_backend_launcher[46864]: kscreen.xcb.helper: Rotation: "Rotate_0"
Jul 27 18:08:05 main kscreen_backend_launcher[46864]: kscreen.xcb.helper: Geometry: 0 0 2560 1440
Jul 27 18:08:05 main kscreen_backend_launcher[46864]: kscreen.xcb.helper: RRNotify_CrtcChange
Jul 27 18:08:05 main kscreen_backend_launcher[46864]: kscreen.xcb.helper: Timestamp: 41701553
Jul 27 18:08:05 main kscreen_backend_launcher[46864]: kscreen.xcb.helper: CRTC: 442
Jul 27 18:08:05 main kscreen_backend_launcher[46864]: kscreen.xcb.helper: Mode: 0
Jul 27 18:08:05 main kscreen_backend_launcher[46864]: kscreen.xcb.helper: Rotation: "Rotate_0"
Jul 27 18:08:05 main kscreen_backend_launcher[46864]: kscreen.xcb.helper: Geometry: 0 0 0 0
Jul 27 18:08:05 main kscreen_backend_launcher[46864]: kscreen.xcb.helper: RRNotify_CrtcChange
Jul 27 18:08:05 main kscreen_backend_launcher[46864]: kscreen.xcb.helper: Timestamp: 41701553
Jul 27 18:08:05 main kscreen_backend_launcher[46864]: kscreen.xcb.helper: CRTC: 443
Jul 27 18:08:05 main kscreen_backend_launcher[46864]: kscreen.xcb.helper: Mode: 0
Jul 27 18:08:05 main kscreen_backend_launcher[46864]: kscreen.xcb.helper: Rotation: "Rotate_0"
Jul 27 18:08:05 main kscreen_backend_launcher[46864]: kscreen.xcb.helper: Geometry: 0 0 0 0
Jul 27 18:08:05 main kscreen_backend_launcher[46864]: kscreen.xcb.helper: RRNotify_OutputChange
Jul 27 18:08:05 main kscreen_backend_launcher[46864]: kscreen.xcb.helper: Timestamp: 41701553
Jul 27 18:08:05 main kscreen_backend_launcher[46864]: kscreen.xcb.helper: Output: 444
Jul 27 18:08:05 main kscreen_backend_launcher[46864]: kscreen.xcb.helper: CRTC: 0
Jul 27 18:08:05 main kscreen_backend_launcher[46864]: kscreen.xcb.helper: Mode: 0
Jul 27 18:08:05 main kscreen_backend_launcher[46864]: kscreen.xcb.helper: Rotation: "Rotate_0"
Jul 27 18:08:05 main kscreen_backend_launcher[46864]: kscreen.xcb.helper: Connection: "Connected"
Jul 27 18:08:05 main kscreen_backend_launcher[46864]: kscreen.xcb.helper: Subpixel Order: 0
Jul 27 18:08:05 main kscreen_backend_launcher[46864]: kscreen.xcb.helper: RRNotify_OutputChange
Jul 27 18:08:05 main kscreen_backend_launcher[46864]: kscreen.xcb.helper: Timestamp: 41701553
Jul 27 18:08:05 main kscreen_backend_launcher[46864]: kscreen.xcb.helper: Output: 453
Jul 27 18:08:05 main kscreen_backend_launcher[46864]: kscreen.xcb.helper: CRTC: 0
Jul 27 18:08:05 main kscreen_backend_launcher[46864]: kscreen.xcb.helper: Mode: 0
Jul 27 18:08:05 main kscreen_backend_launcher[46864]: kscreen.xcb.helper: Rotation: "Rotate_0"
Jul 27 18:08:05 main kscreen_backend_launcher[46864]: kscreen.xcb.helper: Connection: "Disconnected"
Jul 27 18:08:05 main kscreen_backend_launcher[46864]: kscreen.xcb.helper: Subpixel Order: 0
Jul 27 18:08:05 main kscreen_backend_launcher[46864]: kscreen.xcb.helper: RRNotify_OutputChange
Jul 27 18:08:05 main kscreen_backend_launcher[46864]: kscreen.xcb.helper: Timestamp: 41701553
Jul 27 18:08:05 main kscreen_backend_launcher[46864]: kscreen.xcb.helper: Output: 454
Jul 27 18:08:05 main kscreen_backend_launcher[46864]: kscreen.xcb.helper: CRTC: 0
Jul 27 18:08:05 main kscreen_backend_launcher[46864]: kscreen.xcb.helper: Mode: 0
Jul 27 18:08:05 main kscreen_backend_launcher[46864]: kscreen.xcb.helper: Rotation: "Rotate_0"
Jul 27 18:08:05 main kscreen_backend_launcher[46864]: kscreen.xcb.helper: Connection: "Connected"
Jul 27 18:08:05 main kscreen_backend_launcher[46864]: kscreen.xcb.helper: Subpixel Order: 0
Jul 27 18:08:05 main kscreen_backend_launcher[46864]: kscreen.xcb.helper: RRNotify_OutputChange
Jul 27 18:08:05 main kscreen_backend_launcher[46864]: kscreen.xcb.helper: Timestamp: 41701553
Jul 27 18:08:05 main kscreen_backend_launcher[46864]: kscreen.xcb.helper: Output: 466
Jul 27 18:08:05 main kscreen_backend_launcher[46864]: kscreen.xcb.helper: CRTC: 441
Jul 27 18:08:05 main kscreen_backend_launcher[46864]: kscreen.xcb.helper: Mode: 469
Jul 27 18:08:05 main kscreen_backend_launcher[46864]: kscreen.xcb.helper: Rotation: "Rotate_0"
Jul 27 18:08:05 main kscreen_backend_launcher[46864]: kscreen.xcb.helper: Connection: "Connected"
Jul 27 18:08:05 main kscreen_backend_launcher[46864]: kscreen.xcb.helper: Subpixel Order: 0
Jul 27 18:08:05 main kscreen_backend_launcher[46864]: kscreen.xcb.helper: RRNotify_OutputChange
Jul 27 18:08:05 main kscreen_backend_launcher[46864]: kscreen.xcb.helper: Timestamp: 41701553
Jul 27 18:08:05 main kscreen_backend_launcher[46864]: kscreen.xcb.helper: Output: 473
Jul 27 18:08:05 main kscreen_backend_launcher[46864]: kscreen.xcb.helper: CRTC: 0
Jul 27 18:08:05 main kscreen_backend_launcher[46864]: kscreen.xcb.helper: Mode: 0
Jul 27 18:08:05 main kscreen_backend_launcher[46864]: kscreen.xcb.helper: Rotation: "Rotate_0"
Jul 27 18:08:05 main kscreen_backend_launcher[46864]: kscreen.xcb.helper: Connection: "Disconnected"
Jul 27 18:08:05 main kscreen_backend_launcher[46864]: kscreen.xcb.helper: Subpixel Order: 0
Jul 27 18:08:05 main kscreen_backend_launcher[46864]: kscreen.xcb.helper: RRNotify_OutputChange
Jul 27 18:08:05 main kscreen_backend_launcher[46864]: kscreen.xcb.helper: Timestamp: 41701553
Jul 27 18:08:05 main kscreen_backend_launcher[46864]: kscreen.xcb.helper: Output: 474
Jul 27 18:08:05 main kscreen_backend_launcher[46864]: kscreen.xcb.helper: CRTC: 0
Jul 27 18:08:05 main kscreen_backend_launcher[46864]: kscreen.xcb.helper: Mode: 0
Jul 27 18:08:05 main kscreen_backend_launcher[46864]: kscreen.xcb.helper: Rotation: "Rotate_0"
Jul 27 18:08:05 main kscreen_backend_launcher[46864]: kscreen.xcb.helper: Connection: "Connected"
Jul 27 18:08:05 main kscreen_backend_launcher[46864]: kscreen.xcb.helper: Subpixel Order: 0
Jul 27 18:08:05 main kscreen_backend_launcher[46864]: kscreen.xcb.helper: RRNotify_OutputChange
Jul 27 18:08:05 main kscreen_backend_launcher[46864]: kscreen.xcb.helper: Timestamp: 41701553
Jul 27 18:08:05 main kscreen_backend_launcher[46864]: kscreen.xcb.helper: Output: 480
Jul 27 18:08:05 main kscreen_backend_launcher[46864]: kscreen.xcb.helper: CRTC: 0
Jul 27 18:08:05 main kscreen_backend_launcher[46864]: kscreen.xcb.helper: Mode: 0
Jul 27 18:08:05 main kscreen_backend_launcher[46864]: kscreen.xcb.helper: Rotation: "Rotate_0"
Jul 27 18:08:05 main kscreen_backend_launcher[46864]: kscreen.xcb.helper: Connection: "Disconnected"
Jul 27 18:08:05 main kscreen_backend_launcher[46864]: kscreen.xcb.helper: Subpixel Order: 0
Jul 27 18:08:05 main kscreen_backend_launcher[46864]: kscreen.xcb.helper: RRNotify_OutputChange
Jul 27 18:08:05 main kscreen_backend_launcher[46864]: kscreen.xcb.helper: Timestamp: 41701553
Jul 27 18:08:05 main kscreen_backend_launcher[46864]: kscreen.xcb.helper: Output: 481
Jul 27 18:08:05 main kscreen_backend_launcher[46864]: kscreen.xcb.helper: CRTC: 0
Jul 27 18:08:05 main kscreen_backend_launcher[46864]: kscreen.xcb.helper: Mode: 0
Jul 27 18:08:05 main kscreen_backend_launcher[46864]: kscreen.xcb.helper: Rotation: "Rotate_0"
Jul 27 18:08:05 main kscreen_backend_launcher[46864]: kscreen.xcb.helper: Connection: "Connected"
Jul 27 18:08:05 main kscreen_backend_launcher[46864]: kscreen.xcb.helper: Subpixel Order: 0
Jul 27 18:08:05 main kscreen_backend_launcher[46864]: kscreen.xcb.helper: RRNotify_CrtcChange
Jul 27 18:08:05 main kscreen_backend_launcher[46864]: kscreen.xcb.helper: Timestamp: 41701553
Jul 27 18:08:05 main kscreen_backend_launcher[46864]: kscreen.xcb.helper: CRTC: 440
Jul 27 18:08:05 main kscreen_backend_launcher[46864]: kscreen.xcb.helper: Mode: 0
Jul 27 18:08:05 main kscreen_backend_launcher[46864]: kscreen.xcb.helper: Rotation: "Rotate_0"
Jul 27 18:08:05 main kscreen_backend_launcher[46864]: kscreen.xcb.helper: Geometry: 0 0 0 0
Jul 27 18:08:05 main kscreen_backend_launcher[46864]: kscreen.xcb.helper: RRNotify_CrtcChange
Jul 27 18:08:05 main kscreen_backend_launcher[46864]: kscreen.xcb.helper: Timestamp: 41701553
Jul 27 18:08:05 main kscreen_backend_launcher[46864]: kscreen.xcb.helper: CRTC: 441
Jul 27 18:08:05 main kscreen_backend_launcher[46864]: kscreen.xcb.helper: Mode: 469
Jul 27 18:08:05 main kscreen_backend_launcher[46864]: kscreen.xcb.helper: Rotation: "Rotate_0"
Jul 27 18:08:05 main kscreen_backend_launcher[46864]: kscreen.xcb.helper: Geometry: 0 0 2560 1440
Jul 27 18:08:05 main kscreen_backend_launcher[46864]: kscreen.xcb.helper: RRNotify_CrtcChange
Jul 27 18:08:05 main kscreen_backend_launcher[46864]: kscreen.xcb.helper: Timestamp: 41701553
Jul 27 18:08:05 main kscreen_backend_launcher[46864]: kscreen.xcb.helper: CRTC: 442
Jul 27 18:08:05 main kscreen_backend_launcher[46864]: kscreen.xcb.helper: Mode: 0
Jul 27 18:08:05 main kscreen_backend_launcher[46864]: kscreen.xcb.helper: Rotation: "Rotate_0"
Jul 27 18:08:05 main kscreen_backend_launcher[46864]: kscreen.xcb.helper: Geometry: 0 0 0 0
Jul 27 18:08:05 main kscreen_backend_launcher[46864]: kscreen.xcb.helper: RRNotify_CrtcChange
Jul 27 18:08:05 main kscreen_backend_launcher[46864]: kscreen.xcb.helper: Timestamp: 41701553
Jul 27 18:08:05 main kscreen_backend_launcher[46864]: kscreen.xcb.helper: CRTC: 443
Jul 27 18:08:05 main kscreen_backend_launcher[46864]: kscreen.xcb.helper: Mode: 0
Jul 27 18:08:05 main kscreen_backend_launcher[46864]: kscreen.xcb.helper: Rotation: "Rotate_0"
Jul 27 18:08:05 main kscreen_backend_launcher[46864]: kscreen.xcb.helper: Geometry: 0 0 0 0
Jul 27 18:08:05 main kscreen_backend_launcher[46864]: kscreen.xcb.helper: RRNotify_OutputChange
Jul 27 18:08:05 main kscreen_backend_launcher[46864]: kscreen.xcb.helper: Timestamp: 41701553
Jul 27 18:08:05 main kscreen_backend_launcher[46864]: kscreen.xcb.helper: Output: 444
Jul 27 18:08:05 main kscreen_backend_launcher[46864]: kscreen.xcb.helper: CRTC: 0
Jul 27 18:08:05 main kscreen_backend_launcher[46864]: kscreen.xcb.helper: Mode: 0
Jul 27 18:08:05 main kscreen_backend_launcher[46864]: kscreen.xcb.helper: Rotation: "Rotate_0"
Jul 27 18:08:05 main kscreen_backend_launcher[46864]: kscreen.xcb.helper: Connection: "Connected"
Jul 27 18:08:05 main kscreen_backend_launcher[46864]: kscreen.xcb.helper: Subpixel Order: 0
Jul 27 18:08:05 main kscreen_backend_launcher[46864]: kscreen.xcb.helper: RRNotify_OutputChange
Jul 27 18:08:05 main kscreen_backend_launcher[46864]: kscreen.xcb.helper: Timestamp: 41701553
Jul 27 18:08:05 main kscreen_backend_launcher[46864]: kscreen.xcb.helper: Output: 453
Jul 27 18:08:05 main kscreen_backend_launcher[46864]: kscreen.xcb.helper: CRTC: 0
Jul 27 18:08:05 main kscreen_backend_launcher[46864]: kscreen.xcb.helper: Mode: 0
Jul 27 18:08:05 main kscreen_backend_launcher[46864]: kscreen.xcb.helper: Rotation: "Rotate_0"
Jul 27 18:08:05 main kscreen_backend_launcher[46864]: kscreen.xcb.helper: Connection: "Disconnected"
Jul 27 18:08:05 main kscreen_backend_launcher[46864]: kscreen.xcb.helper: Subpixel Order: 0
Jul 27 18:08:05 main kscreen_backend_launcher[46864]: kscreen.xcb.helper: RRNotify_OutputChange
Jul 27 18:08:05 main kscreen_backend_launcher[46864]: kscreen.xcb.helper: Timestamp: 41701553
Jul 27 18:08:05 main kscreen_backend_launcher[46864]: kscreen.xcb.helper: Output: 454
Jul 27 18:08:05 main kscreen_backend_launcher[46864]: kscreen.xcb.helper: CRTC: 0
Jul 27 18:08:05 main kscreen_backend_launcher[46864]: kscreen.xcb.helper: Mode: 0
Jul 27 18:08:05 main kscreen_backend_launcher[46864]: kscreen.xcb.helper: Rotation: "Rotate_0"
Jul 27 18:08:05 main kscreen_backend_launcher[46864]: kscreen.xcb.helper: Connection: "Connected"
Jul 27 18:08:05 main kscreen_backend_launcher[46864]: kscreen.xcb.helper: Subpixel Order: 0
Jul 27 18:08:05 main kscreen_backend_launcher[46864]: kscreen.xcb.helper: RRNotify_OutputChange
Jul 27 18:08:05 main kscreen_backend_launcher[46864]: kscreen.xcb.helper: Timestamp: 41701553
Jul 27 18:08:05 main kscreen_backend_launcher[46864]: kscreen.xcb.helper: Output: 466
Jul 27 18:08:05 main kscreen_backend_launcher[46864]: kscreen.xcb.helper: CRTC: 441
Jul 27 18:08:05 main kscreen_backend_launcher[46864]: kscreen.xcb.helper: Mode: 469
Jul 27 18:08:05 main kscreen_backend_launcher[46864]: kscreen.xcb.helper: Rotation: "Rotate_0"
Jul 27 18:08:05 main kscreen_backend_launcher[46864]: kscreen.xcb.helper: Connection: "Connected"
Jul 27 18:08:05 main kscreen_backend_launcher[46864]: kscreen.xcb.helper: Subpixel Order: 0
Jul 27 18:08:05 main kscreen_backend_launcher[46864]: kscreen.xcb.helper: RRNotify_OutputChange
Jul 27 18:08:05 main kscreen_backend_launcher[46864]: kscreen.xcb.helper: Timestamp: 41701553
Jul 27 18:08:05 main kscreen_backend_launcher[46864]: kscreen.xcb.helper: Output: 473
Jul 27 18:08:05 main kscreen_backend_launcher[46864]: kscreen.xcb.helper: CRTC: 0
Jul 27 18:08:05 main kscreen_backend_launcher[46864]: kscreen.xcb.helper: Mode: 0
Jul 27 18:08:05 main kscreen_backend_launcher[46864]: kscreen.xcb.helper: Rotation: "Rotate_0"
Jul 27 18:08:05 main kscreen_backend_launcher[46864]: kscreen.xcb.helper: Connection: "Disconnected"
Jul 27 18:08:05 main kscreen_backend_launcher[46864]: kscreen.xcb.helper: Subpixel Order: 0
Jul 27 18:08:05 main kscreen_backend_launcher[46864]: kscreen.xcb.helper: RRNotify_OutputChange
Jul 27 18:08:05 main kscreen_backend_launcher[46864]: kscreen.xcb.helper: Timestamp: 41701553
Jul 27 18:08:05 main kscreen_backend_launcher[46864]: kscreen.xcb.helper: Output: 474
Jul 27 18:08:05 main kscreen_backend_launcher[46864]: kscreen.xcb.helper: CRTC: 0
Jul 27 18:08:05 main kscreen_backend_launcher[46864]: kscreen.xcb.helper: Mode: 0
Jul 27 18:08:05 main kscreen_backend_launcher[46864]: kscreen.xcb.helper: Rotation: "Rotate_0"
Jul 27 18:08:05 main kscreen_backend_launcher[46864]: kscreen.xcb.helper: Connection: "Connected"
Jul 27 18:08:05 main kscreen_backend_launcher[46864]: kscreen.xcb.helper: Subpixel Order: 0
Jul 27 18:08:05 main kscreen_backend_launcher[46864]: kscreen.xcb.helper: RRNotify_OutputChange
Jul 27 18:08:05 main kscreen_backend_launcher[46864]: kscreen.xcb.helper: Timestamp: 41701553
Jul 27 18:08:05 main kscreen_backend_launcher[46864]: kscreen.xcb.helper: Output: 480
Jul 27 18:08:05 main kscreen_backend_launcher[46864]: kscreen.xcb.helper: CRTC: 0
Jul 27 18:08:05 main kscreen_backend_launcher[46864]: kscreen.xcb.helper: Mode: 0
Jul 27 18:08:05 main kscreen_backend_launcher[46864]: kscreen.xcb.helper: Rotation: "Rotate_0"
Jul 27 18:08:05 main kscreen_backend_launcher[46864]: kscreen.xcb.helper: Connection: "Disconnected"
Jul 27 18:08:05 main kscreen_backend_launcher[46864]: kscreen.xcb.helper: Subpixel Order: 0
Jul 27 18:08:05 main kscreen_backend_launcher[46864]: kscreen.xcb.helper: RRNotify_OutputChange
Jul 27 18:08:05 main kscreen_backend_launcher[46864]: kscreen.xcb.helper: Timestamp: 41701553
Jul 27 18:08:05 main kscreen_backend_launcher[46864]: kscreen.xcb.helper: Output: 481
Jul 27 18:08:05 main kscreen_backend_launcher[46864]: kscreen.xcb.helper: CRTC: 0
Jul 27 18:08:05 main kscreen_backend_launcher[46864]: kscreen.xcb.helper: Mode: 0
Jul 27 18:08:05 main kscreen_backend_launcher[46864]: kscreen.xcb.helper: Rotation: "Rotate_0"
Jul 27 18:08:05 main kscreen_backend_launcher[46864]: kscreen.xcb.helper: Connection: "Connected"
Jul 27 18:08:05 main kscreen_backend_launcher[46864]: kscreen.xcb.helper: Subpixel Order: 0
Jul 27 18:08:05 main kscreen_backend_launcher[46864]: kscreen.xrandr: XRandROutput 444 update
m_connected: 0
m_crtc XRandRCrtc(0x5f858486c2c0)
CRTC: 0
MODE: 0
Connection: 0
Jul 27 18:08:05 main kded6[46686]: colord: Failed to register device: "device id 'xrandr-Ancor Communications Inc-ROG PG278Q-#ASMJW+hoxMPd' already exists"
Jul 27 18:08:05 main kded6[46686]: colord: Found colord device "/org/freedesktop/ColorManager/devices/xrandr_Ancor_Communications_Inc_ROG_PG278Q__ASMJW_hoxMPd_username_1000"
Jul 27 18:08:05 main kded6[46686]: colord: Found EDID profile for device "/org/freedesktop/ColorManager/profiles/icc_ceed6af52c3ea581b7ec8b707ed50a67_username_1000" "DP-2"
Jul 27 18:08:05 main kded6[46686]: colord: Device changed "/org/freedesktop/ColorManager/devices/xrandr_Ancor_Communications_Inc_ROG_PG278Q__ASMJW_hoxMPd_username_1000"
Jul 27 18:08:05 main kded6[46686]: colord: profileDefault "/org/freedesktop/ColorManager/profiles/icc_ceed6af52c3ea581b7ec8b707ed50a67_username_1000"
Jul 27 18:08:05 main kded6[46686]: colord: Default Profile Filename "DP-2" "/home/username/.local/share/icc/edid-9440debc9077bee3daf4af97e5afcf30.icc"
Jul 27 18:08:10 main kded6[46686]: colord: Profile does not have any VCGT data, reseting "DP-2" "/home/username/.local/share/icc/edid-9440debc9077bee3daf4af97e5afcf30.icc"
Jul 27 18:08:10 main kded6[46686]: colord: Couldn't locate primary CRTC.
Jul 27 18:08:10 main kded6[46686]: colord: CRTC for CRTC 0 has no mode or no output, skipping
Jul 27 18:08:10 main kded6[46686]: colord: CRTC for CRTC 2 has no mode or no output, skipping
Jul 27 18:08:10 main kded6[46686]: colord: CRTC for CRTC 3 has no mode or no output, skipping
Jul 27 18:08:10 main kded6[46686]: colord: Setting X atom (id: 0 ) "_ICC_PROFILE" on output: "DP-2"
Jul 27 18:08:10 main kded6[46686]: colord: remove device
Jul 27 18:08:10 main kded6[46686]: colord: remove device
Jul 27 18:08:10 main kded6[46686]: colord: Checking outputs
Jul 27 18:08:10 main kded6[46686]: colord: PNP ID "ACI" Vendor Name "Ancor Communications Inc"
Jul 27 18:08:10 main kded6[46686]: colord: Adding device id "xrandr-Ancor Communications Inc-ROG PG278Q-#ASMJW+hoxMPd"
Jul 27 18:08:10 main kded6[46686]: colord: Output Hash "9440debc9077bee3daf4af97e5afcf30"
Jul 27 18:08:10 main kded6[46686]: colord: Output isLaptop false
Jul 27 18:08:10 main kscreen_backend_launcher[46864]: kscreen.xrandr: Disconnected output 444 from CRTC 440
Jul 27 18:08:10 main kscreen_backend_launcher[46864]: kscreen.xrandr: Output 444 : connected = true , enabled = false
Jul 27 18:08:10 main kscreen_backend_launcher[46864]: kscreen.xrandr: XRandROutput 444 update
m_connected: 0
m_crtc QObject(0x0)
CRTC: 0
MODE: 0
Connection: 0
Jul 27 18:08:10 main kscreen_backend_launcher[46864]: kscreen.xrandr: Output 444 : connected = true , enabled = false
Jul 27 18:08:10 main kscreen_backend_launcher[46864]: kscreen.xrandr: XRandRCrtc 441 m_configTimestamp update 41458348 => 41701030
Jul 27 18:08:10 main kscreen_backend_launcher[46864]: kscreen.xrandr: XRandROutput 466 update
m_connected: 0
m_crtc XRandRCrtc(0x5f8584862840)
CRTC: 0
MODE: 0
Connection: 0
Jul 27 18:08:10 main kded6[46686]: colord: Failed to register device: "device id 'xrandr-Ancor Communications Inc-ROG PG278Q-#ASMJW+hoxMPd' already exists"
Jul 27 18:08:10 main kded6[46686]: colord: Found colord device "/org/freedesktop/ColorManager/devices/xrandr_Ancor_Communications_Inc_ROG_PG278Q__ASMJW_hoxMPd_username_1000"
Jul 27 18:08:10 main kded6[46686]: colord: Found EDID profile for device "/org/freedesktop/ColorManager/profiles/icc_ceed6af52c3ea581b7ec8b707ed50a67_username_1000" "DP-2"
Jul 27 18:08:10 main kded6[46686]: colord: Device changed "/org/freedesktop/ColorManager/devices/xrandr_Ancor_Communications_Inc_ROG_PG278Q__ASMJW_hoxMPd_username_1000"
Jul 27 18:08:10 main kded6[46686]: colord: profileDefault "/org/freedesktop/ColorManager/profiles/icc_ceed6af52c3ea581b7ec8b707ed50a67_username_1000"
Jul 27 18:08:10 main kded6[46686]: colord: Default Profile Filename "DP-2" "/home/username/.local/share/icc/edid-9440debc9077bee3daf4af97e5afcf30.icc"
Jul 27 18:08:10 main kded6[46686]: colord: Profile does not have any VCGT data, reseting "DP-2" "/home/username/.local/share/icc/edid-9440debc9077bee3daf4af97e5afcf30.icc"
Jul 27 18:08:10 main kded6[46686]: colord: Couldn't locate primary CRTC.
Jul 27 18:08:11 main kded6[46686]: colord: CRTC for CRTC 0 has no mode or no output, skipping
Jul 27 18:08:11 main kded6[46686]: colord: CRTC for CRTC 2 has no mode or no output, skipping
Jul 27 18:08:11 main kded6[46686]: colord: CRTC for CRTC 3 has no mode or no output, skipping
Jul 27 18:08:11 main kded6[46686]: colord: Setting X atom (id: 0 ) "_ICC_PROFILE" on output: "DP-2"
Jul 27 18:08:16 main kded6[46686]: colord: Checking outputs
Jul 27 18:08:16 main plasmashell[57170]: kf.plasma.quick: Exposed with no visual parent. Window positioning broken.
Jul 27 18:08:16 main kded6[46686]: colord: PNP ID "ACI" Vendor Name "Ancor Communications Inc"
Jul 27 18:08:16 main kded6[46686]: colord: Adding device id "xrandr-Ancor Communications Inc-ROG PG278Q-#ASMJW+hoxMPd"
Jul 27 18:08:16 main kded6[46686]: colord: Output Hash "9440debc9077bee3daf4af97e5afcf30"
Jul 27 18:08:16 main kded6[46686]: colord: Output isLaptop false
Jul 27 18:08:16 main kscreen_backend_launcher[46864]: kscreen.xrandr: Disconnected output 466 from CRTC 441
Jul 27 18:08:16 main kscreen_backend_launcher[46864]: kscreen.xrandr: Output 466 : connected = true , enabled = false
Jul 27 18:08:16 main kscreen_backend_launcher[46864]: kscreen.xrandr: XRandROutput 466 update
m_connected: 0
m_crtc QObject(0x0)
CRTC: 0
MODE: 0
Connection: 0
Jul 27 18:08:16 main kscreen_backend_launcher[46864]: kscreen.xrandr: Output 466 : connected = true , enabled = false
Jul 27 18:08:16 main kscreen_backend_launcher[46864]: kscreen.xrandr: XRandRCrtc 442 m_configTimestamp update 41458348 => 41701262
Jul 27 18:08:16 main kscreen_backend_launcher[46864]: kscreen.xrandr: XRandROutput 481 update
m_connected: 0
m_crtc XRandRCrtc(0x5f8584817db0)
CRTC: 0
MODE: 0
Connection: 0
Jul 27 18:08:16 main kscreen_backend_launcher[46864]: kscreen.xrandr: Disconnected output 481 from CRTC 442
Jul 27 18:08:16 main kscreen_backend_launcher[46864]: kscreen.xrandr: Output 481 : connected = true , enabled = false
Jul 27 18:08:16 main kscreen_backend_launcher[46864]: kscreen.xrandr: XRandROutput 481 update
m_connected: 0
m_crtc QObject(0x0)
CRTC: 0
MODE: 0
Connection: 0
Jul 27 18:08:16 main kscreen_backend_launcher[46864]: kscreen.xrandr: Output 481 : connected = true , enabled = false
Jul 27 18:08:16 main kscreen_backend_launcher[46864]: kscreen.xrandr: XRandRCrtc 443 m_configTimestamp update 41458348 => 41701375
Jul 27 18:08:16 main kscreen_backend_launcher[46864]: kscreen.xrandr: XRandROutput 474 update
m_connected: 0
m_crtc XRandRCrtc(0x5f8584877040)
CRTC: 0
MODE: 0
Connection: 0
Jul 27 18:08:16 main kscreen_backend_launcher[46864]: kscreen.xrandr: Disconnected output 474 from CRTC 443
Jul 27 18:08:16 main kscreen_backend_launcher[46864]: kscreen.xrandr: Output 474 : connected = true , enabled = false
Jul 27 18:08:16 main kscreen_backend_launcher[46864]: kscreen.xrandr: XRandROutput 474 update
m_connected: 0
m_crtc QObject(0x0)
CRTC: 0
MODE: 0
Connection: 0
Jul 27 18:08:16 main kscreen_backend_launcher[46864]: kscreen.xrandr: Output 474 : connected = true , enabled = false
Jul 27 18:08:16 main kscreen_backend_launcher[46864]: kscreen.xrandr: XRandRCrtc 441 m_configTimestamp update 41701030 => 41701488
Jul 27 18:08:16 main kscreen_backend_launcher[46864]: kscreen.xrandr: XRandROutput 466 update
m_connected: 0
m_crtc QObject(0x0)
CRTC: 441
MODE: 469
Connection: 0
Jul 27 18:08:16 main kscreen_backend_launcher[46864]: kscreen.xrandr: Connected output 466 to CRTC 441
Jul 27 18:08:16 main kscreen_backend_launcher[46864]: kscreen.xrandr: Output 466 : connected = true , enabled = true
Jul 27 18:08:16 main kscreen_backend_launcher[46864]: kscreen.xrandr: XRandROutput 466 update
m_connected: 0
m_crtc XRandRCrtc(0x5f8584862840)
CRTC: 441
MODE: 469
Connection: 0
Jul 27 18:08:16 main kscreen_backend_launcher[46864]: kscreen.xrandr: Output 466 : connected = true , enabled = true
Jul 27 18:08:16 main kscreen_backend_launcher[46864]: kscreen.xrandr: XRandRCrtc 440 m_configTimestamp update 41458348 => 41701553
Jul 27 18:08:16 main kscreen_backend_launcher[46864]: kscreen.xrandr: XRandRCrtc 441 m_configTimestamp update 41701488 => 41701553
Jul 27 18:08:16 main kscreen_backend_launcher[46864]: kscreen.xrandr: XRandRCrtc 442 m_configTimestamp update 41701262 => 41701553
Jul 27 18:08:16 main kscreen_backend_launcher[46864]: kscreen.xrandr: XRandRCrtc 443 m_configTimestamp update 41701375 => 41701553
Jul 27 18:08:16 main kscreen_backend_launcher[46864]: kscreen.xrandr: XRandROutput 444 update
m_connected: 0
m_crtc QObject(0x0)
CRTC: 0
MODE: 0
Connection: 0
Jul 27 18:08:16 main kscreen_backend_launcher[46864]: kscreen.xrandr: Output 444 : connected = true , enabled = false
Jul 27 18:08:16 main kscreen_backend_launcher[46864]: kscreen.xrandr: XRandROutput 453 update
m_connected: 1
m_crtc QObject(0x0)
CRTC: 0
MODE: 0
Connection: 1
Jul 27 18:08:16 main kscreen_backend_launcher[46864]: kscreen.xrandr: Output 453 : connected = false , enabled = false
Jul 27 18:08:16 main kscreen_backend_launcher[46864]: kscreen.xrandr: XRandROutput 454 update
m_connected: 0
m_crtc QObject(0x0)
CRTC: 0
MODE: 0
Connection: 0
Jul 27 18:08:16 main kscreen_backend_launcher[46864]: kscreen.xrandr: Output 454 : connected = true , enabled = false
Jul 27 18:08:16 main kscreen_backend_launcher[46864]: kscreen.xrandr: XRandROutput 466 update
m_connected: 0
m_crtc XRandRCrtc(0x5f8584862840)
CRTC: 441
MODE: 469
Connection: 0
Jul 27 18:08:16 main kscreen_backend_launcher[46864]: kscreen.xrandr: Output 466 : connected = true , enabled = true
Jul 27 18:08:16 main kscreen_backend_launcher[46864]: kscreen.xrandr: XRandROutput 473 update
m_connected: 1
m_crtc QObject(0x0)
CRTC: 0
MODE: 0
Connection: 1
Jul 27 18:08:16 main kscreen_backend_launcher[46864]: kscreen.xrandr: Output 473 : connected = false , enabled = false
Jul 27 18:08:16 main kscreen_backend_launcher[46864]: kscreen.xrandr: XRandROutput 474 update
m_connected: 0
m_crtc QObject(0x0)
CRTC: 0
MODE: 0
Connection: 0
Jul 27 18:08:16 main kscreen_backend_launcher[46864]: kscreen.xrandr: Output 474 : connected = true , enabled = false
Jul 27 18:08:16 main kscreen_backend_launcher[46864]: kscreen.xrandr: XRandROutput 480 update
m_connected: 1
m_crtc QObject(0x0)
CRTC: 0
MODE: 0
Connection: 1
Jul 27 18:08:16 main kscreen_backend_launcher[46864]: kscreen.xrandr: Output 480 : connected = false , enabled = false
Jul 27 18:08:16 main kscreen_backend_launcher[46864]: kscreen.xrandr: XRandROutput 481 update
m_connected: 0
m_crtc QObject(0x0)
CRTC: 0
MODE: 0
Connection: 0
Jul 27 18:08:16 main kscreen_backend_launcher[46864]: kscreen.xrandr: Output 481 : connected = true , enabled = false
Jul 27 18:08:16 main kscreen_backend_launcher[46864]: kscreen.xrandr: XRandROutput 444 update
m_connected: 0
m_crtc QObject(0x0)
CRTC: 0
MODE: 0
Connection: 0
Jul 27 18:08:16 main kscreen_backend_launcher[46864]: kscreen.xrandr: Output 444 : connected = true , enabled = false
Jul 27 18:08:16 main kscreen_backend_launcher[46864]: kscreen.xrandr: XRandROutput 453 update
m_connected: 1
m_crtc QObject(0x0)
CRTC: 0
MODE: 0
Connection: 1
Jul 27 18:08:16 main kscreen_backend_launcher[46864]: kscreen.xrandr: Output 453 : connected = false , enabled = false
Jul 27 18:08:16 main kscreen_backend_launcher[46864]: kscreen.xrandr: XRandROutput 454 update
m_connected: 0
m_crtc QObject(0x0)
CRTC: 0
MODE: 0
Connection: 0
Jul 27 18:08:16 main kscreen_backend_launcher[46864]: kscreen.xrandr: Output 454 : connected = true , enabled = false
Jul 27 18:08:16 main kscreen_backend_launcher[46864]: kscreen.xrandr: XRandROutput 466 update
m_connected: 0
m_crtc XRandRCrtc(0x5f8584862840)
CRTC: 441
MODE: 469
Connection: 0
Jul 27 18:08:16 main kscreen_backend_launcher[46864]: kscreen.xrandr: Output 466 : connected = true , enabled = true
Jul 27 18:08:16 main kscreen_backend_launcher[46864]: kscreen.xrandr: XRandROutput 473 update
m_connected: 1
m_crtc QObject(0x0)
CRTC: 0
MODE: 0
Connection: 1
Jul 27 18:08:16 main kscreen_backend_launcher[46864]: kscreen.xrandr: Output 473 : connected = false , enabled = false
Jul 27 18:08:16 main kscreen_backend_launcher[46864]: kscreen.xrandr: XRandROutput 474 update
m_connected: 0
m_crtc QObject(0x0)
CRTC: 0
MODE: 0
Connection: 0
Jul 27 18:08:16 main kscreen_backend_launcher[46864]: kscreen.xrandr: Output 474 : connected = true , enabled = false
Jul 27 18:08:16 main kscreen_backend_launcher[46864]: kscreen.xrandr: XRandROutput 480 update
m_connected: 1
m_crtc QObject(0x0)
CRTC: 0
MODE: 0
Connection: 1
Jul 27 18:08:16 main kscreen_backend_launcher[46864]: kscreen.xrandr: Output 480 : connected = false , enabled = false
Jul 27 18:08:16 main kscreen_backend_launcher[46864]: kscreen.xrandr: XRandROutput 481 update
m_connected: 0
m_crtc QObject(0x0)
CRTC: 0
MODE: 0
Connection: 0
Jul 27 18:08:16 main kscreen_backend_launcher[46864]: kscreen.xrandr: Output 481 : connected = true , enabled = false
Jul 27 18:08:16 main kded6[46686]: colord: Failed to register device: "device id 'xrandr-Ancor Communications Inc-ROG PG278Q-#ASMJW+hoxMPd' already exists"
Jul 27 18:08:16 main kded6[46686]: colord: Found colord device "/org/freedesktop/ColorManager/devices/xrandr_Ancor_Communications_Inc_ROG_PG278Q__ASMJW_hoxMPd_username_1000"
Jul 27 18:08:16 main kded6[46686]: colord: Found EDID profile for device "/org/freedesktop/ColorManager/profiles/icc_ceed6af52c3ea581b7ec8b707ed50a67_username_1000" "DP-2"
Jul 27 18:08:16 main kded6[46686]: colord: Device changed "/org/freedesktop/ColorManager/devices/xrandr_Ancor_Communications_Inc_ROG_PG278Q__ASMJW_hoxMPd_username_1000"
Jul 27 18:08:16 main kded6[46686]: colord: profileDefault "/org/freedesktop/ColorManager/profiles/icc_ceed6af52c3ea581b7ec8b707ed50a67_username_1000"
Jul 27 18:08:16 main kded6[46686]: colord: Default Profile Filename "DP-2" "/home/username/.local/share/icc/edid-9440debc9077bee3daf4af97e5afcf30.icc"
Jul 27 18:08:16 main kded6[46686]: colord: Profile does not have any VCGT data, reseting "DP-2" "/home/username/.local/share/icc/edid-9440debc9077bee3daf4af97e5afcf30.icc"
Jul 27 18:08:16 main kded6[46686]: colord: Couldn't locate primary CRTC.
Jul 27 18:08:16 main kded6[46686]: colord: CRTC for CRTC 0 has no mode or no output, skipping
Jul 27 18:08:16 main kded6[46686]: colord: CRTC for CRTC 2 has no mode or no output, skipping
Jul 27 18:08:16 main kded6[46686]: colord: CRTC for CRTC 3 has no mode or no output, skipping
Jul 27 18:08:16 main kded6[46686]: colord: Setting X atom (id: 0 ) "_ICC_PROFILE" on output: "DP-2"
Jul 27 18:08:16 main kded6[46686]: colord: Checking outputs
Jul 27 18:08:16 main kded6[46686]: colord: PNP ID "ACI" Vendor Name "Ancor Communications Inc"
Jul 27 18:08:16 main kded6[46686]: colord: Adding device id "xrandr-Ancor Communications Inc-ROG PG278Q-#ASMJW+hoxMPd"
Jul 27 18:08:16 main kded6[46686]: colord: Output Hash "9440debc9077bee3daf4af97e5afcf30"
Jul 27 18:08:16 main kded6[46686]: colord: Output isLaptop false
Jul 27 18:08:16 main kded6[46686]: colord: Failed to register device: "device id 'xrandr-Ancor Communications Inc-ROG PG278Q-#ASMJW+hoxMPd' already exists"
Jul 27 18:08:16 main kded6[46686]: colord: Found colord device "/org/freedesktop/ColorManager/devices/xrandr_Ancor_Communications_Inc_ROG_PG278Q__ASMJW_hoxMPd_username_1000"
Jul 27 18:08:16 main kded6[46686]: colord: Found EDID profile for device "/org/freedesktop/ColorManager/profiles/icc_ceed6af52c3ea581b7ec8b707ed50a67_username_1000" "DP-2"
Jul 27 18:08:16 main kded6[46686]: colord: Device changed "/org/freedesktop/ColorManager/devices/xrandr_Ancor_Communications_Inc_ROG_PG278Q__ASMJW_hoxMPd_username_1000"
Jul 27 18:08:16 main kded6[46686]: colord: profileDefault "/org/freedesktop/ColorManager/profiles/icc_ceed6af52c3ea581b7ec8b707ed50a67_username_1000"
Jul 27 18:08:16 main kded6[46686]: colord: Default Profile Filename "DP-2" "/home/username/.local/share/icc/edid-9440debc9077bee3daf4af97e5afcf30.icc"
Jul 27 18:08:16 main kded6[46686]: colord: Profile does not have any VCGT data, reseting "DP-2" "/home/username/.local/share/icc/edid-9440debc9077bee3daf4af97e5afcf30.icc"
Jul 27 18:08:16 main kded6[46686]: colord: Couldn't locate primary CRTC.
Jul 27 18:08:16 main kded6[46686]: colord: CRTC for CRTC 0 has no mode or no output, skipping
Jul 27 18:08:16 main kded6[46686]: colord: CRTC for CRTC 2 has no mode or no output, skipping
Jul 27 18:08:16 main kded6[46686]: colord: CRTC for CRTC 3 has no mode or no output, skipping
Jul 27 18:08:16 main kded6[46686]: colord: Setting X atom (id: 0 ) "_ICC_PROFILE" on output: "DP-2"
Jul 27 18:08:16 main kded6[46686]: colord: Checking outputs
Jul 27 18:08:16 main kded6[46686]: colord: PNP ID "ACI" Vendor Name "Ancor Communications Inc"
Jul 27 18:08:16 main kded6[46686]: colord: Adding device id "xrandr-Ancor Communications Inc-ROG PG278Q-#ASMJW+hoxMPd"
Jul 27 18:08:16 main kded6[46686]: colord: Output Hash "9440debc9077bee3daf4af97e5afcf30"
Jul 27 18:08:16 main kded6[46686]: colord: Output isLaptop false
Jul 27 18:08:16 main kded6[46686]: colord: Failed to register device: "device id 'xrandr-Ancor Communications Inc-ROG PG278Q-#ASMJW+hoxMPd' already exists"
Jul 27 18:08:16 main kded6[46686]: colord: Found colord device "/org/freedesktop/ColorManager/devices/xrandr_Ancor_Communications_Inc_ROG_PG278Q__ASMJW_hoxMPd_username_1000"
Jul 27 18:08:16 main kded6[46686]: colord: Found EDID profile for device "/org/freedesktop/ColorManager/profiles/icc_ceed6af52c3ea581b7ec8b707ed50a67_username_1000" "DP-2"
Jul 27 18:08:16 main kded6[46686]: colord: Device changed "/org/freedesktop/ColorManager/devices/xrandr_Ancor_Communications_Inc_ROG_PG278Q__ASMJW_hoxMPd_username_1000"
Jul 27 18:08:16 main kded6[46686]: colord: profileDefault "/org/freedesktop/ColorManager/profiles/icc_ceed6af52c3ea581b7ec8b707ed50a67_username_1000"
Jul 27 18:08:16 main kded6[46686]: colord: Default Profile Filename "DP-2" "/home/username/.local/share/icc/edid-9440debc9077bee3daf4af97e5afcf30.icc"
Jul 27 18:08:16 main kded6[46686]: colord: Profile does not have any VCGT data, reseting "DP-2" "/home/username/.local/share/icc/edid-9440debc9077bee3daf4af97e5afcf30.icc"
Jul 27 18:08:16 main kded6[46686]: colord: Couldn't locate primary CRTC.
Jul 27 18:08:16 main kded6[46686]: colord: CRTC for CRTC 0 has no mode or no output, skipping
Jul 27 18:08:16 main kded6[46686]: colord: CRTC for CRTC 2 has no mode or no output, skipping
Jul 27 18:08:16 main kded6[46686]: colord: CRTC for CRTC 3 has no mode or no output, skipping
Jul 27 18:08:16 main kded6[46686]: colord: Setting X atom (id: 0 ) "_ICC_PROFILE" on output: "DP-2"
Jul 27 18:08:16 main kded6[46686]: colord: Checking outputs
Jul 27 18:08:16 main kded6[46686]: colord: PNP ID "ACI" Vendor Name "Ancor Communications Inc"
Jul 27 18:08:16 main kded6[46686]: colord: Adding device id "xrandr-Ancor Communications Inc-ROG PG278Q-#ASMJW+hoxMPd"
Jul 27 18:08:16 main kded6[46686]: colord: Output Hash "9440debc9077bee3daf4af97e5afcf30"
Jul 27 18:08:16 main kded6[46686]: colord: Output isLaptop false
Jul 27 18:08:16 main kded6[46686]: colord: Failed to register device: "device id 'xrandr-Ancor Communications Inc-ROG PG278Q-#ASMJW+hoxMPd' already exists"
Jul 27 18:08:16 main kded6[46686]: colord: Found colord device "/org/freedesktop/ColorManager/devices/xrandr_Ancor_Communications_Inc_ROG_PG278Q__ASMJW_hoxMPd_username_1000"
Jul 27 18:08:16 main kded6[46686]: colord: Found EDID profile for device "/org/freedesktop/ColorManager/profiles/icc_ceed6af52c3ea581b7ec8b707ed50a67_username_1000" "DP-2"
Jul 27 18:08:16 main kded6[46686]: colord: Device changed "/org/freedesktop/ColorManager/devices/xrandr_Ancor_Communications_Inc_ROG_PG278Q__ASMJW_hoxMPd_username_1000"
Jul 27 18:08:16 main kded6[46686]: colord: profileDefault "/org/freedesktop/ColorManager/profiles/icc_ceed6af52c3ea581b7ec8b707ed50a67_username_1000"
Jul 27 18:08:16 main kded6[46686]: colord: Default Profile Filename "DP-2" "/home/username/.local/share/icc/edid-9440debc9077bee3daf4af97e5afcf30.icc"
Jul 27 18:08:16 main kded6[46686]: colord: Profile does not have any VCGT data, reseting "DP-2" "/home/username/.local/share/icc/edid-9440debc9077bee3daf4af97e5afcf30.icc"
Jul 27 18:08:16 main kded6[46686]: colord: Couldn't locate primary CRTC.
Jul 27 18:08:16 main kded6[46686]: colord: CRTC for CRTC 0 has no mode or no output, skipping
Jul 27 18:08:16 main kded6[46686]: colord: CRTC for CRTC 2 has no mode or no output, skipping
Jul 27 18:08:16 main kded6[46686]: colord: CRTC for CRTC 3 has no mode or no output, skipping
Jul 27 18:08:16 main kded6[46686]: colord: Setting X atom (id: 0 ) "_ICC_PROFILE" on output: "DP-2"
Jul 27 18:08:16 main kded6[46686]: colord: Checking outputs
Jul 27 18:08:16 main kded6[46686]: colord: PNP ID "ACI" Vendor Name "Ancor Communications Inc"
Jul 27 18:08:16 main kded6[46686]: colord: Adding device id "xrandr-Ancor Communications Inc-ROG PG278Q-#ASMJW+hoxMPd"
Jul 27 18:08:16 main kded6[46686]: colord: Output Hash "9440debc9077bee3daf4af97e5afcf30"
Jul 27 18:08:16 main kded6[46686]: colord: Output isLaptop false
Jul 27 18:08:16 main kded6[46686]: colord: Failed to register device: "device id 'xrandr-Ancor Communications Inc-ROG PG278Q-#ASMJW+hoxMPd' already exists"
Jul 27 18:08:16 main kded6[46686]: colord: Found colord device "/org/freedesktop/ColorManager/devices/xrandr_Ancor_Communications_Inc_ROG_PG278Q__ASMJW_hoxMPd_username_1000"
Jul 27 18:08:16 main kded6[46686]: colord: Found EDID profile for device "/org/freedesktop/ColorManager/profiles/icc_ceed6af52c3ea581b7ec8b707ed50a67_username_1000" "DP-2"
Jul 27 18:08:16 main kded6[46686]: colord: Device changed "/org/freedesktop/ColorManager/devices/xrandr_Ancor_Communications_Inc_ROG_PG278Q__ASMJW_hoxMPd_username_1000"
Jul 27 18:08:16 main kded6[46686]: colord: profileDefault "/org/freedesktop/ColorManager/profiles/icc_ceed6af52c3ea581b7ec8b707ed50a67_username_1000"
Jul 27 18:08:16 main kded6[46686]: colord: Default Profile Filename "DP-2" "/home/username/.local/share/icc/edid-9440debc9077bee3daf4af97e5afcf30.icc"
Jul 27 18:08:16 main kded6[46686]: colord: Profile does not have any VCGT data, reseting "DP-2" "/home/username/.local/share/icc/edid-9440debc9077bee3daf4af97e5afcf30.icc"
Jul 27 18:08:16 main kded6[46686]: colord: Couldn't locate primary CRTC.
Jul 27 18:08:16 main kded6[46686]: colord: CRTC for CRTC 0 has no mode or no output, skipping
Jul 27 18:08:16 main kded6[46686]: colord: CRTC for CRTC 2 has no mode or no output, skipping
Jul 27 18:08:16 main kded6[46686]: colord: CRTC for CRTC 3 has no mode or no output, skipping
Jul 27 18:08:16 main kded6[46686]: colord: Setting X atom (id: 0 ) "_ICC_PROFILE" on output: "DP-2"
Jul 27 18:08:16 main kded6[46686]: colord: EDID ICC Profile already exists "/home/username/.local/share/icc/edid-9440debc9077bee3daf4af97e5afcf30.icc"
Jul 27 18:08:16 main kded6[46686]: colord: EDID ICC Profile already exists "/home/username/.local/share/icc/edid-9440debc9077bee3daf4af97e5afcf30.icc"
Jul 27 18:08:16 main kded6[46686]: colord: EDID ICC Profile already exists "/home/username/.local/share/icc/edid-9440debc9077bee3daf4af97e5afcf30.icc"
Jul 27 18:08:16 main kded6[46686]: colord: EDID ICC Profile already exists "/home/username/.local/share/icc/edid-9440debc9077bee3daf4af97e5afcf30.icc"
Jul 27 18:08:16 main kded6[46686]: colord: EDID ICC Profile already exists "/home/username/.local/share/icc/edid-9440debc9077bee3daf4af97e5afcf30.icc"
Jul 27 18:08:16 main kded6[46686]: colord: EDID ICC Profile already exists "/home/username/.local/share/icc/edid-9440debc9077bee3daf4af97e5afcf30.icc"
Jul 27 18:08:16 main kded6[46686]: colord: EDID ICC Profile already exists "/home/username/.local/share/icc/edid-9440debc9077bee3daf4af97e5afcf30.icc"
Jul 27 18:08:16 main kscreen_backend_launcher[46864]: kscreen.xrandr: Emitting configChanged()
Jul 27 18:08:18 main kwin_x11[46687]: kwin_core: Failed to focus 0x400000f (error 8)
Jul 27 18:08:19 main kwin_x11[46687]: kwin_scene_opengl: A graphics reset attributable to the current GL context occurred.
Jul 27 18:08:19 main kwin_x11[46687]: KPackageStructure of KPluginMetaData(pluginId:"kwin4_effect_geometry_change", fileName: "/home/username/.local/share/kwin/effects/kwin4_effect_geometry_change/metadata.json") does not match requested format "KWin/Effect"
Jul 27 18:08:19 main kwin_x11[46687]: GlideConfig::instance called after the first use - ignoring
Jul 27 18:08:19 main kwin_x11[46687]: KscreenConfig::instance called after the first use - ignoring
Jul 27 18:08:19 main kwin_x11[46687]: OverviewConfig::instance called after the first use - ignoring
Jul 27 18:08:19 main kwin_x11[46687]: SlideConfig::instance called after the first use - ignoring
Jul 27 18:08:19 main kwin_x11[46687]: SlidingPopupsConfig::instance called after the first use - ignoring
Jul 27 18:08:19 main kwin_x11[46687]: WindowViewConfig::instance called after the first use - ignoring
Jul 27 18:08:19 main kwin_x11[46687]: ZoomConfig::instance called after the first use - ignoring
Jul 27 18:08:19 main kwin_x11[46687]: QFSFileEngine::open: No file name specified
Jul 27 18:08:19 main env[46999]: [2024-07-27 17:08:19.559][8045][client.platformscreens][src/platformscreens.cpp:34][info] Updating screens due to notification
Jul 27 18:08:19 main env[46999]: [2024-07-27 17:08:19.559][8045][client.platformscreens][src/platformscreens.cpp:46][info] Screens changed from ( 1 ):
Jul 27 18:08:19 main env[46999]: [2024-07-27 17:08:19.559][8045][client.platformscreens][src/platformscreens.cpp:42][info] - 0 QRect(0,0 2560x1440) QRect(0,0 2560x1440) (primary)
Jul 27 18:08:19 main env[46999]: [2024-07-27 17:08:19.559][8045][client.platformscreens][src/platformscreens.cpp:48][info] to ( 1 ):
Jul 27 18:08:19 main env[46999]: [2024-07-27 17:08:19.559][8045][client.platformscreens][src/platformscreens.cpp:42][info] - 0 QRect(0,0 2560x1440) QRect(0,36 2560x1348) (primary)
Jul 27 18:08:19 main env[46999]: [2024-07-27 17:08:19.559][8045][client.workspacechange][src/workspacechange.cpp:16][info] Workspace changed
Jul 27 18:08:19 main env[46999]: [2024-07-27 17:08:19.559][8045][client.workspacechange][src/workspacechange.cpp:16][info] Workspace changed
Jul 27 18:08:19 main env[46999]: [2024-07-27 17:08:19.559][8045][client.workspacechange][src/workspacechange.cpp:16][info] Workspace changed
Jul 27 18:08:19 main env[46999]: [2024-07-27 17:08:19.559][8045][client.workspacechange][src/workspacechange.cpp:16][info] Workspace changed
Jul 27 18:08:23 main flatpak[51849]: [48:0727/180823.097609:ERROR:shared_context_state.cc(1205)] SharedContextState context lost via ARB/EXT_robustness. Reset status = GL_GUILTY_CONTEXT_RESET_KHR
Jul 27 18:08:23 main flatpak[51849]: [48:0727/180823.097701:ERROR:gpu_service_impl.cc(1125)] Exiting GPU process because some drivers can't recover from errors. GPU process will restart shortly.
Jul 27 18:08:23 main flatpak[51787]: [2:0727/180823.125499:ERROR:gpu_process_host.cc(1002)] GPU process exited unexpectedly: exit_code=8704
Other info:
All the latest arch packages are installed as of 27th July 2024.
CPU: Ryzen 5950x - no iGPU, or any other GPUs installed currently.
GPU: Nvidia RTX 3090
> lspci | grep NVIDIA
0d:00.0 VGA compatible controller: NVIDIA Corporation GA102 [GeForce RTX 3090] (rev a1)
0d:00.1 Audio device: NVIDIA Corporation GA102 High Definition Audio Controller (rev a1)
> plasmashell --version
plasmashell 6.1.3
> pacman -Q | grep kwin
kwin 6.1.3-1
> pacman -Q | grep nvidia
lib32-nvidia-utils 555.58.02-1
lib32-opencl-nvidia 555.58.02-1
libva-nvidia-driver 0.0.12-1
nvidia 555.58.02-9
nvidia-lts 1:555.58.02-10
nvidia-settings 555.58.02-1
nvidia-utils 555.58.02-1
opencl-nvidia 555.58.02-1
> pacman -Q | grep kde-
kde-accessibility-meta 24.05-1
kde-applications-meta 24.05-1
kde-cli-tools 6.1.3-1
kde-dev-scripts 24.05.2-1
kde-dev-utils 24.05.2-1
kde-education-meta 24.05-1
kde-games-meta 24.05-1
kde-graphics-meta 24.05-1
kde-gtk-config 6.1.3-1
kde-inotify-survey 24.05.2-1
kde-multimedia-meta 24.05-1
kde-network-meta 24.05-1
kde-office-meta 24.05-1
kde-pim-meta 24.05-1
kde-sdk-meta 24.05-1
kde-system-meta 24.05-1
kde-utilities-meta 24.05-1
polkit-kde-agent 6.1.3-1
This also occurs on the LTS kernel and Nvidia drivers.
Basically I'm not sure where to even report the problem (KDE, nvidia) - or whether it's something in my config...
My first thought is roll back the drivers (never done it before), but there might be something someone else sees here that makes them think otherwise.
Any advise/suggestions welcome!
Thanks in advance for your time to anyone who replies.
SOLUTION:
It appears to be the 555 Nvidia driver causing a graphics reset when using 4 monitors.
I rolled the driver back using nvidia-550xx-dkms in the AUR.
Just install that package (I used yay AUR helper) and it'll conflict with the latest driver and ask you to uninstall it.
Once on 550 the problem doesn't occur any more.
I'll be reporting the issue over on the Nvidia forums.
Thanks.
Last edited by Xeauron (2024-08-11 08:58:52)
Offline
One of my monitors is a Samsung smart TV and I have the same problem. Whenever my computer detects a new monitor, the smart TV restarts and the desktop session goes haywire while the smart TV goes from active to inactive to active.
I notice a lot of lines like this in both of our journals:
[...] colord: Profile does not have any VCGT data, reseting "HDMI-1" [...]
but it looks like it's not specific to the display that's getting reset, so idk if it's relevant.
My hunch is that colord is trying to send brightness/color profile data to the smart TV and the device just doesn't know what to do with it and restarts.
I'm using X11 and an AMD GPU so I don't think it's GPU specific.
Offline
Thanks for the reply, sorry it's late - I've been swamped lately and not had time to look at this.
I think I'm going to do a full re-install of my system after all.
The bluetooth adapter is now only letting one device connect at a time with the error: "The setup has Failed"
> Journalctl
Aug 06 19:15:39 main bluedevil-wizard[9116]: kf.bluezqt: PendingCall Error: "Authentication Canceled"
So I can connect my pad but not my headphones, or my headphones then not my pad.
*sigh*
This install appears to be coming apart at the seams, and it's always weird errors that either aren't in the Wiki or yield little to no results in searches.
Last edited by Xeauron (2024-08-10 11:43:21)
Offline
Sorry for the double post.
OK I used Timeshift to roll back a couple of weeks then upgraded from there and my Bluetooth is working properly again.
I've re-installed the Nvidia drivers - problem persists
I've re-installed KDE (removed the meta packages plasma-meta, kde-applications-meta) and nuked my home folder. Installed from the package group instead - plasma & kde-applications.
Booted into what looked like a clean plasma 6 install - problem persists
I've booted into an Endeavor OS live USB with plasma 6.1 and 550 Nvidia drivers (where I'm posting this from) - script (and xrandr) works, can switch between screens super quick, no problems
This makes me think the problem is in the root, in a config file or something that didn't get wiped properly when I re-installed the drivers & KDE.
The only difference is slightly newer Nvidia drivers. I had the issue on Arch when I was on 550 Nvidia drivers, and it doesn't occur on this live USB.
Think I need to nuke everything...
EDIT:
Apparently I was wrong, it was the 555 Nvidia drivers.
I did a full reinstall from scratch and the problem came back after I got the KDE DE up and running.
So I tried rolling the Nvidia drivers back (never done this before) using the nvidia-550xx-dkms and the problem went away.
I'm currently re-imaging from the backup I took just before I did the re-install as I really don't feel like re-applying all my tweaks again, I'll roll the driver back again then test and report the issue over on the Nvidia forums,
Thanks.
Last edited by Xeauron (2024-08-11 08:50:05)
Offline