Profile Logon after resume from Standby
#1
Hi,

I'm look for a way to show the profile logon screen after resuming from standby.

The XBMC version is the current RC of Frodo.

Regards,
Marco
Reply
#2
Hi,

found the solution, create a logoff script in /etc/pm/sleep.d/91xbmc. This will automatically be executed with the parameter "suspend" when you suspend the machine. This will log off the current user before the machine goes to sleep and the logon screen will show up after resume.

Code:
#!/bin/sh
[ "$1" = "suspend" ] && xbmc-send --action="System.LogOff"

This information ist from
(2012-02-20, 00:10)Richy Freeway Wrote: thx
Reply

Logout Mark Read Team Forum Stats Members Help
Profile Logon after resume from Standby0