Also, here's a simple script to toggle compositing: toggleCompositing.sh
=============
#!/bin/bash
RESULT=`qdbus org.kde.kwin /KWin org.kde.KWin.compositingActive`

if [ "$RESULT" = "true" ]
then
  # turn off
  kwriteconfig --file kwinrc --group Compositing --key Enabled false
else
  # turn on
  kwriteconfig --file kwinrc --group Compositing --key Enabled true
fi

# Then restart kwin (in Alt+F2) with:
kwin --replace &
===============

Now, if somebody could tell me how to integrate that into the lock
screen mechanism (turn off on lock, turn on on unlock), I'd be very
happy. :D

-- 
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

Reply via email to