Normal
You could just comment out the code for the exit button in MyHome.xml and topbar.xml for your skin. Of course, that wont help the fact that ctrl-alt-del or Alt-F4 will reveal that there really is a computer under there... But that may not be a problem if you have a remote that doesn't have these buttons...So, just add <!-- and --> tags around the code for the exit buttons, like the example below for topbar.xml:[CODE] <!-- <control> <description>Exit button</description> <type>button</type> <id>31</id> <posX>1250</posX> <posY>4</posY> <width>60</width> <height>53</height> <textureFocus>exit_enabled.png</textureFocus> <textureNoFocus>exit_disabled.png</textureNoFocus> <action>97</action> <label>-</label> <action>97</action> <onleft>30</onleft> <onright>21</onright> <onup>31</onup> <ondown>2</ondown> </control> -->[/CODE]To make it look better you might want to consider moving the other buttons further to the right, or it might be obvious that there is something missing in that empty space...
You could just comment out the code for the exit button in MyHome.xml and topbar.xml for your skin. Of course, that wont help the fact that ctrl-alt-del or Alt-F4 will reveal that there really is a computer under there... But that may not be a problem if you have a remote that doesn't have these buttons...
So, just add <!-- and --> tags around the code for the exit buttons, like the example below for topbar.xml:
[CODE]
<!--
<control>
<description>Exit button</description>
<type>button</type>
<id>31</id>
<posX>1250</posX>
<posY>4</posY>
<width>60</width>
<height>53</height>
<textureFocus>exit_enabled.png</textureFocus>
<textureNoFocus>exit_disabled.png</textureNoFocus>
<action>97</action>
<label>-</label>
<onleft>30</onleft>
<onright>21</onright>
<onup>31</onup>
<ondown>2</ondown>
</control>
-->[/CODE]
To make it look better you might want to consider moving the other buttons further to the right, or it might be obvious that there is something missing in that empty space...