forked from NoiSek/Aether
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
166 lines (152 loc) · 4.46 KB
/
index.html
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
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
<!DOCTYPE html>
<html id="root">
<head>
<meta charset="utf-8" />
<title>Amazing Content</title>
</head>
<style>
*:not(input) {
-webkit-touch-callout: none;
-webkit-user-select: none;
}
#preloader {
background: rgb(37, 37, 37);
position: absolute;
top: 0px;
left: 0px;
right: 0px;
bottom: 0px;
height: 100%;
width: 100%;
z-index: 99999;
transition: background 1s cubic-bezier(0.4, 0, 0.2, 1),
top 2s cubic-bezier(0.4, 0, 0.2, 1);
}
#preloader.loaded {
background: rgba(0, 0, 0, 0);
top: 100vh;
}
</style>
<body>
<div id="preloader"></div>
<div class="wallpaper-background">
<div id="experimental-mount"></div>
<div class="wallpaper-foreground"></div>
<div class="wallpaper-preload"></div>
</div>
<div class="notifications-container"></div>
<div class="login-window-container">
<div id="login-window-mount"></div>
<div id="date-display" class="date-display"></div>
</div>
<div id="settings" class="settings hidden"></div>
<div id="settings-toggler-mount"></div>
<script type="text/javascript">
window.__debug = false;
if (window.__debug === true) {
window.lightdm = {
authenticate: function () {
return true;
},
hibernate: function () {
return true;
},
restart: function () {
return true;
},
shutdown: function () {
return true;
},
suspend: function () {
return true;
},
can_hibernate: true,
can_restart: true,
can_shutdown: true,
can_suspend: true,
hostname: "Mercury",
default_session: "deepin",
lock_hint: false,
users: [
{
language: "en_US.utf8",
display_name: "John Doe",
layout: "",
layouts: [],
image: "src/img/default-user.png",
home_directory: "/home/captain",
username: "captain",
logged_in: false,
session: "deepin",
},
{
language: "en_US.utf8",
display_name: "George Clooney",
layout: "",
layouts: [],
image: "src/img/default-user.png",
home_directory: "/home/gclooney",
username: "gclooney",
logged_in: false,
session: "xfce",
},
{
language: "en_US.utf8",
display_name: "Jaime Lannister",
layout: "",
layouts: [],
image: "src/img/default-user.png",
home_directory: "/home/lannisterx",
username: "lannisterx",
logged_in: false,
session: "gnome",
},
],
sessions: [
{
name: "Deepin",
key: "deepin",
comment: "Deepin Desktop Environment",
},
{
name: "Gnome",
key: "gnome",
comment: "Gnome Desktop Environment",
},
{ name: "XFCE4", key: "xfce", comment: "XFCE Desktop Environment" },
{ name: "Cinnamon", key: "cinnamon", comment: "Cinnamon DE" },
{
name: "Cinnamon (Software)",
key: "cinnamon-software",
comment: "Cinnamon DE (Software Rendering)",
},
{ name: "LXDE", key: "lxde", comment: "LXDE Desktop Environment" },
{
name: "Enlightenment",
key: "enlightnment",
comment: "Enlightenment Desktop Environment",
},
{
name: "KDE Plasma",
key: "kde",
comment: "KDE Plasma Desktop Environment",
},
{
name: "Budgie",
key: "budgie",
comment: "Budgie Desktop Environment",
},
{ name: "MATE", key: "mate", comment: "MATE Desktop Environment" },
{ name: "Liri", key: "liri", comment: "Liri Desktop Environment" },
{
name: "Pantheon",
key: "pantheon",
comment: "Pantheon Desktop Environment",
},
],
};
}
</script>
<script src="dist/js/Aether.js"></script>
</body>
</html>