root/trunk/debathena/config/gdm-config/debathena/debathena.xml @ 23908

Revision 23908, 4.6 KB (checked in by broder, 5 months ago)

In gdm-config:

  • Update the GDM theme to use pixmaps and text labels instead of buttons. Thanks to Jacob Morzinski for the patch. (Trac: #188)
Line 
1<?xml version="1.0" encoding="UTF-8"?>
2<!DOCTYPE greeter SYSTEM "greeter.dtd">
3<greeter>
4
5  <!-- The background -->
6  <item type="pixmap">
7    <normal file="marble-512x512.png" />
8    <pos x="0" y="0" width="100%" height="100%" anchor="nw" />
9  </item>
10
11  <!-- Bottom bar -->
12  <item type="rect">
13    <normal color="#000000"/>
14    <pos x="0" y="100%" width="100%" height="60" anchor="sw"/>
15    <fixed>
16      <!-- The black border of the bottom bar -->
17      <item type="rect" background="true"> 
18        <normal color="#ffffff"/>
19        <pos x="0" y="5" width="100%" height="100%"/>
20        <!-- A box containing the session and action buttons -->
21        <box spacing="10" xpadding="10" ypadding="0" orientation="horizontal">
22          <item type="rect" id="session_button" button="true">
23            <pos x="0" y="13" anchor="nw" width="100" height="30"/>
24            <fixed>
25              <item type="pixmap">
26                <pos x="50%" y="50%" anchor="c"/>
27                <normal file="btn-normal.svg"/>
28                <prelight file="btn-prelight.svg"/>
29                <active file="btn-active.svg"/>
30              </item>
31              <item type="label">
32                <normal font="Sans 11" color="#000000"/>
33                <pos x="50%" y="50%" anchor="c"/>
34                <stock type="session"/>
35              </item>
36            </fixed>
37          </item>
38          <item type="rect" id="options_button" button="true">
39            <pos x="0" y="13" anchor="nw" width="100" height="30" />
40            <fixed>
41              <item type="pixmap">
42                <pos x="50%" y="50%" anchor="c"/>
43                <normal file="btn-normal.svg"/>
44                <prelight file="btn-prelight.svg"/>
45                <active file="btn-active.svg"/>
46              </item>
47              <item type="label">
48                <normal font="Sans 11" color="#000000"/>
49                <pos x="50%" y="50%" anchor="c"/>
50                <stock type="system"/>
51              </item>
52            </fixed>
53          </item>
54        </box>
55      </item>
56      <!-- The clock -->
57      <item type="label" id="clock">
58        <normal color="#000000" font="Trebuchet MS 10" />
59        <pos x="-10" y="50%" anchor="e" />
60        <text>%c</text>
61      </item>
62      <!-- The caps-lock icon -->
63      <item type="pixmap" id="caps-lock-warning">
64        <pos x="80%" y="50%" anchor="c" />
65        <normal file="capslock.png" />
66      </item>
67      <!-- The sipb and isnt logos -->
68      <item type="pixmap">
69        <normal file="bottomlogo.png" />
70        <pos x="50%" y="55%" anchor="c" />
71      </item>
72    </fixed>
73  </item>
74  <!-- The owl icon -->
75  <item type="pixmap">
76    <normal file="owl-glow.png" />
77    <pos x="50%" y="5%" anchor="n" />
78  </item>
79  <!-- The background for the login box -->
80  <item type="pixmap">
81    <normal file="loginbox.png" />
82    <pos x="50%" y="45%" anchor="c" width="500" height="320" />
83  </item>
84  <!-- An invisible rectangle for the login box -->
85  <item type="rect">
86    <normal color="#000000" alpha="0.0" />
87    <pos anchor="c" x="50%" y="46%" width="400" height="220" />
88    <box orientation="vertical" padding="5" spacing="10" homogenous="false">
89      <!-- Welcome -->
90      <item type="label" id="title">
91        <normal color="#993333" font="Trebuchet MS Bold 20" />
92        <pos anchor="c" x="50%" y="50%"/>
93        <text>Welcome to Athena</text>
94      </item>
95      <!-- Hostname -->
96      <item type="label">
97        <normal color="#993333" font="Trebuchet MS Bold 14" />
98        <pos anchor="n" x="50%" />
99        <text>%h</text>
100      </item>
101      <!-- Timed login (we don't use this) --> 
102      <item type="label" id="timed-label">
103        <normal color="#000000" font="Trebuchet MS 12" />
104        <pos anchor="n" x="50%" />
105        <stock type="timed-label"/>
106        <show type="timed" />
107      </item>
108      <!-- Spacer (empty label) shown in console (normal) mode -->
109      <item type="label">
110        <normal color="#000000" font="Trebuchet MS 12" />
111        <pos anchor="n" x="50%" />
112        <show type="console" />
113        <text></text>
114      </item>
115      <!-- PAM prompt -->
116      <!-- text tag is ignored, but set here because gdmthemetester
117           is broken -->
118      <item type="label" id="pam-prompt">
119        <pos anchor="n" x="50%" /> 
120        <normal color="#000000" font="Trebuchet MS 12" />
121        <text>Username:</text>
122      </item>
123      <!-- black border around username field -->
124      <item type="rect">
125        <normal color="#000000" />
126        <pos anchor="n" x="50%" height="30" width="60%"/>
127        <fixed>
128          <!-- username field -->
129          <item type="entry" id="user-pw-entry">
130            <normal color="#000000" font="Trebuchet MS Bold 12" />
131            <pos anchor="nw" x="2" y="2" height="-4" width="-4" />
132          </item>
133        </fixed>
134      </item>
135      <!-- PAM error text (ie: username/passsword incorret -->
136      <item type="label" id="pam-error">
137        <pos anchor="n" x="50%" />
138        <normal color="#ff0000" font="Trebuchet MS 10" />
139        <text></text>
140      </item>
141    </box>
142  </item>
143
144<!-- pam message (hidden, but required) -->
145<item type="label" id="pam-message">
146  <pos x="50%" anchor="c" />
147  <normal alpha="1.00"/>
148  <text></text>
149</item>
150</greeter>
Note: See TracBrowser for help on using the browser.