https://bugs.kde.org/show_bug.cgi?id=484323

Alexei Zakharov <alex...@gmail.com> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |alex...@gmail.com

--- Comment #81 from Alexei Zakharov <alex...@gmail.com> ---
(In reply to strank from comment #70)
> and can confirm that 
> > systemctl --user restart plasma-kwin_x11.service

combined with dbus-monitor to automate this workaround:

#!/bin/sh
dbus-monitor --session \
  "type='signal',\
sender='org.freedesktop.ScreenSaver',\
interface='org.freedesktop.ScreenSaver',\
member='ActiveChanged',\
path='/org/freedesktop/ScreenSaver'" |
while read -r line; do
    case "$line" in
        *"boolean true"*)            # screen just locked
            systemctl --user restart plasma-kwin_x11.service
            ;;
    esac
done

-- 
You are receiving this mail because:
You are watching all bug changes.

Reply via email to