blob: 676c524adf45706a1514695e1147c43f2f69e6b5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
|
<?xml version="1.0"?>
<!DOCTYPE greeter SYSTEM "greeter.dtd">
<greeter>
<!--
The Background
-->
<item type="pixmap">
<normal file="background.png" alpha="1"/>
<pos x="0" y="0" width="100%" height="100%"/>
</item>
<!--
The Date and Time
-->
<item type="pixmap">
<normal file="blend.png" alpha="1"/>
<pos x="50%" y="0" anchor="c"/>
</item>
<item type="rect">
<pos x="50%" y="22" width="box" height="box" anchor="c"/>
<box xpadding="0" ypadding="0" spacing="5" orientation="horizontal">
<item type="label" id="hostname">
<normal color="#ffffff" font="Sans 12" alpha="1"/>
<text>%h</text>
</item>
<item type="label" id="at">
<normal color="#ffffff" font="Sans 12" alpha="1"/>
<text>@</text>
</item>
<item type="label" id="clock">
<normal color="#ffffff" font="Sans 12" alpha="1"/>
<text>%c</text>
</item>
</box>
</item>
<!--
The Login
-->
<item type="rect">
<pos x="50%" y="80%" width="box" height="box" anchor="c"/>
<box xpadding="0" ypadding="0" spacing="5" orientation="vertical">
<item type="pixmap">
<normal file="input.png"/>
<pos width="252" height="27"/>
<fixed>
<item type="entry" id="user-pw-entry">
<normal color="#222222" font="Sans 12"/>
<pos y="5" x="5" width="-10" height="-10" anchor="nw"/>
</item>
</fixed>
</item>
<item type="label" id="userpw">
<pos x="50%" y="50%" anchor="c"/>
<normal color="#ffffff" font="Sans 8" alpha="0.8"/>
<text>Please, enter your login and password.</text>
</item>
</box>
</item>
<item type="rect" id="caps-lock-warning">
<pos x="50%" y="70%" width="box" height="box" anchor="c"/>
<box xpadding="0" ypadding="0" spacing="5" orientation="vertical">
<item type="label">
<normal color="#99cccc" font="Sans Bold 8" alpha="0.8"/>
<text>Caps-lock is ON!</text>
</item>
<item type="label">
<normal color="#99cccc" font="Sans Bold 8" alpha="0.8"/>
<text>Login and password are case-sensitive.</text>
</item>
</box>
</item>
<item type="rect" id="pam-error">
<pos x="50%" y="90%" width="box" height="box" anchor="c"/>
<box xpadding="0" ypadding="0" spacing="5" orientation="vertical">
<item type="label" id="pam-error">
<normal color="#ffffff" font="Sans Bold 8"/>
<pos x="50%" anchor="c"/>
<text/>
</item>
</box>
</item>
<!--
The Timed Login
-->
<item type="rect" id="timed-rect">
<show type="timed"/>
<normal color="#99cccc" alpha="0.8"/>
<pos x="50%" y="40%" width="box" height="box" anchor="c"/>
<box xpadding="0" ypadding="0" spacing="5" orientation="vertical">
<item type="label" id="timed-label">
<normal color="#ffffff" font="Sans Bold 8"/>
<pos x="50%" anchor="c"/>
<stock type="timed-label"/>
</item>
</box>
</item>
<item type="label" id="pam-message">
<pos x="50%" anchor="c"/>
<normal alpha="0.00"/>
<text/>
</item>
</greeter>
|