-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.html
111 lines (103 loc) · 4.77 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
<!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>9Launcher</title>
<link rel="stylesheet" href="/src/styles.css" />
<link rel="stylesheet" href="/src/games.css" />
<link rel="stylesheet" href="/src/tingle.min.css" />
<link rel="stylesheet" href="https://site-assets.fontawesome.com/releases/v6.4.0/css/all.css" />
</head>
<body>
<h2 class="dashboard-title">Mainline Games</h2>
<div id="games" class="installed-games"></div>
<h2>Spinoffs</h2>
<div id="games-spinoffs" class="games-spinoffs"></div>
<div id="console">
<div id="console-output"></div>
<button id="clear-console">Clear console</button>
</div>
<div id="quick-settings" class="quick-settings-modal">
<div class="notifications slider-container">
<span class="notifications-text">Notifications</span>
<label class="switch">
<input type="checkbox" id="notifications-slider" />
<span class="slider round"></span>
</label>
</div>
<div class="discord-rpc slider-container">
<span class="discord-rpc-text">Discord RPC</span>
<label class="switch">
<input type="checkbox" id="discord-rpc-slider" />
<span id="rpc-slider-round" class="slider round"></span>
</label>
</div>
<div class="file-logging slider-container">
<span class="file-logging-text">File Logging</span>
<label class="switch">
<input type="checkbox" id="file-logging-slider" />
<span id="file-logging-slider-round" class="slider round"></span>
</label>
</div>
<div class="console slider-container">
<span class="console-text">Launch Info</span>
<label class="switch">
<input type="checkbox" id="console-slider" />
<span id="console-slider-round" class="slider round"></span>
</label>
</div>
<div class="clear-games">
<button id="clear-games-btn" class="clear-games-btn">Clear Games</button>
</div>
<div id="wine-manager" class="wine-manager">
<button id="wine-manager-btn" class="wine-manager-btn">Wine Manager</button>
</div>
<div class="dosbox-manager">
<button id="dosbox-manager-btn" class="dosbox-manager-btn">Install PC-98 Emulator</button>
</div>
</div>
<div id="app-info" class="information-page">
<div class="info-page">
<div class="computer-info">
<h3 class="info-header">Information</h3>
<p class="version-info" id="version-info"></p>
<p class="os-info" id="os-info"></p>
<p class="kernel-info" id="kernel-info"></p>
<p class="arch-info" id="arch-info"></p>
<button class="copy-info" id="copy-info">Copy Info</button>
</div>
<div class="links">
<div class="link-container">
<a href="https://github.com/wearrrrr/9Launcher" target="_blank" rel="noreferrer noopener"
><i class="fa-brands fa-github"></i
></a>
<a href="https://discord.gg/cxmG2jcTpr" target="_blank" rel="noreferrer noopener"
><i class="fa-brands fa-discord"></i
></a>
</div>
<div class="touhou-character">
<div id="inconspicuous">
<img id="inconspicous-character" src="/src/assets/flandre.png" alt="Flandre Scarlet" />
</div>
</div>
</div>
</div>
</div>
<div class="bottom-banner">
<div class="left-section">
<div id="settings-icn" class="settings-icn">
<i id="settings-gear" class="fa-regular fa-gear"></i>
</div>
</div>
<div class="right-section">
<div class="info-icn">
<i id="info-page" class="fa-solid fa-question"></i>
</div>
</div>
</div>
<script type="module" src="/src/ts/dashboard.ts"></script>
<script type="module" src="/src/ts/lib/bottombar.ts"></script>
</body>
</html>