https://bugs.kde.org/show_bug.cgi?id=447058
--- Comment #10 from Winston Nolan <winston.no...@gmail.com> --- Just dropping the fix here I created a script with the contents ``` #!/usr/bin/env bash # https://unix.stackexchange.com/a/361612/386718 dbus-monitor --session "type='signal',interface='org.freedesktop.ScreenSaver'" | while read x; do case "$x" in *"boolean true"*) /usr/bin/sleep 1;; *"boolean false"*) /usr/bin/sleep 1 && /usr/bin/latte-dock --replace &;; esac done ``` I added this script to be executed at startup This script will listen to events for lock and unlock and restart latte dock on an unlock event -- You are receiving this mail because: You are watching all bug changes.