How I can remove buttons: shutdown and favorite from main menu ?
#1
Hi, all!
Dear's people I have one questions
How I can remove from this theme buttons: shutdown and favorite from the main menu?
For example remove a line in the code.
Reply
#2
In the file skin.unity/xml/home.xml it is part of the following include:
Code:
<include>Clock</include>

If you do not want to also remove the clock, you will need to edit skin.unity/xml/includes.xml

Find (line 899):
Code:
<visible>Window.IsActive(Home) | Window.IsVisible(LoginScreen.xml)</visible>

Replace With:
Code:
<visible>false | Window.IsVisible(LoginScreen.xml)</visible>


Find (line 941):
Code:
<visible>Window.IsActive(Home)</visible>

Replace With:
Code:
<visible>false</visible>
Reply
#3
Thanks. I also removed code line 15-22 in home.xml to unshown the user profile id.
(maybe these requests could be added as buttons in a future release to hide them more easily)
Reply

Logout Mark Read Team Forum Stats Members Help
How I can remove buttons: shutdown and favorite from main menu ?0