-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
71 lines (70 loc) · 2.52 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Windows 12</title>
<link rel="stylesheet" href="style.css">
<link rel="shortcut icon" type="image/jpg" href="Windows/System32/SystemLogo.svg"/>
<link href='https://unpkg.com/[email protected]/css/boxicons.min.css' rel='stylesheet'>
<script src="script.js"></script>
</head>
<body onload="bootloader_action();">
<div id="bootloader">
<img draggable="false" id="system-logo-boot" src="Windows/System32/SystemLogo.svg">
<div id="bootloader-progress"></div>
</div>
<div id="taskbar-content">
<div onclick="start_button_click(); start_Action();" id="start-button" class="taskbar-button">
<img draggable="false" id="taskbar-button-start" class="taskbar-button-img" src="Windows/System32/SystemLogo.svg">
</div>
</div>
<div class="align-center">
<div id="menu">
<div id="thought-text">
<span id="thought">Life is too short. Enjoy it!</span>
</div>
<button onclick="start_button_click_in_window(); startLaunchExplorer();" class="new-start" id="button-start">
<img id="start-button-img" src="Windows/System32/computer.png">
</button>
</div>
</div>
<div id="context-menu">
<div class="item">
<i class='bx bx-grid-alt'></i> View<i class='bx bx-chevron-right' ></i>
</div>
<div class="item">
<i class='bx bx-sort-alt-2'></i> Sort by<i class='bx bx-chevron-right' ></i>
</div>
<div class="item">
<i class='bx bx-revision bx-flip-horizontal' ></i> Refresh
</div>
<hr>
<div class="item">
<i class='bx bx-undo bx-rotate-270' ></i> Undo delete
</div>
<div class="item">
<i class='bx bx-disc bx-rotate-270' ></i> New <i class='bx bx-chevron-right' ></i>
</div>
<hr>
<div class="item">
<i class="fa fa-clone"></i> Display Settings
</div>
<div class="item">
<i class='bx bx-paint' ></i> Personalize
</div>
<hr>
<div class="item">
<i class="fa fa-clone"></i> Open in Windows Terminal
</div>
<div class="item">
<i class="fa fa-clone"></i> Open in Windows Terminal Preview
</div>
<hr>
<div class="item">
<i class='bx bx-link-external' ></i> Show more options
</div>
</div>
</body>
</html>