Shutdown menu
#1
Hi all,

I would like my system to suspend directly when I click the shutdown button in the skin (top left corner) but I always get the shutdown menu. Is there any way that I can have it go to suspend directly?
Reply
#2
If you are using an remote you can bind a key to the xbmc.shutdown() function via eventghost.
Or use the keymap to bind a keyboard key to this:

http://wiki.xbmc.org/?title=Keymap.xml

You can also set the action to take when this function is called via the settings menu, the default is shutdown but you can also set this to sleep.

The other way would be to edit the button in the home.xml for the skin but that would require some digging in the xml files.
Reply
#3
Netty Wrote:If you are using an remote you can bind a key to the xbmc.shutdown() function via eventghost.
Or use the keymap to bind a keyboard key to this:

http://wiki.xbmc.org/?title=Keymap.xml

You can also set the action to take when this function is called via the settings menu, the default is shutdown but you can also set this to sleep.

The other way would be to edit the button in the home.xml for the skin but that would require some digging in the xml files.

At the moment I am not using a remote (problem with lirc). I have tried to change in settings but I still get the shutdown menu.
Reply
#4
In includes.xml search for:

<onclick>ActivateWindow(ShutdownMenu)</onclick>

replace with:

<onclick>Suspend()</onclick>
Reply

Logout Mark Read Team Forum Stats Members Help
Shutdown menu0