Ok, here's a bug workaround: 1) sudo mv /usr/lib/kde4/libexec/kscreenlocker /usr/lib/kde4/libexec/kscreenlocker.bin 2) Create a script named /usr/lib/kde4/libexec/kscreenlocker containing the following: ============== #!/bin/sh
#store compositing setting COMPOSITING=`qdbus org.kde.kwin /KWin org.kde.KWin.compositingActive` # Do stuff before locking... kwriteconfig --file kwinrc --group Compositing --key Enabled false kwin --replace & /usr/lib/kde4/libexec/kscreenlocker.bin $@ # Do stuff after unlocking... if [ "$COMPOSITING" = "true" ] then # turn on kwriteconfig --file kwinrc --group Compositing --key Enabled true else # turn off kwriteconfig --file kwinrc --group Compositing --key Enabled false fi # Then restart kwin (in Alt+F2) with: kwin --replace & ============== For more info: http://forum.kde.org/viewtopic.php?f=64&t=61217 Thanks again WindPower. ;) -- Desktop visible when screen is locked in Kubuntu https://bugs.launchpad.net/bugs/474654 You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs