https://bugs.kde.org/show_bug.cgi?id=388759
Andreas <hoheneg...@web.de> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |hoheneg...@web.de --- Comment #7 from Andreas <hoheneg...@web.de> --- I think, that this is the behavior I see and for which I reported a bug previously. It had been moved to https://bugs.kde.org/show_bug.cgi?id=378010 . I did not know about the constant screen repaints then, but activating "Show Paint" shows that this is the case. Restarting plsasmashell does remove the phenomenon instantaneously, but does not fix the bug. As a work around, I am using the script below. This will take care of automatically restarting plasmashell, but note that it causes that you will see the taskbar rebuild each time you change displays or unlock the screen. #!/bin/bash dbus-monitor --session "type='signal',interface='org.freedesktop.ScreenSaver'" | while read x; do case "$x" in *"boolean true"*) echo "lock";; *"boolean false"*) kquitapp5 plasmashell; sleep 2; kstart5 plasmashell;; esac done & dbus-monitor --session "type='signal',interface='org.kde.kscreen.Backend',path='/backend',member='configChanged'" | kquitapp5 plasmashell; sleep 2; kstart5 plasmashell; -- You are receiving this mail because: You are watching all bug changes.