https://bugs.kde.org/show_bug.cgi?id=385324
--- Comment #15 from Markus <m4rkus...@web.de> --- Updated to nvidia-drivers-390.12, now the pipeline workaround does no longer work for me. Because kwin is unable to recover from the graphics reset I created a small script in ~/.config/autostart/ that will restart kwin to enable compositing again. Its working fine for me and at least reduces the impact of the Xid 31. #!/bin/sh touch /tmp/restart_kwin while true do if test -e /tmp/restart_kwin then rm /tmp/restart_kwin ( kwin_x11 --replace 2>&1 | while read line do if test "_$line" = "_kwin_core: Failed to initialize compositing, compositing disabled" then touch /tmp/restart_kwin fi done ) &> /dev/null & fi sleep 1 done -- You are receiving this mail because: You are watching all bug changes.