-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
178 lines (150 loc) · 9.8 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
167
168
169
170
171
172
173
174
175
176
177
178
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<link href="system/css/style.css" type="text/css" rel="stylesheet">
<link href="system/css/themes/default.css" type="text/css" rel="stylesheet">
<link rel="stylesheet" href="https://code.jquery.com/ui/1.13.2/themes/base/jquery-ui.css">
<script src="https://code.jquery.com/jquery-3.6.3.js"></script>
<script src="https://code.jquery.com/ui/1.13.2/jquery-ui.js"></script>
<script src="system/js/kernel.js" type="text/javascript"></script>
<script src="system/js/desktop.js" type="text/javascript"></script>
<script src="system/js/taskbar.js" type="text/javascript"></script>
<script src="system/js/cookies.js" type="text/javascript"></script>
</head>
<body onload="startServices();">
<desktop>
<window data-title="Draw!" data-html="true" appicon="<img src='system/img/icons/paint.png' width='28' height='28'>">
<iframe src="apps/draw/index.html"></iframe>
</window>
<window data-title="Notepad" data-html="true" appicon="<img src='system/img/icons/notepad.png' width='28' height='28'>">
<iframe src="apps/notepad/index.html"></iframe>
</window>
<window data-title="Calendar" data-html="true" appicon="<img src='system/img/icons/calendar.png' width='28' height='28'>">
<iframe src="apps/calendar/index.html"></iframe>
</window>
<window data-title="Calculator" data-html="true" appicon="<img src='system/img/icons/calculator.png' width='28' height='28'>">
<iframe src="apps/calculator/index.html"></iframe>
</window>
<window data-title="Bronze" data-html="true" appicon="<img src='system/img/icons/bronze.png' width='28' height='28'>">
<iframe src="apps/bronze/index.html"></iframe>
</window>
<window data-title="Minesweeper" data-html="true" appicon="<img src='system/img/icons/minesweeper.png' width='28' height='28'>">
<iframe src="apps/minesweeper/index.html"></iframe>
</window>
<window data-title="Terminal" data-html="true" appicon="<img src='system/img/icons/terminal.png' width='28' height='28'>">
<link rel="stylesheet" type="text/css" href="apps/terminal/terminal.css" />
<link rel="stylesheet" type="text/css" href="apps/terminal/jquery.terminal.css" />
<script src="apps/terminal/jquery.terminal.js"></script>
<script src="apps/terminal/terminal.js"></script>
<div id="jsterminal">
</div>
</window>
<window data-title="Settings" data-html="true" appicon="<img src='system/img/icons/settings.png' width='28' height='28'>">
<script src="apps/settings/settings.js"></script>
<link rel="stylesheet" type="text/css" href="apps/settings/settings.css" />
<div id="tabsettings">
<button class="settingsbutton" data-title="Customization" onclick="opensTab('Customization')">Customization</button>
<!--<button class="settingsbutton" data-title="User Profile" onclick="opensTab('UserProfile')">User Profile</button>-->
<button class="settingsbutton" data-title="About" onclick="opensTab('About')">About</button>
</div>
<div id="Customization" class="setab">
<h2>Wallpaper</h2>
<input id="inputbtn" class="wppicker" type="file" accept="image/*" onchange="changeBG(event)">
<br>
<br>
<button onclick="resetBG();">Reset BG</button>
<hr>
<h2>Colors</h2>
<input id="setcolorpicker" type="color" value="#ff0000" onchange="colorpicker();">Select your color</input>
<br>
<br>
<button onclick="resetColors();">Reset Colors</button>
</div>
<div id="UserProfile" class="setab" style="display: none;">
<h1>Coming soon</h1>
</div>
<div id="About" class="setab" style="display: none;">
<div class="sbranding">
<img src="system/img/icons/skyos.png" height="84" width="72"></img>
<h2>skyOS</h2>
<hr>
<a class="abtver"></a>
<br>
<br>
<a>Based on coreOS's "NF" kernel.</a>
<br>
<br>
<a>broimluna - 2024</a>
<hr>
<h3>Reset skyOS</h3>
<a>Clicking the button below will reset skyOS.</a>
<br>
<a><b>All of your settings will be deleted.</b></a>
<br>
<button class="resetCookies" onclick="resetCookies();"><b>Reset skyOS</b></button>
</div>
</div>
</window>
<div id="appsmenu">
<div class="applist">
<center>
<li onclick="openWindow(1)"><a><img border="0" alt="" src="system/img/icons/paint.png" width="32" height="32"><br>Draw!</a></li>
<li onclick="openWindow(2)"><a><img border="0" alt="" src="system/img/icons/notepad.png" width="32" height="32"><br>Notepad</a></li>
<li onclick="openWindow(3)"><a><img border="0" alt="" src="system/img/icons/calendar.png" width="32" height="32"><br>Calendar</a></li>
<li onclick="openWindow(4)"><a><img border="0" alt="" src="system/img/icons/calculator.png" width="32" height="32"><br>Calculator</a></li>
<li onclick="openWindow(5)"><a><img border="0" alt="" src="system/img/icons/bronze.png" width="32" height="32"><br>Bronze</a></li>
<li onclick="openWindow(6)"><a><img border="0" alt="" src="system/img/icons/minesweeper.png" width="32" height="32"><br>Minesweeper</a></li>
<li onclick="openWindow(7)"><a><img border="0" alt="" src="system/img/icons/terminal.png" width="32" height="32"><br>Terminal</a></li>
</center>
</div>
<div class="quickweanews">
<h1>Welcome back!</h1>
<div class="qwncontainer">
<div class="newsSection">
<div id="quinews">
<script src="https://rss.bloople.net/?url=https%3A%2F%2Fwww.theverge.com%2Frss%2Findex.xml&showtitle=false&type=js"></script>
</div>
</div>
<div class="weatherSection">
<div class="weather"></div>
<div class="owmlink">Powered by <a href="https://openweathermap.org/" target="_blank">OpenWeatherMap</a></div>
</div>
</div>
<style>
</style>
</div>
<div id="userProfile">
<hr>
<div><img border="0" class="pfpimage" alt="" src="system/img/pfp.png" width="32" height="32"><br><a class="userProfileTxt">User</a></div>
<a id="settingsUP" onclick="openWindow(8)"><img border="0" alt="" src="system/img/icons/settings.png" width="32" height="32"></a>
</div>
</div>
<div id="timendateflyout">
<iframe src="apps/calendar/flyout.html"></iframe>
</div>
<div id="coralaiflyout">
<iframe src="apps/coralAI/index.html"></iframe>
</div>
<taskbar>
<taskbarapp onclick="appstoggle();" id="skybutton"><img src='system/img/icons/skyos.png' width='22' height='28'></taskbarapp>
<taskbarapp onclick="aitoggle();" id="aibutton" style="display: inline;"><img src='system/img/icons/ai.png' width='28' height='28'></taskbarapp>
<input type="text" id="taskbarSearch" class="tsksrcico" placeholder="Click here to search" onkeyup="taskSearch()">
<div class="timendate" onclick="timendateflyouttoggle()"></div>
</taskbar>
<watermark></watermark>
<div id="contextMenu" class="context-menu" style="display: none; left: 140px; top: 421px;">
<ul>
<li onclick="window.location.reload(true);">Reload skyOS</li>
<li onclick="openWindow(8);">Open Settings</li>
<li onclick="activatefull(document.documentElement);">Activate Fullscreen</li>
<li onclick="deactivatefull();">Deactivate Fullscreen</li>
</ul>
</div>
<div id="startup">
<div><img id="startuplogo" src="system/img/icons/skyos.png"></div>
<div><img id="startupload" src="system/img/loading.gif"></div>
</div>
</desktop>
</body>
</html>